# ScrapFly Finance Search

> ScrapFly Finance Search is a paid API for AI agents from test-scrapfly.orbonomy.xyz, paid per call via x402, $0.03/call, status unknown (last checked 2026-09-15).

Search for financial data and information using a query string, returning structured finance results

## Facts

- Endpoint: POST https://test-scrapfly.orbonomy.xyz/api/finance/search
- Price: $0.03/call
- Payment: x402
- Status: unknown
- Last checked: 2026-09-15
- Activations on Zero: 0
- Tags: x402
- Canonical page: https://www.zero.xyz/c/scrapfly-finance-search-3fb4429d
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_0e4OFJ64m6Bhll9DLXeYp

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-3fb4429d -d '<json body>'
```

Example prompt: Search for the latest financial data on Apple — I need earnings, valuation, and any recent market info you can find.

## When to prefer this

Use this endpoint when you need to search and retrieve financial data by keyword, company name, or ticker symbol and want structured results returned via a pay-per-request model on Base chain without managing a subscription.

## Known failure modes

- Missing or empty query field returns validation error
- Query matches no financial data, returning empty results
- Network or upstream scraping failure causes non-success response
- Malformed query string causes unexpected behavior
- Payment failure on Base chain prevents request execution

## 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 structured financial information matching the query, such as market data, company financials, or relevant financial metrics.

## 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-3fb4429d/health.json
- [Zero catalog index](https://www.zero.xyz/llms.txt)
- [Other services from test-scrapfly.orbonomy.xyz](https://www.zero.xyz/host/test-scrapfly.orbonomy.xyz/llms.txt)
