Government Legal
Dallas County Courts Portal logo

Dallas County Courts Portal API

courtsportal.dallascounty.org

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.

Actions
4
Category
Government Legal
Login
Not required
Output
JSON

Call the Dallas County Courts Portal API

Submit a task, then poll the job until it settles. This example runs dcc_get_document.

curl -X POST https://api.anakin.io/v1/wire/task \
  -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"
    }
  }'

4 actions on courtsportal.dallascounty.org

Read

  • Download Document

    dcc_get_documentread1 credit / call

    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.

    eid
    string · required
    doc_type_id
    string · required
    case_number
    string · required
    location_id
    string · required
    include_content
    boolean
  • Get Case Detail

    dcc_case_detailread1 credit / call

    Full case record (Register of Actions) for a Dallas County court case, by its encrypted case id (eid). Returns case number, court, judicial officer, file date, type and status; parties with their attorneys; the complete event and hearing timeline (dates, descriptions, hearing/service details, attached documents); a flattened document list with ready-to-fetch download URLs; plus the numeric case_id (for dcc_case_financials) and location_id. No authentication required.

    eid
    string · required
  • Get Case Financials

    dcc_case_financialsread1 credit / call

    Financial ledger for a Dallas County court case, by its numeric case_id (from dcc_case_detail — not the encrypted eid). Returns, per responsible party, the total assessment, total payments and credits, and the full transaction ledger (date, description, receipt, payer name, amount). No authentication required.

    case_id
    string · required
  • Search Court Cases

    dcc_searchread5 credits / call

    Search Dallas County's public courts portal for people, businesses and their cases. Look up by attorney bar number, party or business name, case number, citation number, DL number or judicial officer. Returns each matched party with identity details (name, DOB, address, phones, physical description, DL) and all their cases — case number, encrypted case id, style, file date, type, status, court and the party's role — plus any warrants, protection orders and judgments. Feed a returned case id to dcc_case_detail for the full record.

    query
    string · required
    search_by
    string
    court_location
    string
    case_status
    string
    case_type
    string
    file_date_start
    string
    file_date_end
    string

Dallas County Courts Portal API questions

Is there an API for Dallas County Courts Portal?
Dallas County Courts Portal does not offer a public data API for this, but Anakin Wire provides 4 maintained endpoints for courtsportal.dallascounty.org. You call Anakin's REST API with an action ID and parameters and get structured JSON back; Anakin handles the browser, proxies, anti-bot, and parsing.
How do I scrape Dallas County Courts Portal data?
POST to https://api.anakin.io/v1/wire/task with your API key, the action ID, and its parameters, then poll GET /v1/wire/jobs/{id} until the job settles. There is nothing to install and no scraper to maintain — when courtsportal.dallascounty.org changes its markup, Anakin updates the action.
Do I need a Dallas County Courts Portal account?
No. Every Dallas County Courts Portal action listed here runs anonymously — no account and no credentials required.
What does the Dallas County Courts Portal API cost?
Usage-based credits, charged per call and refunded automatically when a job fails. New accounts start with 300 free credits and no card. See anakin.io/pricing for the current rates.

More Government Legal APIs

All Government Legal sites