Fetch investor data including VCs, angels, PE firms, corporate investors, accele
Fetch investor data including VCs, angels, PE firms, corporate investors, accelerators, and more. 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.
Paid test badge: not yet. The checks above are free: we call the tool without paying and read the payment request it sends back. The Verified badge needs paid calls whose answers match the promised output, and nobody can buy a badge.
Endpoint
GET https://x402.orthogonal.com/signalbase/signals/investors
| Category | Market data |
|---|---|
| Provider host | x402.orthogonal.com |
| Networks | eip155:143, eip155:8453 |
| Payment schemes | exact |
| Self-reported calls, 30 days | 4 from 1 payers (the provider's figure, not ours) |
Our checks, last 30 days
| Day | Result | HTTP | Asked | Time |
|---|---|---|---|---|
| 2026-09-24 | valid payment request | 402 | $0.08 | 395 ms |
Example input (from the provider)
{
"method": "GET",
"queryParams": {},
"type": "http"
}
Promised output schema (from the provider)
{
"$schema": "https://json-schema.org/draft/2020-12/schema",
"properties": {
"input": {
"additionalProperties": false,
"properties": {
"method": {
"enum": [
"GET"
],
"type": "string"
},
"queryParams": {
"properties": {
"countries": {
"description": "Comma-separated country codes",
"type": "string"
},
"limit": {
"description": "Results per page (max: 100)",
"type": "integer"
},
"page": {
"description": "Page number 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.",
"type": "integer"
},
"sort_by": {
"description": "Sort field: name, created_at, ticket_size_min, ticket_size_max",
"type": "string"
},
"sort_order": {
"description": "Sort direction: asc or desc",
"type": "string"
},
"ticket_size_max": {
"description": "Maximum ticket size in USD",
"type": "integer"
},
"ticket_size_min": {
"description": "Minimum ticket size in USD",
"type": "integer"
},
"type": {
"description": "Comma-separated investor types",
"type": "string"
}
},
"type": "object"
},
"type": {
"const": "http",
"type": "string"
}
},
"required": [
"type",
"method"
],
"type": "object"
}
},
"required": [
"input"
],
"type": "object"
}