# PredictLeads Company Products Lookup

> PredictLeads Company Products Lookup 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-15).

Retrieves a paginated list of products associated with a specific company domain using PredictLeads data

## Facts

- Endpoint: GET https://x402.orthogonal.com/predictleads/v3/companies/stripe.com/products
- Price: $0.04/call
- Payment: x402
- Status: unknown
- Last checked: 2026-09-15
- Activations on Zero: 0
- Tags: x402
- Canonical page: https://www.zero.xyz/c/predictleads-company-products-lookup-95a06640
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_BP7tcuOl6j6MfXxxcpM_D

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-products-lookup-95a06640
```

Example prompt: Can you pull up all the products associated with stripe.com using PredictLeads? I want to see what products Stripe offers.

## When to prefer this

Use this endpoint when you need structured product data associated with a specific company domain, especially for sales intelligence, competitive analysis, or market research workflows. It is preferable over web scraping when you need clean, structured product data with pagination support and cost-efficient continuation via parentRequestId for multi-page retrieval.

## Known failure modes

- Unknown or unrecognized company domain returns empty results
- Invalid date format in first_seen_at_from or first_seen_at_until causes request failure
- Missing or incorrect parentRequestId when paginating may result in being charged for subsequent pages
- Rate limiting or payment failure via x402 protocol blocks the request
- Page number out of range returns empty result set

## How this service works

Get products associated with a 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 products associated with the specified company domain, including product names and details sourced from PredictLeads. Also includes billing metadata such as a requestId that can be used as parentRequestId for subsequent pages at no additional charge.

## 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"
      },
      "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-company-products-lookup-95a06640/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)
