# Bytemine Funding Signals Search

> Bytemine Funding Signals Search is a paid API for AI agents from x402.orthogonal.com, paid per call via x402, $0.6/call, status unknown (last checked 2026-09-13).

Search real-time startup funding signals with rich filters for round type, amount, investor, industry, date range, country, and company size.

## Facts

- Endpoint: POST https://x402.orthogonal.com/bytemine/signals/funding
- Price: $0.6/call
- Payment: x402
- Status: unknown
- Last checked: 2026-09-13
- Activations on Zero: 0
- Tags: x402
- Canonical page: https://www.zero.xyz/c/bytemine-funding-signals-search-ec123a30
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_0N2hrUyDGWjRzhtg1zHqp

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 bytemine-funding-signals-search-ec123a30 -d '<json body>'
```

Example prompt: Search Bytemine for funding signals — find Series A and Series B rounds in the AI industry from the last 30 days, minimum $5M raised, in the US, and show me the first 20 results sorted by amount descending.

## When to prefer this

Use this endpoint when you need real-time, filterable startup funding data with granular controls over round type, amount range, investor, industry, and geography. Prefer it over static databases when freshness matters (e.g., last 7 or 30 days). Use the count=true mode first to gauge result volume before paying per record. Best for sales prospecting, VC deal flow, market research, and competitive intelligence workflows.

## Known failure modes

- Invalid date format (must be YYYY-MM-DD) returns validation error
- Exceeding limit of 100 results per page returns error
- Invalid round type string returns empty or error response
- Insufficient USDC balance (0.6 per record) causes payment failure
- No matching records returns empty results array
- Invalid country code format returns empty results

## How this service works

Search real-time funding signals with filters for round type, amount, investor, industry, date, employee count, and more. 1 credit per record. Use count='true' for free count-only query.

## Output

Returns paginated funding signal records matching the filters, each containing company name, funding round type, amount raised (in USD cents), investor names, industry, country, employee count, and occurrence/discovery dates. A count-only query (count=true) returns just the total matching record count for free.

## Request schema (JSON Schema)

```json
{
 "type": "object",
 "properties": {
  "page": {
   "type": "integer",
   "description": "Page number"
  },
  "limit": {
   "type": "integer",
   "description": "Results per page (max 100, default 20)"
  },
  "round": {
   "type": "string",
   "description": "Comma-separated: Seed, Series A, Series B, Series C, etc."
  },
  "dateTo": {
   "type": "string",
   "description": "End date (YYYY-MM-DD)"
  },
  "search": {
   "type": "string",
   "description": "Search keyword"
  },
  "sort_by": {
   "type": "string",
   "description": "Sort field: occurred_at, discovered_at, amount, employee_count"
  },
  "dateFrom": {
   "type": "string",
   "description": "Start date (YYYY-MM-DD)"
  },
  "industry": {
   "type": "string",
   "description": "Comma-separated industries"
  },
  "countries": {
   "type": "string",
   "description": "Comma-separated country codes"
  },
  "amount_max": {
   "type": "integer",
   "description": "Maximum amount (USD cents)"
  },
  "amount_min": {
   "type": "integer",
   "description": "Minimum amount (USD cents)"
  },
  "sort_order": {
   "type": "string",
   "description": "asc or desc"
  },
  "date_preset": {
   "type": "string",
   "description": "Date shortcut: today, last_7d, last_30d, last_90d, this_month, etc."
  },
  "company_name": {
   "type": "string",
   "description": "Filter by company name"
  },
  "investor_name": {
   "type": "string",
   "description": "Filter by investor name"
  }
 }
}
```

## More

- Live health (JSON, refreshed every minute): https://www.zero.xyz/c/bytemine-funding-signals-search-ec123a30/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)
