# ScrapFly Finance Quote API

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

Retrieves a real-time financial quote for a given stock or asset symbol

## Facts

- Endpoint: POST https://scravfly.vercel.app/api/finance/quote
- Price: $0.15/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-8898c7c4
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_vPIn4eYJ_BefmgvYx9bOP

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-8898c7c4 -d '<json body>'
```

Example prompt: Can you get me the current financial quote for AAPL?

## When to prefer this

Use this endpoint when you need a quick financial quote for a known ticker symbol and are operating within an x402/Base-chain payment context. Suitable for agents that need real-time or near-real-time price lookups as part of a larger financial workflow.

## Known failure modes

- Invalid or unrecognized symbol returns success:false or empty data
- Network timeout if the upstream data source is slow
- Payment failure on Base chain if USDC balance is insufficient
- Symbol not found for non-equity or delisted assets

## How this service works

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

## Output

Returns a JSON object with a success boolean and a data object containing the financial quote details for the requested symbol, including price and related market data fields.

## 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-8898c7c4/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)
