# PredictLeads Company News Events

> PredictLeads Company News Events is a paid API for AI agents from x402.orthogonal.com, paid per call via x402, $0.04/call, status unknown (last checked 2026-09-13).

Fetches paginated news events for a specific company (Stripe.com) from the PredictLeads dataset, with category and date filtering

## Facts

- Endpoint: GET https://x402.orthogonal.com/predictleads/v3/companies/stripe.com/news_events
- Price: $0.04/call
- Payment: x402
- Status: unknown
- Last checked: 2026-09-13
- Activations on Zero: 0
- Tags: x402
- Canonical page: https://www.zero.xyz/c/predictleads-company-news-events-bfd399cc
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_2NI2vLpgnlB6O2Q1jqkKt

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 predictleads-company-news-events-bfd399cc
```

Example prompt: Pull the latest news events for stripe.com from PredictLeads — filter to just the last 30 days and return the first page of results.

## When to prefer this

Choose this endpoint when you need structured, categorized news event data specifically about a known company (by domain) and want paginated access with cost-efficient continuation queries. Prefer this over generic web search when you need consistent, structured news data from PredictLeads' curated dataset with date and category filtering. Best for monitoring, research, or competitive intelligence workflows where pagination billing efficiency matters.

## Known failure modes

- Invalid or unsupported company domain returns empty results
- Malformed date strings in found_at_from or found_at_until cause 400 errors
- Invalid category filter returns no matching events
- Changing non-pagination parameters on a continuation call starts a new billable request
- Payment failure via x402 protocol blocks the request
- Rate limiting or quota exhaustion returns 429

## How this service works

Get news events for a specific company Pagination billing: call the first page normally and save billing.requestId from the Orthogonal /v1/run response. For later page, offset, or cursor calls on the same logical search, pass parentRequestId with unchanged non-pagination parameters. Valid continuation calls still get their own request IDs and quoted price, but are charged 0. Changing filters starts a new billable request.

## Output

Returns a paginated list of news events associated with stripe.com, including event details such as category, headline, source URL, and discovery timestamp. Also includes billing metadata (requestId) needed to continue pagination without additional charges.

## Request schema (JSON Schema)

```json
{
 "type": "object",
 "$schema": "https://json-schema.org/draft/2020-12/schema",
 "required": [
  "input"
 ],
 "properties": {
  "input": {
   "type": "object",
   "required": [
    "type",
    "method"
   ],
   "properties": {
    "type": {
     "type": "string",
     "const": "http"
    },
    "method": {
     "enum": [
      "GET"
     ],
     "type": "string"
    },
    "queryParams": {
     "type": "object",
     "properties": {
      "page": {
       "type": "integer",
       "description": "For later pages of the same logical search, keep non-pagination parameters unchanged and pass top-level parentRequestId from the first Orthogonal /v1/run response."
      },
      "limit": {
       "type": "integer"
      },
      "categories": {
       "type": "string"
      },
      "found_at_from": {
       "type": "string"
      },
      "found_at_until": {
       "type": "string"
      }
     }
    }
   },
   "additionalProperties": false
  }
 }
}
```

## More

- Live health (JSON, refreshed every minute): https://www.zero.xyz/c/predictleads-company-news-events-bfd399cc/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)
