Bulk submissions
Send up to 500 items per request for the supported submission types.
CBUS integration for legal teams
Submit claims, judgments, warrants, status updates, set asides, and breathing space notifications through a typed REST API built for high-volume workflows.
Move routine CBUS operations behind predictable JSON requests, account-scoped access, and stored response history.
Send up to 500 items per request for the supported submission types.
Request SDT bulk feedback by reference and keep the result tied to the account.
Query batches submitted within a selected reporting window.
Fetch previous submission, feedback, and query results for the authenticated account.
Business endpoints require an API key and an HMAC-SHA256 signature of the raw body.
Send x-api-key with every business request.
Sign the raw JSON body with the account HMAC secret.
Successful and failed upstream responses can be stored for later reporting.
Small surface area, explicit request bodies, and Swagger documentation for integration teams.
/v1/submit/{type}Submit claims, judgments, warrants, claim status updates, set asides, or breathing space notifications.
/v1/feedbackRetrieve SDT bulk feedback responses by reference.
/v1/queryQuery the SDT service for submissions in a date range.
/v1/reportReturn stored API results for the authenticated account.
Use standard HTTP headers, JSON bodies, and account-scoped credentials for server-side client integrations.
curl -X POST https://api.civilgateway.co.uk/v1/query \
-H "Content-Type: application/json" \
-H "x-api-key: cbus_live_example_key" \
-H "x-signature: hmac_sha256_signature" \
-d '{
"fromDate": "2026-01-01T00:00:00.000Z",
"toDate": "2026-01-31T23:59:59.999Z"
}'
Use the Civil Gateway API for secure bulk submissions, operational feedback, date range queries, and account-level reporting.
Open documentation