# PredictLeads Latest Products Discovery

> PredictLeads Latest Products Discovery 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 the most recently discovered products across all companies tracked by PredictLeads, with pagination support and deduplicated billing for multi-page queries.

## Facts

- Endpoint: GET https://x402.orthogonal.com/predictleads/v3/discover/products/latest
- 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-latest-products-discovery-5fcbbbe2
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_fnWqbaM83WSifq8tuXh4G

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-latest-products-discovery-5fcbbbe2
```

Example prompt: Pull the latest newly discovered products across all companies from PredictLeads — show me the first page of up to 25 results, filtered to products first seen in the last 7 days.

## When to prefer this

Use this endpoint when you need a broad, company-agnostic view of the most recently discovered products across all companies tracked by PredictLeads. It is ideal for market monitoring, competitive intelligence dashboards, or any workflow that needs to ingest a continuous stream of new product launches. Prefer this over keyword-based search endpoints when you want a chronological feed rather than filtered results, and leverage the parentRequestId billing feature to paginate through large result sets cost-effectively.

## Known failure modes

- Invalid date format for first_seen_at_from or first_seen_at_until returns a 400 error
- Exceeding rate limits returns a 429 response
- Passing a parentRequestId with changed non-pagination filters starts a new billable request instead of continuing the previous one
- Invalid page or limit values may return empty results or errors
- Payment failure via x402 protocol blocks the request entirely

## How this service works

Discover the latest products across all companies 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 the most recently discovered products across all tracked companies, including product names, associated companies, first-seen timestamps, and source information. The response also includes billing metadata such as a requestId that can be used as a parentRequestId for free subsequent page calls on the same logical query.

## 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"
      },
      "sources": {
       "type": "string"
      },
      "first_seen_at_from": {
       "type": "string"
      },
      "first_seen_at_until": {
       "type": "string"
      }
     }
    }
   },
   "additionalProperties": false
  }
 }
}
```

## More

- Live health (JSON, refreshed every minute): https://www.zero.xyz/c/predictleads-latest-products-discovery-5fcbbbe2/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)
