# PredictLeads Business Connections Lookup

> PredictLeads Business Connections 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 paginated business connections (partnerships, integrations, customer relationships) for a specific company by domain

## Facts

- Endpoint: GET https://x402.orthogonal.com/predictleads/v3/companies/stripe.com/connections
- 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-business-connections-lookup-dd178648
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_EbN5GiFfMl-WYblQayF0i

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-business-connections-lookup-dd178648
```

Example prompt: Pull up the business connections for stripe.com — I want to see who they're partnered with or integrated with, filtered to technology category connections, first page of results.

## When to prefer this

Use this endpoint when you need structured business connection data (partnerships, integrations, customer relationships) for a specific company identified by domain name. Prefer this over general web search when you need clean, structured, machine-readable relationship data with categories and timestamps. Ideal for sales intelligence, competitive research, partner mapping, and due diligence workflows. The pagination billing model makes it cost-efficient to retrieve all pages of a large result set.

## Known failure modes

- Company domain not found in PredictLeads database — returns empty results or 404
- Invalid category filter value — may return error or no matches
- Rate limiting or payment failure via x402 protocol — call rejected
- Changing filters between pages starts a new billable request — agents must keep non-pagination params unchanged when paginating
- Network timeout for large result sets

## How this service works

Get business connections 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 business connections for the specified company domain, including partner/connected company details, connection categories, first-seen timestamps, and billing metadata (requestId for free continuation pages). Later pages using the same filters can be fetched at no additional cost by passing parentRequestId.

## 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"
      },
      "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-business-connections-lookup-dd178648/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)
