API Guide
What is an API?
An API (Application Programming Interface) is a way for two software systems to communicate with each other. Think of it like placing an order at a restaurant: you (the client) send a request describing what you want, and the kitchen (the server) sends back a response with the result. Your case management system or custom application sends requests to the eCourtDate API, and eCourtDate responds with the data you asked for or confirms the action you requested.
eCourtDate's API uses REST, a widely adopted standard for web APIs, and exchanges data in JSON format — a simple, human-readable text format that looks like {"name": "value"}.
Why would a court use the API? Common use cases include:
- Automating data sync between your case management system and eCourtDate
- Sending messages programmatically (reminders, notifications) from your own systems
- Pulling reports on message delivery, payments, or case events
Base URLs
A base URL is the root address for all API requests — every request you make starts with this address. Choose the base URL that matches your environment and region.
| Environment | Base URL |
|---|---|
| Staging | https://staging.api.ecourtdate.com |
| US East | https://us-east.api.ecourtdate.com |
| US West | https://us-west.api.ecourtdate.com |
| US South | https://us-south.api.ecourtdate.com |
| US Texas | https://us-texas.api.ecourtdate.com |
| Multi-Region | https://api.ecourtdate.com |
Required Headers
Headers are extra pieces of information sent with each request that tell the API who you are and what format you're using. All API requests require the following headers:
Authorization: Bearer {token}
Content-Type: application/json
See Authentication for details on obtaining a Bearer token.
Resources
- Postman Workspace: Explore and test endpoints using the eCourtDate Postman workspace.
- API Reference: See the API Reference page for the full list of available endpoints.
- Console API Logs: Monitor API activity and debug requests in the Logs section of the eCourtDate Console.