Parse SEC filings (10-Q, 10-K, 8-K, Form 4) and earnings transcripts into struct
Parse SEC filings (10-Q, 10-K, 8-K, Form 4) and earnings transcripts into structured JSON. Supports EDGAR by ticker or direct URL.
Answeringour last check, 2026-09-24
1 of 1checks answered this week
966 msmedian answer time
$0.05listed price per call
$0.05price it asked us
Paid test badge: not yet. The checks above are free: we call the tool without paying and read the payment request it sends back. The Verified badge needs paid calls whose answers match the promised output, and nobody can buy a badge.
Endpoint
POST https://filedge.io/v1/parse
| Category | Everything else |
|---|---|
| Provider host | filedge.io |
| Networks | eip155:8453 |
| Payment schemes | exact |
| Self-reported calls, 30 days | 5 from 4 payers (the provider's figure, not ours) |
Our checks, last 30 days
| Day | Result | HTTP | Asked | Time |
|---|---|---|---|---|
| 2026-09-24 | valid payment request | 402 | $0.05 | 966 ms |
Example input (from the provider)
{
"body": {
"period": "latest",
"source": "edgar",
"ticker": "AAPL",
"type": "10-Q"
},
"bodyType": "json",
"method": "POST",
"type": "http"
}
Promised output schema (from the provider)
{
"$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"
}