# ScrapFly Finance Quote API

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

Fetches a financial market quote for a given ticker symbol, returning price and related data.

## Facts

- Endpoint: POST https://test-scrapfly.orbonomy.xyz/api/finance/quote
- Price: $0.05/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-quote-api-8b4abc70
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_iNlbhDDgtZONWWReh3OQX

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-quote-api-8b4abc70 -d '<json body>'
```

Example prompt: Can you get me the current market quote for TSLA?

## When to prefer this

Use this endpoint when you need a quick per-request financial quote for a specific ticker symbol and are operating in an x402/Base chain payment environment. Suitable for spot lookups of individual symbols without needing a full brokerage integration.

## Known failure modes

- Invalid or unrecognized symbol returns success false or empty data
- Payment failure via x402 returns 402 status
- Network or upstream data source unavailable returns error response
- Malformed request missing required symbol field returns validation error

## How this service works

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

## Output

A JSON object with a success boolean and a data object containing the financial quote details for the requested symbol, such as current price and related market metrics.

## Request schema (JSON Schema)

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

## 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-quote-api-8b4abc70/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)
