POST

Get the latest quote for a stock symbol (price, change, volume), cached 30s. Powered by Alpha Vantage

/v1/finance/stock-quote

Powered by Alpha Vantage

Request → Response

Examples from schemas.json.

Requestapplication/json
POST /v1/finance/stock-quote
Content-Type: application/json

{
  "symbol": "example"
}
Responseapplication/json
HTTP/1.1 200 OK
Content-Type: application/json

// Endpoint-specific body after 402 settlement

Overview

Get the latest quote for a stock symbol (price, change, volume), cached 30s. Powered by Alpha Vantage.

APIs for real-time and historical stock-market data.

Request schema

Body: JSON · application/json

FieldTypeDescription
symbolstringrequired
IMPLEMENTATION
curl -X POST https://api.tools402.dev/v1/finance/stock-quote \
  -H "Content-Type: application/json" \
  -d '{
  "symbol": "example"
}'

402 payment flow omitted — see Integrations for settlement.