apyhub
SMART GENERATION

Generate Fake Company's Info API

What it does

Fake Company Generator creates synthetic company profiles for testing and demos. Send a count query value, and it returns that many fake records with company name, email, website, phone, and industry fields.

Use it when you need realistic-looking business data without exposing real customer or prospect information. It fits onboarding flows, UI prototypes, seed data for local development, and QA environments that need varied company records at scale.

The service accepts a single optional count parameter, with a default of 1 and a maximum of 50. That makes it easy to request one record for a quick test or a batch of records for populating tables, fixtures, or import workflows.

Fake Company Generator is useful anywhere you need structured company data that looks consistent enough for product work, but does not need to map to a real business.

GET
Generate fake company profiles with name, email, website, phone, and industry
http://localhost:8080/dosvak/fake-company
QUICKSTARTGUIDE

Quickstart

Fetch the fake company listing, optionally using the count query parameter to limit how many results are returned.

curl -X GET "http://localhost:8080/dosvak/fake-company?count=1" \
  -H "apy-token: $APY_TOKEN"

What you'll get back

Returns a JSON object. The output schema does not declare any top-level fields, so there is no fixed response shape to sample here.

TRY ITLIVE · 10 ATOMS
Loading your default key…
The full key is used to call the gateway and stays in this tab — never sent to orbit or saved.

About this endpoint

What it does

Generates fake company profiles. The endpoint accepts a query parameter to control how many profiles are generated, but the response schema is not yet defined.

Query Parameter(s)

AttributeTypeMandatoryDescription
countIntegerNoNumber of company profiles to generate. Minimum 1, maximum 50, default 1.

Response

The endpoint returns a minimal acknowledgement on success — the detailed shape is not yet captured in the schema.

Query parameters

Name
Type
Description
countOPTIONAL
integer
DEFAULT 1
▣ COMMON ERRORS

Errors any endpoint can return

400bad_request

Required parameter missing or malformed body.

401unauthorized

API key missing, revoked, or not authorized for this service.

429rate_limited

Your plan's per-second rate exceeded. Retry with exponential backoff.

503upstream_busy

Backend temporarily unavailable. Try again in a few seconds.