Compare one XBRL metric across up to 10 tickers — latest reported value per company, ranke
Compare one XBRL metric across up to 10 tickers — latest reported value per company, ranked, with period ends and tags. Use instead of N companyfacts downloads and a fiscal-alignment headache. Pay per call (x402 USDC or prepaid card credits); no subscription, no API key signup.
50000 (raw units)
price
5
calls / 30d
4
unique payers
2026-09-05
updated
Provider
answerpool.io · discovered, not yet claimed by its owner
Payment (x402 accepts[])
[
{
"scheme": "exact",
"network": "eip155:8453",
"payTo": "0xb3ba3Ca99F9742b32fC527CF62688C83b39AED8c",
"asset": "0x833589fCD6eDb6E08f4c7C32D4f71b54bdA02913",
"amount": "50000",
"maxTimeoutSeconds": 300
}
]Output schema
{
"bazaar": {
"info": {
"input": {
"method": "GET",
"queryParams": {
"metric": "revenue",
"tickers": "NVDA,AAPL"
},
"type": "http"
},
"output": {
"example": {
"as_of": "2026-08-31T14:00:00Z",
"count": 2,
"latest": [
{
"cik": "0000320193",
"end": "2026-06-28",
"tag": "Revenues",
"ticker": "AAPL",
"value": 94000000000
},
{
"cik": "0001045810",
"end": "2026-07-27",
"tag": "Revenues",
"ticker": "NVDA",
"value": 46700000000
}
],
"metric": "revenue"
},
"type": "json"
}
},
"schema": {
"$schema": "https://json-schema.org/draft/2020-12/schema",
"properties": {
"input": {
"additionalProperties": false,
"properties": {
"method": {
"enum": [
"GET",
"HEAD",
"DELETE"
],
"type": "string"
},
"queryParams": {
"additionalProperties": false,
"properties": {
"metric": {
"description": "Required metric key from /v1/sec/xbrl/metrics (e.g. revenue) or a raw US-GAAP XBRL concept as us-gaap:<Tag>; tickers not reporting it are dropped from the result.",
"maxLength": 120,
"title": "Metric",
"type": "string"
},
"tickers": {
"description": "Comma-separated tickers, max 10",
"maxLength": 120,
"title": "Tickers",
"type": "string"
}
},
"required": [
"tickers",
"metric"
],
"title": "CompareIn",
"type": "object"
},
"type": {
"const": "http",
"type": "string"
}
},
"required": [
"type",
"method"
],
"type": "object"
},
"output": {
"properties": {
"example": {
"type": "object"
},
"type": {
"type": "string"
}
},
"required": [
"type"
],
"type": "object"
}
},
"required": [
"input"
],
"type": "object"
}
}
}Use it
curl
curl "https://answerpool.io/v1/sec/xbrl/compare" # -> 402 Payment Required, accepts[] lists how to pay # retry with a PAYMENT-SIGNATURE (or PAYMENT header) once paid
JavaScript
const res = await fetch("https://answerpool.io/v1/sec/xbrl/compare");
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://answerpool.io/v1/sec/xbrl/compare")
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/7745.json, and this resource appears in /discovery/resources and /discovery/search.