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
Try it
Make your first request
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 30dPOST /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"}'| Field | Type | Example value |
|---|---|---|
| Request body | ||
| organizationId | string | "5e66b6381e05b4008c8331b8"Organization identifier returned by an Apollo organization endpoint. |
| Response | ||
| data | object | |
| data.annualRevenue | number | Estimated annual revenue in USD. |
| data.annualRevenueDisplay | string | Human-readable estimated annual revenue. |
| data.city | string | Headquarters city. |
| data.country | string | Headquarters country. |
| data.description | string | Organization summary. |
| data.domain | string | Primary organization domain. |
| data.employeeCount | integer | Estimated employee count. |
| data.facebookUrl | string | Canonical Facebook page URL. |
| data.foundedYear | integer | Year the organization was founded. |
| data.id | string | Stable organization identifier. |
| data.image | string | Organization logo URL. |
| data.industries | string[] | Industries associated with the organization. |
| data.industry | string | Primary industry. |
| data.keywords | string[] | Keywords associated with the organization. |
| data.latestFundingStage | string | Latest disclosed funding stage. |
| data.latestFundingUtc | number | UTC epoch timestamp in seconds (Unix time). Multiply by 1000 for a JS Date in milliseconds. |
| data.linkedinUrl | string | Canonical LinkedIn company URL. |
| data.naicsCodes | string[] | NAICS industry codes. |
| data.name | string | Organization name. |
| data.postalCode | string | Headquarters postal code. |
| data.sicCodes | string[] | SIC industry codes. |
| data.state | string | Headquarters state or region. |
| data.streetAddress | string | Street address. |
| data.technologyNames | string[] | Technologies detected at the organization. |
| data.totalFunding | number | Total disclosed funding in USD. |
| data.totalFundingDisplay | string | Human-readable total disclosed funding. |
| data.twitterUrl | string | Canonical X or Twitter profile URL. |
| data.websiteUrl | string | Canonical organization website URL. |
| found | boolean | Whether a matching organization was found. |
| Price | ||
| Price per request | USD | $0.012 |
| Price /1k req | USD | $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.