Endpoint Playground
Test Crawlora's Congress Disclosure Report API with realistic prefilled parameters. Generate a cURL request, inspect the expected structured JSON response, and open the full docs or pricing page when you are ready to integrate this public web data extraction endpoint into your application.
curl "https://api.crawlora.net/api/v1/congress/report?url=<url>" \
-H "x-api-key: $CRAWLORA_API_KEY"| Parameter | Type | Required | Prefilled value | Description |
|---|---|---|---|---|
| url | string | Yes | Filing URL, as returned by congress-stock-disclosures' filing_url field. Must be an efdsearch.senate.gov /search/view/annual/..., /search/view/ptr/..., or /search/view/extension-notice/regular/... URL. |
{
"code": 200,
"msg": "OK",
"data": {
"chamber": "senate",
"report_type": "annual",
"report_id": "cc198326-0f50-4f47-8b03-a5c6440f400f",
"source_url": "https://efdsearch.senate.gov/search/view/annual/cc198326-0f50-4f47-8b03-a5c6440f400f/",
"title": "Annual Report for Calendar 2018",
"filer": "The Honorable John A Barrasso (Barrasso, John)",
"filed_at": "05/15/2019 @ 8:11 AM",
"parts": [
{
"title": "Part 4b. Transactions",
"answer": "Yes",
"rows": [
{
"#": "1",
"Owner": "Self",
"Ticker": "VTSAX",
"Asset Name": "Vanguard Total Stock Market Index Fund",
"Transaction Type": "Sale (Partial)",
"Transaction Date": "01/02/2018",
"Amount": "$250,001 - $500,000",
"Comments": "n/a"
}
]
}
],
"transactions": [
{
"source_part": "Part 4b. Transactions",
"source_row_number": "1",
"transaction_date": "01/02/2018",
"owner": "Self",
"ticker": "VTSAX",
"asset_name": "Vanguard Total Stock Market Index Fund",
"transaction_type": "Sale (Partial)",
"amount": "$250,001 - $500,000",
"comment": "n/a"
}
],
"fetched_at": "2026-08-08T00:00:00Z"
}
}Public Playground
Sample responses, schemas, request previews, and code snippets are visible before sign in. Create an account when you are ready to save an API key and run authenticated requests.
Fetch a single disclosure report by its filing_url (as returned by
{
"code": 200,
"msg": "OK",
"data": {
"chamber": "senate",
"report_type": "annual",
"report_id": "cc198326-0f50-4f47-8b03-a5c6440f400f",
"source_url": "https://efdsearch.senate.gov/search/view/annual/cc198326-0f50-4f47-8b03-a5c6440f400f/",
"title": "Annual Report for Calendar 2018",
"filer": "The Honorable John A Barrasso (Barrasso, John)",
"filed_at": "05/15/2019 @ 8:11 AM",
"parts": [
{
"title": "Part 4b. Transactions",
"answer": "Yes",
"rows": [
{
"#": "1",
"Owner": "Self",
"Ticker": "VTSAX",
"Asset Name": "Vanguard Total Stock Market Index Fund",
"Transaction Type": "Sale (Partial)",
"Transaction Date": "01/02/2018",
"Amount": "$250,001 - $500,000",
"Comments": "n/a"
}
]
}
],
"transactions": [
{
"source_part": "Part 4b. Transactions",
"source_row_number": "1",
"transaction_date": "01/02/2018",
"owner": "Self",
"ticker": "VTSAX",
"asset_name": "Vanguard Total Stock Market Index Fund",
"transaction_type": "Sale (Partial)",
"amount": "$250,001 - $500,000",
"comment": "n/a"
}
],
"fetched_at": "2026-08-08T00:00:00Z"
}
}curl "https://api.crawlora.net/api/v1/congress/report?url=<url>" \
-H "x-api-key: $CRAWLORA_API_KEY"