Apollo Organizations search API
Search organizations by location, employee range, industry, and keywords with normalized company records and pagination totals.
Try it
Make your first request
{
"data": {
"limit": 42,
"organizations": [
{
"annualRevenue": 19.99,
"annualRevenueDisplay": "example",
"domain": "example.com",
"facebookUrl": "https://example.com/page",
"foundedYear": 2024,
"id": "a1b2c3d4",
"image": "https://example.com/image.jpg",
"linkedinUrl": "https://example.com/page",
"naicsCodes": [
"a1b2c3d4"
],
"name": "Example title",
"sicCodes": [
"a1b2c3d4"
],
"twitterUrl": "https://example.com/page",
"websiteUrl": "https://example.com/page"
}
],
"page": 29,
"total": 12500,
"totalPages": 12500
},
"found": true
}interface ApolloOrganizationsSearchResponse {
data: {
limit: number;
organizations: {
annualRevenue?: number;
annualRevenueDisplay?: string;
domain?: string;
facebookUrl?: string;
foundedYear?: number;
id: string;
image?: string;
linkedinUrl?: string;
naicsCodes?: string[];
name: string;
sicCodes?: string[];
twitterUrl?: string;
websiteUrl?: string;
}[];
page: number;
total: number;
totalPages: number;
} | 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 30dcurl -X POST https://api.getanyapi.com/v1/run/apollo.organizations_search \
-H "Authorization: Bearer $ANYAPI_KEY" \
-H "Content-Type: application/json" \
-d '{"keywords":"Apollo","limit":3,"page":1}'| Field | Type | Example value |
|---|---|---|
| Request body | ||
| employeeRanges | array | Employee-count ranges in Apollo notation, such as 51,200. |
| industryIds | array | Apollo industry tag identifiers to match. |
| keywords | string | "Apollo"Keywords to match across organization records. |
| limit | integer | 3Maximum organizations returned on this page. |
| locations | array | Headquarters locations to match. |
| page | integer | 1One-based result page. |
| Response | ||
| data | object | |
| data.limit | integer | Page size returned by the upstream database. |
| data.organizations | object[] | Organizations on this page. |
| data.organizations[].annualRevenue | number | Estimated annual revenue in USD. |
| data.organizations[].annualRevenueDisplay | string | Human-readable estimated annual revenue. |
| data.organizations[].domain | string | Primary organization domain. |
| data.organizations[].facebookUrl | string | Canonical Facebook page URL. |
| data.organizations[].foundedYear | integer | Year the organization was founded. |
| data.organizations[].id | string | Stable organization identifier. |
| data.organizations[].image | string | Organization logo URL. |
| data.organizations[].linkedinUrl | string | Canonical LinkedIn company URL. |
| data.organizations[].naicsCodes | string[] | NAICS industry codes. |
| data.organizations[].name | string | Organization name. |
| data.organizations[].sicCodes | string[] | SIC industry codes. |
| data.organizations[].twitterUrl | string | Canonical X or Twitter profile URL. |
| data.organizations[].websiteUrl | string | Canonical organization website URL. |
| data.page | integer | One-based page returned. |
| data.total | integer | Total matching organizations. |
| data.totalPages | integer | Total available pages. |
| found | boolean | Whether any matching organizations were found. |
| Price | ||
| Price per request | USD | $0.012 |
| Price /1k req | USD | $12.00 |
FAQ
About the Apollo Organizations search API
The AnyAPI Apollo Organizations search API returns Apollo organizations search data as normalized JSON from one POST call to /v1/run/apollo.organizations_search. Search organizations by location, employee range, industry, and keywords with normalized company records and pagination totals. 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. Over the last 30 days, 100.0% of Apollo organizations search calls through AnyAPI succeeded, with a median response time of 1.7 seconds across 64 measured calls.