Get exhibit content
GET
/api/v1/public/edgar/exhibit/:id10 credits / callAPI key required
Get the full text/HTML content of a single exhibit from an SEC EDGAR filing. Returns the exhibit content alongside its type, description, company name, accession number, and form type. Use `maxLength` to truncate large exhibits; the response then carries a `truncated` boolean. Find exhibit IDs via /edgar/exhibits/{filingId}.
Parameters
Path
Exhibit ID (numeric). Find via /edgar/exhibits/{filingId}.
Query
Truncate content to this many characters (minimum 100). Adds a "truncated" flag when applied.
Code example
cURL
curl -X GET 'https://api.signal8.ai/api/v1/public/edgar/exhibit/' \
-H "X-Api-Key: $SIGNAL8_API_KEY"Request URL
fix parameters to runGET
https://api.signal8.ai/api/v1/public/edgar/exhibit/example · 200
{
"data": {
"id": 4013705,
"exhibit_type": "10-Q",
"description": null,
"company_name": "Apple Inc.",
"accession_number": "0000320193-26-000013",
"form_type": "10-Q",
"content": "<html><body>... UNITED STATES SECURITIES AND EXCHANGE COMMISSION ... FORM 10-Q ... (content truncated for documentation)",
"truncated": true
}
}