# PredictLeads Portfolio Companies Connections Discovery

> PredictLeads Portfolio Companies Connections 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-15).

Discovers and retrieves connection relationships across portfolio companies in the PredictLeads dataset, with smart pagination billing via Orthogonal's x402 protocol.

## Facts

- Endpoint: GET https://x402.orthogonal.com/predictleads/v3/discover/portfolio_companies/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-portfolio-companies-connections-discovery-5c54f9b1
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_oUeehetzUzL-7T-UmjQNP

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-portfolio-companies-connections-discovery-5c54f9b1
```

Example prompt: Show me the connections across portfolio companies from PredictLeads — get the first page of 25 results and only include connections first seen after January 1, 2024.

## When to prefer this

Use this endpoint when you need to discover and map relational connections between companies within an investment portfolio dataset, particularly when you want to paginate cost-efficiently through large result sets using PredictLeads data via Orthogonal's x402 billing protocol. Prefer this over generic company search endpoints when the specific goal is portfolio-level relationship discovery with date-filtered connection windows.

## Known failure modes

- Missing or invalid required parameters returns a 400 error
- Changing filter parameters mid-pagination starts a new billable request instead of continuing the prior one
- Invalid parentRequestId causes pagination billing to fail or restart
- Rate limiting or quota exhaustion returns a 429 or 402 error
- No results found for the specified date filters returns an empty list

## How this service works

Discover connections across portfolio 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 discovered connection records between portfolio companies, including relationship metadata and timestamps for when connections were first and last seen. Also includes a billing.requestId for use as parentRequestId in subsequent pagination calls, with continued pages billed at zero cost.

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

## More

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