# Apollo News Articles Search

> Apollo News Articles Search is a paid API for AI agents from x402.orthogonal.com, paid per call via x402, $0.01/call, status unknown (last checked 2026-09-15).

Search for news articles related to specific companies using Apollo organization IDs and optional keyword filters.

## Facts

- Endpoint: POST https://x402.orthogonal.com/apollo/api/v1/news_articles/search
- Price: $0.01/call
- Payment: x402
- Status: unknown
- Last checked: 2026-09-15
- Activations on Zero: 0
- Tags: x402
- Canonical page: https://www.zero.xyz/c/apollo-news-articles-search-14dee41d
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_RkWnhMzzmRko_58geSCkz

Status and success rate cover calls made through Zero and Zero's own probes. Third-party monitors may report differently.

## How to call it through Zero

Zero handles the 402 payment challenge and records the run. With the Zero CLI installed (`npm i -g @zeroxyz/cli`):

```sh
zero fetch --capability apollo-news-articles-search-14dee41d -d '<json body>'
```

Example prompt: Find me the latest news articles about Stripe — their Apollo organization ID is 54a22f1b69702d7f2900019e — and search for anything related to 'payments' or 'expansion', showing page 1 with 10 results per page.

## When to prefer this

Use this endpoint when you need to find news coverage for specific companies that are already tracked in Apollo's database and you have their Apollo organization IDs. Ideal for sales intelligence workflows, pre-call research, lead enrichment, or competitive monitoring where you need structured, company-specific news rather than broad web search results.

## Known failure modes

- Missing or invalid organization_ids causes request failure
- Non-existent Apollo organization IDs return empty results
- Invalid page or per_page values may cause errors
- Payment failure returns 402 status
- Rate limiting or quota exhaustion returns error response
- Keywords with no matching articles return empty result set

## How this service works

Search for news articles related to companies in the Apollo database.

## Output

Returns a paginated list of news articles associated with the specified Apollo organization IDs, including article content, metadata, and relevance to the queried keywords.

## Request schema (JSON Schema)

```json
{
 "type": "object",
 "properties": {
  "page": {
   "type": "integer",
   "description": "Page number"
  },
  "per_page": {
   "type": "integer",
   "description": "Results per page"
  },
  "q_keywords": {
   "type": "string",
   "description": "Keywords to search in articles"
  },
  "organization_ids": {
   "type": "array",
   "description": "Apollo organization IDs to get news for (required)"
  }
 }
}
```

## More

- Live health (JSON, refreshed every minute): https://www.zero.xyz/c/apollo-news-articles-search-14dee41d/health.json
- [Zero catalog index](https://www.zero.xyz/llms.txt)
- [Other services from x402.orthogonal.com](https://www.zero.xyz/host/x402.orthogonal.com/llms.txt)
