Public court records for Dallas County, Texas, via the Tyler Technologies Odyssey Public Access Portal (DALLASPROD). Search people, businesses, attorneys and case numbers, then pull full case dockets, financial ledgers and filed PDF documents. Public data — no login required.
Download Document
Download a filed document (PDF) from a Dallas County court case. Requires the document's eid and doc_type_id plus the owning case's case_number and location_id — all four come from dcc_case_detail (each documents[] entry carries them and a ready-built download_url). Returns document metadata and, by default, the file as base64. Note: document eids rotate per case-page render — always use one from a recent dcc_case_detail call. No authentication required.
Document encrypted id, from dcc_case_detail documents[].eid. Rotates per case-page render — use a fresh one.
Document type id, from dcc_case_detail documents[].doc_type_id.
Owning case number, e.g. 'DC-26-00411' (dcc_case_detail case_number).
Court location id, e.g. '215' (dcc_case_detail location_id).
Whether to return the file as base64. Default true; set false for metadata + download URL only.
curl https://api.openwire.sh/v1/wire/task \ -X POST \ -H "X-API-Key: $ANAKIN_API_KEY" \ -H "Content-Type: application/json" \ -d '{ "action_id": "dcc_get_document", "params": { "eid": "A087B838AA33237FDF16B86BDF6F28B0", "doc_type_id": "791", "case_number": "DC-26-00411", "location_id": "215", "include_content": true } }'