# Orthogonal SignalBase Funding Signals

> Orthogonal SignalBase Funding Signals is a paid API for AI agents from x402.orthogonal.com, paid per call via x402, $0.08/call, status unknown (last checked 2026-09-14).

Fetch startup and company funding round signals with rich filtering by date, country, round type, amount, industry, and more

## Facts

- Endpoint: GET https://x402.orthogonal.com/signalbase/signals/funding
- Price: $0.08/call
- Payment: x402
- Status: unknown
- Last checked: 2026-09-14
- Activations on Zero: 0
- Tags: x402
- Canonical page: https://www.zero.xyz/c/orthogonal-signalbase-funding-signals-91c59b9e
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_Od9RcSyRq3DfCEWTWZ0av

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 orthogonal-signalbase-funding-signals-91c59b9e
```

Example prompt: Find me all Series A and Series B funding rounds in the US fintech industry from the last 30 days, with amounts between $5M and $100M — show me up to 50 results sorted by date.

## When to prefer this

Use this endpoint when you need structured, filterable startup and company funding round data with precise controls over date range, geography, round type, and funding amount. It is especially well-suited for sales intelligence, market research, investor tracking, and competitive monitoring workflows that require pagination over large result sets with cost-efficient continuation billing via parentRequestId.

## Known failure modes

- Invalid ISO-8601 date format returns a 400 error
- Unknown or misspelled industry/category values may return empty results
- Changing filter parameters while passing parentRequestId starts a new billable request
- Exceeding max limit of 100 per page returns a validation error
- Invalid currency code (non-ISO 4217) causes a 400 error
- Rate limiting or payment failure returns a 402 or 429 error

## How this service works

Fetch funding signals with filtering by date, country, round type, amount, industry, 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.

## Output

A paginated list of funding signal records, each containing company name, funding round type, amount, currency, date, country, industry, and related metadata. The response includes billing information with a requestId that can be used as parentRequestId for free subsequent pages of the same 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": "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."
      },
      "limit": {
       "type": "integer",
       "description": "Results per page (max: 100)"
      },
      "round": {
       "type": "string",
       "description": "Comma-separated round types"
      },
      "dateTo": {
       "type": "string",
       "description": "Filter by date to (ISO-8601 string)"
      },
      "search": {
       "type": "string",
       "description": "Free-text search across company name & industry"
      },
      "sort_by": {
       "type": "string",
       "description": "Sort field"
      },
      "currency": {
       "type": "string",
       "description": "Filter by ISO 4217 currency code"
      },
      "dateFrom": {
       "type": "string",
       "description": "Filter by date from (ISO-8601 string)"
      },
      "industry": {
       "type": "string",
       "description": "Comma-separated exact industry names"
      },
      "countries": {
       "type": "string",
       "description": "Comma-separated country codes"
      },
      "amount_max": {
       "type": "integer",
       "description": "Maximum funding amount"
      },
      "amount_min": {
       "type": "integer",
       "description": "Minimum funding amount"
      },
      "categories": {
       "type": "string",
       "description": "Pipe-separated company categories / industries"
      },
      "sort_order": {
       "type": "string",
       "description": "Sort direction"
      },
      "date_preset": {
       "type": "string",
       "example": "last_7d",
       "description": "Relative date shorthand; takes precedence over dateFrom/dateTo. Valid values: today, yesterday, last_7d, last_14d, last_30d, last_60d, last_90d, last_6m, last_1y, last_2y, this_week, this_month, this_quarter, this_year, last_week, last_month, last_quarter, last_year."
      },
      "company_name":
… (truncated)
```

## More

- Live health (JSON, refreshed every minute): https://www.zero.xyz/c/orthogonal-signalbase-funding-signals-91c59b9e/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)
