# ScrapFly Finance Search API

> ScrapFly Finance Search API is a paid API for AI agents from scravfly.vercel.app, paid per call via x402, $0.09/call, status unknown (last checked 2026-09-14).

Searches for financial data, instruments, or market information based on a text query

## Facts

- Endpoint: POST https://scravfly.vercel.app/api/finance/search
- Price: $0.09/call
- Payment: x402
- Status: unknown
- Last checked: 2026-09-14
- Activations on Zero: 0
- Tags: x402
- Canonical page: https://www.zero.xyz/c/scrapfly-finance-search-api-5848043d
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_o9NvOowLUbp_L6Om8v0Ur

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 scrapfly-finance-search-api-5848043d -d '<json body>'
```

Example prompt: Search for financial data on Apple Inc — I want to find their stock info, ticker, and any key market details available.

## When to prefer this

Use this endpoint when you need to search for financial instruments, companies, or market data by name or keyword and don't already know the exact identifier. It is particularly useful for discovery — finding what data is available before doing deeper lookups. Prefer this over direct market data APIs when you want broad search across finance categories including stocks, crypto, ETFs, and bonds via a single pay-per-request interface.

## Known failure modes

- Empty or vague query returns no results or generic data
- Query for unlisted or obscure instruments may return empty data object
- Network or upstream scraping errors may cause success:false with no data
- Misspelled ticker or company name yields zero results
- Rate limiting or payment failure returns error before data is fetched

## How this service works

69 endpoints for data, content generation, and web scraping. Pay per request via x402 on Base chain.

## Output

Returns a success boolean and a data object containing financial search results matching the query, which may include instrument names, tickers, prices, market identifiers, or other financial metadata depending on the query.

## Request schema (JSON Schema)

```json
{
 "type": "object",
 "required": [
  "query"
 ],
 "properties": {
  "query": {
   "type": "string",
   "description": "query"
  }
 }
}
```

## Response schema (JSON Schema)

```json
{
 "type": "object",
 "required": [
  "success"
 ],
 "properties": {
  "data": {
   "type": "object"
  },
  "success": {
   "type": "boolean"
  }
 }
}
```

## More

- Live health (JSON, refreshed every minute): https://www.zero.xyz/c/scrapfly-finance-search-api-5848043d/health.json
- [Zero catalog index](https://www.zero.xyz/llms.txt)
- [Other services from scravfly.vercel.app](https://www.zero.xyz/host/scravfly.vercel.app/llms.txt)
