Skip to main content

Quickstart

Query your assigned cases in 2 minutes.

Prerequisites

Get your API key from Partner Portal → API Keys. See Authentication for details.

Verify Your API Key

curl https://collectionpartner-api.debitura.com/me \
-H "XApiKey: YOUR_API_KEY"

Success Response

{
"id": "3fa85f64-5717-4562-b3fc-2c963f66afa6",
"companyName": "Your Agency Name",
"country": "Germany"
}

List Your Assigned Cases

curl "https://collectionpartner-api.debitura.com/cases?statuses=Active&pageSize=5" \
-H "XApiKey: YOUR_API_KEY"

Success Response

{
"pageData": {
"page": 1,
"pageSize": 5,
"totalCount": 42
},
"items": [
{
"id": "a1b2c3d4-5678-90ab-cdef-1234567890ab",
"caseReference": "Q8OAXF3W",
"status": "Active",
"principalAmount": 1500.00,
"currency": "EUR",
"debtor": {
"name": "Example Company GmbH",
"country": "Germany"
}
}
]
}

You've connected to the API and retrieved your cases.

Next Steps