Apollo API

Apollo Organization news API

Search news related to one or more organizations with article details, categories, and pagination totals.

POST/v1/run/apollo.organization_news
Uptime
93.75%
30d · 16 calls
Requests
17
30d · weekly, last 12 wks
Response
1.1s
median · 30d

Pricing

One price, in dollars

Providers
Apollo15 served93.75% uptime979ms 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": {
    "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
}
Response interface
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 30d
POST /v1/run/apollo.organization_news
curl -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}'
FieldTypeExample value
Request body
organizationIdsarray["5e66b6381e05b4008c8331b8"]Organization identifiers whose related news should be returned.
keywordsstringOptional keywords to match in related articles.
limitinteger3Maximum articles returned on this page.
pageinteger1One-based result page.
Response
dataobject
data.articlesobject[]Related news articles on this page.
data.articles[].domainstringPublishing domain.
data.articles[].eventCategoriesstring[]Detected business event categories.
data.articles[].idstringStable article identifier.
data.articles[].organizationIdsstring[]Organization identifiers associated with the article.
data.articles[].publishedUtcnumberUTC epoch timestamp in seconds (Unix time). Multiply by 1000 for a JS Date in milliseconds.
data.articles[].snippetstringArticle summary or excerpt.
data.articles[].titlestringArticle title.
data.articles[].urlstringCanonical article URL.
data.limitintegerPage size returned.
data.pageintegerOne-based page returned.
data.totalintegerTotal matching articles.
data.totalPagesintegerTotal available pages.
foundbooleanWhether any related articles were found.
Price
Price per requestUSD$0.012
Price /1k reqUSD$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.

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.

Search news related to one or more organizations with article details, categories, and pagination totals. 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.

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. These are AnyAPI's own measurements of traffic through the gateway, recomputed continuously, not a published service-level target.