Get reported common shares outstanding by period for one filer from XBRL — the series behi
Get reported common shares outstanding by period for one filer from XBRL — the series behind dilution and per-share math, deduplicated. Use instead of digging share counts out of companyfacts or cover pages. Pay per call (x402 USDC or prepaid card credits); no subscription, no API key signup.
20000 (raw units)
price
2
calls / 30d
2
unique payers
2026-09-03
updated
Provider
answerpool.io · discovered, not yet claimed by its owner
Payment (x402 accepts[])
[
{
"scheme": "exact",
"network": "eip155:8453",
"payTo": "0xb3ba3Ca99F9742b32fC527CF62688C83b39AED8c",
"asset": "0x833589fCD6eDb6E08f4c7C32D4f71b54bdA02913",
"amount": "20000",
"maxTimeoutSeconds": 300
}
]Output schema
{
"bazaar": {
"info": {
"input": {
"method": "GET",
"queryParams": {
"ticker": "NVDA"
},
"type": "http"
},
"output": {
"example": {
"as_of": "2026-08-31T14:00:00Z",
"cik": "0000320193",
"points": [
{
"end": "2026-06-28",
"filed": "2026-08-01",
"form": "10-Q",
"fp": "Q3",
"fy": 2026,
"value": 15000000000
}
],
"source": "https://data.sec.gov/api/xbrl/companyconcept/CIK0000320193/us-gaap/CommonStockSharesOutstanding.json"
},
"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": {
"cik": {
"anyOf": [
{
"maxLength": 10,
"pattern": "^\\d{1,10}$",
"type": "string"
},
{
"type": "null"
}
],
"default": null,
"title": "Cik"
},
"ticker": {
"anyOf": [
{
"maxLength": 12,
"type": "string"
},
{
"type": "null"
}
],
"default": null,
"title": "Ticker"
}
},
"title": "TickerCikIn",
"type": "object"
},
"type": {
"const": "http",
"type": "string"
}
},
"required": [
"type",
"method"
],
"type": "object"
},
"output": {
"properties": {
"example": {
"properties": {
"as_of": {
"title": "As Of",
"type": "string"
},
"cik": {
"title": "Cik",
"type": "string"
},
"disclaimer": {
"default": "Derived from public SEC EDGAR filings; not investment advice.",
"title": "Disclaimer",
"type": "string"
},
"points": {
"items": {
"properties": {
"end": {
"title": "End",
"type": "string"
},
"filed": {
"anyOf": [
{
"type": "string"
},
{
"type": "null"
}
],
"default": null,
"title": "Filed"
},
"form": {
"anyOf": [
{
"type": "string"
},
{
"type": "null"
}
],
"default": null,
"title": "Form"
},
"fp": {
"anyOf": [
{
"type": "string"
},
{
"type": "null"
}
],
"default": null,
"title": "Fp"
},
"fy": {
"anyOf": [
{
"type": "integer"
},
{
"type": "null"
}
],
"default": null,
"title": "Fy"
},
"value": {
"title": "Value",
"type": "number"
}
},
"required": [
"end",
"value"
],
"title": "FactPointRow",
"type": "object"
},
"title": "Points",
"type": "array"
},
"source": {
"title": "Source",
"type": "string"
}
},
"required": [
"as_of",
"cik",
"points",
"source"
],
"title": "SharesOutput",
"type": "object"
},
"type": {
"type": "string"
}
},
"required": [
"type"
],
"type": "object"
}
},
"required": [
"input"
],
"type": "object"
}
}
}Use it
curl
curl "https://answerpool.io/v1/sec/xbrl/shares" # -> 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/shares");
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/shares")
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/7746.json, and this resource appears in /discovery/resources and /discovery/search.