Apollo API

Apollo Organization API

Get a complete organization profile by ID including company, industry, employee, revenue, funding, location, and technology data.

POST/v1/run/apollo.organization
Requests
-
30d

Pricing

One price, in dollars

Providers
Apollo- served- uptime- p50$12.00/1k reqflat

Try it

Make your first request

Open in
Get a free key
Sample response
Free runs return only the first 3 results. Fund a key to get the full response.
{
  "data": {
    "annualRevenue": 19.99,
    "annualRevenueDisplay": "example",
    "city": "San Francisco",
    "country": "US",
    "description": "A short example description of this item.",
    "domain": "example.com",
    "employeeCount": 12500,
    "facebookUrl": "https://example.com/page",
    "foundedYear": 2024,
    "id": "a1b2c3d4",
    "image": "https://example.com/image.jpg",
    "industries": [
      "example"
    ],
    "industry": "general",
    "keywords": [
      "a1b2c3d4"
    ],
    "latestFundingStage": "example",
    "latestFundingUtc": 12.5,
    "linkedinUrl": "https://example.com/page",
    "naicsCodes": [
      "a1b2c3d4"
    ],
    "name": "Example title",
    "postalCode": "94107",
    "sicCodes": [
      "a1b2c3d4"
    ],
    "state": "CA",
    "streetAddress": "123 Main St",
    "technologyNames": [
      "Example title"
    ],
    "totalFunding": 12500,
    "totalFundingDisplay": "example",
    "twitterUrl": "https://example.com/page",
    "websiteUrl": "https://example.com/page"
  },
  "found": true
}
Response interface
interface ApolloOrganizationResponse {
  data: {
    annualRevenue?: number;
    annualRevenueDisplay?: string;
    city?: string;
    country?: string;
    description?: string;
    domain?: string;
    employeeCount?: number;
    facebookUrl?: string;
    foundedYear?: number;
    id: string;
    image?: string;
    industries?: string[];
    industry?: string;
    keywords?: string[];
    latestFundingStage?: string;
    latestFundingUtc?: number;
    linkedinUrl?: string;
    naicsCodes?: string[];
    name: string;
    postalCode?: string;
    sicCodes?: string[];
    state?: string;
    streetAddress?: string;
    technologyNames?: string[];
    totalFunding?: number;
    totalFundingDisplay?: string;
    twitterUrl?: string;
    websiteUrl?: string;
  } | null;
  found: boolean;
}

Full parameter and response reference - every field, type, and example for this endpoint.

Reference

Request, response, and price

Last verified 2026-09-16 · uptime and latency measured over 30d
POST /v1/run/apollo.organization
curl -X POST https://api.getanyapi.com/v1/run/apollo.organization \
  -H "Authorization: Bearer $ANYAPI_KEY" \
  -H "Content-Type: application/json" \
  -d '{"organizationId":"5e66b6381e05b4008c8331b8"}'
FieldTypeExample value
Request body
organizationIdstring"5e66b6381e05b4008c8331b8"Organization identifier returned by an Apollo organization endpoint.
Response
dataobject
data.annualRevenuenumberEstimated annual revenue in USD.
data.annualRevenueDisplaystringHuman-readable estimated annual revenue.
data.citystringHeadquarters city.
data.countrystringHeadquarters country.
data.descriptionstringOrganization summary.
data.domainstringPrimary organization domain.
data.employeeCountintegerEstimated employee count.
data.facebookUrlstringCanonical Facebook page URL.
data.foundedYearintegerYear the organization was founded.
data.idstringStable organization identifier.
data.imagestringOrganization logo URL.
data.industriesstring[]Industries associated with the organization.
data.industrystringPrimary industry.
data.keywordsstring[]Keywords associated with the organization.
data.latestFundingStagestringLatest disclosed funding stage.
data.latestFundingUtcnumberUTC epoch timestamp in seconds (Unix time). Multiply by 1000 for a JS Date in milliseconds.
data.linkedinUrlstringCanonical LinkedIn company URL.
data.naicsCodesstring[]NAICS industry codes.
data.namestringOrganization name.
data.postalCodestringHeadquarters postal code.
data.sicCodesstring[]SIC industry codes.
data.statestringHeadquarters state or region.
data.streetAddressstringStreet address.
data.technologyNamesstring[]Technologies detected at the organization.
data.totalFundingnumberTotal disclosed funding in USD.
data.totalFundingDisplaystringHuman-readable total disclosed funding.
data.twitterUrlstringCanonical X or Twitter profile URL.
data.websiteUrlstringCanonical organization website URL.
foundbooleanWhether a matching organization was found.
Price
Price per requestUSD$0.012
Price /1k reqUSD$12.00

FAQ

About the Apollo Organization API

The AnyAPI Apollo Organization API returns Apollo organization data as normalized JSON from one POST call to /v1/run/apollo.organization. Get a complete organization profile by ID including company, industry, employee, revenue, funding, location, and technology data. AnyAPI returns one normalized schema whichever source serves it. It costs from $12 per 1,000 requests, in US dollars with no subscription and no monthly minimum.

It costs from $12 per 1,000 requests, in US dollars with no subscription and no monthly minimum. You fund one USD wallet, each call draws it down, and a failed request costs $0.

Get a complete organization profile by ID including company, industry, employee, revenue, funding, location, and technology data. The response is normalized JSON with the same envelope every AnyAPI endpoint returns, so parsing a second endpoint is a change of URL and nothing else.