Apollo Organization news API
Search news related to one or more organizations with article details, categories, and pagination totals.
Try it
Make your first request
{
"data": {
"articles": [
{
"domain": "example.com",
"eventCategories": [
"example"
],
"id": "a1b2c3d4",
"organizationIds": [
"Acme Inc"
],
"publishedUtc": 12.5,
"snippet": "A short example description of this item.",
"title": "Example title",
"url": "https://example.com/page"
}
],
"limit": 42,
"page": 29,
"total": 12500,
"totalPages": 12500
},
"found": true
}interface ApolloOrganizationNewsResponse {
data: {
articles: {
domain?: string;
eventCategories?: string[];
id: string;
organizationIds?: string[];
publishedUtc?: number;
snippet?: string;
title: string;
url: string;
}[];
limit: number;
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.organization_news \
-H "Authorization: Bearer $ANYAPI_KEY" \
-H "Content-Type: application/json" \
-d '{"limit":3,"organizationIds":["5e66b6381e05b4008c8331b8"],"page":1}'| Field | Type | Example value |
|---|---|---|
| Request body | ||
| organizationIds | array | ["5e66b6381e05b4008c8331b8"]Organization identifiers whose related news should be returned. |
| keywords | string | Optional keywords to match in related articles. |
| limit | integer | 3Maximum articles returned on this page. |
| page | integer | 1One-based result page. |
| Response | ||
| data | object | |
| data.articles | object[] | Related news articles on this page. |
| data.articles[].domain | string | Publishing domain. |
| data.articles[].eventCategories | string[] | Detected business event categories. |
| data.articles[].id | string | Stable article identifier. |
| data.articles[].organizationIds | string[] | Organization identifiers associated with the article. |
| data.articles[].publishedUtc | number | UTC epoch timestamp in seconds (Unix time). Multiply by 1000 for a JS Date in milliseconds. |
| data.articles[].snippet | string | Article summary or excerpt. |
| data.articles[].title | string | Article title. |
| data.articles[].url | string | Canonical article URL. |
| data.limit | integer | Page size returned. |
| data.page | integer | One-based page returned. |
| data.total | integer | Total matching articles. |
| data.totalPages | integer | Total available pages. |
| found | boolean | Whether any related articles were found. |
| Price | ||
| Price per request | USD | $0.012 |
| Price /1k req | USD | $12.00 |
FAQ
About the Apollo Organization news API
The AnyAPI Apollo Organization news API returns Apollo organization news data as normalized JSON from one POST call to /v1/run/apollo.organization_news. Search news related to one or more organizations with article details, categories, 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, 93.8% of Apollo organization news calls through AnyAPI succeeded, with a median response time of 1.1 seconds across 16 measured calls.