Use when an agent needs us equity snapshot
Use when an agent needs us equity snapshot. Returns Fresh US equity OHLCV snapshot for one ticker and interval with bounded lookback, optional SMA/EMA/RSI indicators, source attribution and freshness evidence; stale or unavailable data is refused without settlement. $0.01.
10000 (raw units)
price
8
calls / 30d
2
unique payers
2026-09-14
updated
Provider
api.oblique.markets · discovered, not yet claimed by its owner
Payment (x402 accepts[])
[
{
"scheme": "exact",
"network": "eip155:8453",
"payTo": "0x970007590aCC5C938cd51345B17AF51B1B40D3Ab",
"asset": "0x833589fCD6eDb6E08f4c7C32D4f71b54bdA02913",
"amount": "10000",
"maxTimeoutSeconds": 60
},
{
"scheme": "exact",
"network": "solana:5eykt4UsFv8P8NJdTREpY1vzqKqZKvdp",
"payTo": "GYyTRmt317JafPHXPnM54Fsvsma5GnS9wm6qGMqaykdS",
"asset": "EPjFWdd5AufqSSqeM2qN1xzybapC8G4wEGGkZwyTDt1v",
"amount": "10000",
"maxTimeoutSeconds": 60
}
]Output schema
{
"bazaar": {
"info": {
"input": {
"body": {
"interval": "1d",
"lookback": 1,
"ticker": "AAPL"
},
"bodyType": "json",
"method": "POST",
"type": "http"
},
"output": {
"example": {
"data": [
{
"adjusted_close": 230.1,
"close": 230.1,
"high": 231.2,
"low": 227.9,
"open": 228.5,
"time": "2026-08-28T00:00:00.000Z",
"volume": 42100000
},
{
"adjusted_close": 231.7,
"close": 231.7,
"high": 232,
"low": 229.8,
"open": 230.4,
"time": "2026-08-29T00:00:00.000Z",
"volume": 38900000
}
],
"evidence": {
"provider": "Yahoo Finance chart API",
"query": {
"interval": "1d",
"ticker": "AAPL"
},
"retrieved_at": "2026-08-29T20:00:00.000Z"
},
"freshness": {
"age_seconds": 72000,
"latest_bar": "2026-08-29T00:00:00.000Z",
"max_age_seconds": 432000
},
"indicators": {
"sma_20": 225.4
},
"interval": "1d",
"lookback": 2,
"source": {
"name": "Yahoo Finance chart API",
"retrieved_at": "2026-08-29T20:00:00.000Z",
"url": "https://query1.finance.yahoo.com/v8/finance/chart/AAPL"
},
"ticker": "AAPL"
},
"type": "json"
}
},
"schema": {
"$schema": "https://json-schema.org/draft/2020-12/schema",
"properties": {
"input": {
"additionalProperties": false,
"properties": {
"body": {
"properties": {
"indicators": {
"items": {
"enum": [
"sma_20",
"ema_20",
"rsi_14"
],
"type": "string"
},
"type": "array"
},
"interval": {
"enum": [
"1d",
"1wk",
"1mo"
],
"type": "string"
},
"lookback": {
"type": "integer"
},
"ticker": {
"description": "One US-listed ticker, uppercase letters only.",
"type": "string"
}
},
"required": [
"ticker",
"interval",
"lookback"
],
"type": "object"
},
"bodyType": {
"enum": [
"json",
"form-data",
"text"
],
"type": "string"
},
"method": {
"enum": [
"POST",
"PUT",
"PATCH"
],
"type": "string"
},
"type": {
"const": "http",
"type": "string"
}
},
"required": [
"type",
"method",
"bodyType",
"body"
],
"type": "object"
},
"output": {
"properties": {
"data": {
"items": {
"properties": {
"adjusted_close": {
"type": "number"
},
"close": {
"type": "number"
},
"high": {
"type": "number"
},
"low": {
"type": "number"
},
"open": {
"type": "number"
},
"time": {
"type": "string"
},
"volume": {
"type": "integer"
}
},
"type": "object"
},
"type": "array"
},
"evidence": {
"properties": {
"provider": {
"type": "string"
},
"query": {
"properties": {
"interval": {
"type": "string"
},
"ticker": {
"type": "string"
}
},
"type": "object"
},
"retrieved_at": {
"type": "string"
}
},
"type": "object"
},
"freshness": {
"properties": {
"age_seconds": {
"type": "integer"
},
"latest_bar": {
"type": "string"
},
"max_age_seconds": {
"type": "integer"
}
},
"type": "object"
},
"indicators": {
"properties": {
"sma_20": {
"type": "number"
}
},
"type": "object"
},
"interval": {
"type": "string"
},
"lookback": {
"type": "integer"
},
"source": {
"properties": {
"name": {
"type": "string"
},
"retrieved_at": {
"type": "string"
},
"url": {
"type": "string"
}
},
"type": "object"
},
"ticker": {
"type": "string"
}
},
"type": "object"
}
},
"required": [
"input"
],
"type": "object"
}
}
}Use it
curl
curl "https://api.oblique.markets/api/v1/paid/us-equity-snapshot" # -> 402 Payment Required, accepts[] lists how to pay # retry with a PAYMENT-SIGNATURE (or PAYMENT header) once paid
JavaScript
const res = await fetch("https://api.oblique.markets/api/v1/paid/us-equity-snapshot");
if (res.status === 402) {
const { accepts } = await res.json();
// pay one of accepts[] via an x402 client, then retry with the payment header
}Python
import httpx
res = httpx.get("https://api.oblique.markets/api/v1/paid/us-equity-snapshot")
if res.status_code == 402:
accepts = res.json()["accepts"]
# pay one of accepts[] via an x402 client, then retry with the payment headerMachine-readable
Everything on this page is also available as clean JSON at /resources/539.json, and this resource appears in /discovery/resources and /discovery/search.