Parse SEC filings (10-Q, 10-K, 8-K, Form 4) and earnings transcripts into structured JSON
Parse SEC filings (10-Q, 10-K, 8-K, Form 4) and earnings transcripts into structured JSON. Supports EDGAR by ticker or direct URL.
50000 (raw units)
price
5
calls / 30d
4
unique payers
2026-09-17
updated
Provider
filedge.io · discovered, not yet claimed by its owner
Payment (x402 accepts[])
[
{
"scheme": "exact",
"network": "eip155:8453",
"payTo": "0xa98E17D26e1B3A51A10C79c2F52f78914E7D50EB",
"asset": "0x833589fCD6eDb6E08f4c7C32D4f71b54bdA02913",
"amount": "50000",
"maxTimeoutSeconds": 300
}
]Output schema
{
"bazaar": {
"category": "Data",
"info": {
"input": {
"body": {
"period": "latest",
"source": "edgar",
"ticker": "AAPL",
"type": "10-Q"
},
"bodyType": "json",
"method": "POST",
"type": "http"
},
"output": {
"example": {
"financials": {
"eps_diluted": 1.65,
"net_income_usd_cents": 2478000000000,
"revenue_usd_cents": 9535900000000
},
"guidance": {
"provided": false
},
"meta": {
"company": "Apple Inc.",
"document_type": "10-Q",
"filed_date": "2025-05-02",
"period_end": "2025-03-29",
"ticker": "AAPL"
},
"risk_flags": [
{
"flag": "regulatory",
"severity": "medium"
}
],
"segments": [
{
"name": "Services",
"revenue_usd_cents": 2664500000000
}
]
},
"type": "json"
}
},
"integrationType": "3P",
"providerName": "Filedge",
"providerUrl": "https://filedge.io",
"schema": {
"$schema": "https://json-schema.org/draft/2020-12/schema",
"properties": {
"input": {
"additionalProperties": false,
"properties": {
"body": {
"additionalProperties": false,
"properties": {
"period": {
"default": "latest",
"description": "Reporting period selector: latest, YYYY-QN, or YYYY.",
"examples": [
"latest",
"2024-Q1",
"2024"
],
"type": "string"
},
"source": {
"description": "Document source to parse.",
"enum": [
"edgar",
"transcript",
"url"
],
"examples": [
"edgar"
],
"type": "string"
},
"ticker": {
"description": "Public company ticker symbol; required for EDGAR lookup unless url is supplied.",
"examples": [
"AAPL",
"MSFT",
"NVDA"
],
"type": "string"
},
"type": {
"description": "SEC filing type; required when source is edgar.",
"enum": [
"10-Q",
"10-K",
"8-K",
"form4"
],
"examples": [
"10-Q"
],
"type": "string"
},
"url": {
"description": "Direct filing, transcript, or document URL; required when source is url.",
"format": "uri",
"type": "string"
}
},
"required": [
"source"
],
"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": {
"example": {
"properties": {
"financials": {
"type": "object"
},
"guidance": {
"type": "object"
},
"meta": {
"type": "object"
},
"risk_flags": {
"type": "array"
},
"segments": {
"type": "array"
}
},
"required": [
"meta",
"financials",
"segments",
"guidance",
"risk_flags"
],
"type": "object"
},
"type": {
"type": "string"
}
},
"required": [
"type"
],
"type": "object"
}
},
"required": [
"input"
],
"type": "object"
},
"serviceName": "Filedge",
"tags": [
"sec",
"edgar",
"financials",
"earnings",
"10-K"
]
}
}Use it
curl
curl "https://filedge.io/v1/parse" # -> 402 Payment Required, accepts[] lists how to pay # retry with a PAYMENT-SIGNATURE (or PAYMENT header) once paid
JavaScript
const res = await fetch("https://filedge.io/v1/parse");
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://filedge.io/v1/parse")
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/3195.json, and this resource appears in /discovery/resources and /discovery/search.