Get Debt
curl --request GET \
--url https://getbill.io/external-api/v1/debts/{id} \
--header 'Authorization: <authorization>'{
"error": false,
"message": "Success",
"data": {
"id": "abc123def456",
"civility": "Mr",
"firstname": "John",
"lastname": "Doe",
"phone": "+33123456789",
"email": "john.doe@example.com",
"birthdate": "1985-03-15",
"amount": 1250.00,
"amount_text": "1250.00",
"currency": "EUR",
"object": "Outstanding invoice #INV-2024-001",
"internal_id": "DEBT-2024-001",
"invoice_reference": "INV-2024-001",
"debtor_reference": "DEB-DOE-001",
"invoice_date": "2023-12-01",
"due_date": "2023-12-31",
"address": "123 Main Street, 75001 Paris, France",
"street_address": "Main Street",
"street_number": "123",
"postal_code": "75001",
"city": "Paris",
"country": "FR",
"status": "status.default.in_progress",
"timeline_id": "xyz789abc123",
"nb_reminders": 3,
"nb_answered": 1,
"summary": "Customer acknowledged debt, payment plan in discussion",
"iban": "FR1420041010050500013M02606",
"followups_count": 5,
"company": "Acme Corp",
"debtor_company": "ACME Corporation",
"payment_link": "https://pay.example.com/debt/abc123",
"import_date": "2023-11-15T10:30:00+00:00",
"last_timeline_restart": "2023-12-01T09:00:00+00:00",
"payment_plan_active": false,
"plan_start_date": null,
"contacts": []
}
}
Debts API
Get Debt
Retrieve detailed information about a specific debt
GET
/
external-api
/
v1
/
debts
/
{id}
Get Debt
curl --request GET \
--url https://getbill.io/external-api/v1/debts/{id} \
--header 'Authorization: <authorization>'{
"error": false,
"message": "Success",
"data": {
"id": "abc123def456",
"civility": "Mr",
"firstname": "John",
"lastname": "Doe",
"phone": "+33123456789",
"email": "john.doe@example.com",
"birthdate": "1985-03-15",
"amount": 1250.00,
"amount_text": "1250.00",
"currency": "EUR",
"object": "Outstanding invoice #INV-2024-001",
"internal_id": "DEBT-2024-001",
"invoice_reference": "INV-2024-001",
"debtor_reference": "DEB-DOE-001",
"invoice_date": "2023-12-01",
"due_date": "2023-12-31",
"address": "123 Main Street, 75001 Paris, France",
"street_address": "Main Street",
"street_number": "123",
"postal_code": "75001",
"city": "Paris",
"country": "FR",
"status": "status.default.in_progress",
"timeline_id": "xyz789abc123",
"nb_reminders": 3,
"nb_answered": 1,
"summary": "Customer acknowledged debt, payment plan in discussion",
"iban": "FR1420041010050500013M02606",
"followups_count": 5,
"company": "Acme Corp",
"debtor_company": "ACME Corporation",
"payment_link": "https://pay.example.com/debt/abc123",
"import_date": "2023-11-15T10:30:00+00:00",
"last_timeline_restart": "2023-12-01T09:00:00+00:00",
"payment_plan_active": false,
"plan_start_date": null,
"contacts": []
}
}
Overview
This endpoint returns comprehensive information about a single debt, including all related data such as followup history, payment status, and debtor details.Authentication
Requires a valid OAuth 2.0 access token with thedebts:read scope.
Request
Bearer token for authentication
The encrypted ID of the debt to retrieve
Example Request
curl -X GET "/external-api/v1/debts/abc123def456" \
-H "Authorization: Bearer YOUR_ACCESS_TOKEN" \
-H "Content-Type: application/json"
Response
Always
false for successful requestsSuccess message
Complete debt information
Show debt object
Show debt object
Encrypted debt identifier
Civility/title (e.g., “Mr”, “Ms”)
Debtor’s first name
Debtor’s last name
Debtor’s phone number (E.164 format)
Debtor’s email address
Debtor’s birth date (YYYY-MM-DD format)
Debt amount
Debt amount as text
Currency code (e.g., “EUR”, “USD”)
Description of the debt object/reason
Your internal reference ID for this debt
Invoice reference number
Your reference for the debtor
Original invoice date (YYYY-MM-DD format)
Payment due date (YYYY-MM-DD format)
Full address (legacy field)
Street name and type
Street number
Postal/ZIP code
City name
Country code or name
Current debt status. Can be set to
status.default.paid, status.default.in_progress, status.default.on_hold, status.default.failed, or status.default.archived via the Update Debt endpoint.Encrypted timeline ID associated with this debt (null if no timeline)
Number of reminders sent
Number of responses received
Brief summary or notes about the debt
IBAN for payment
Number of followups for this debt
Creditor company name (only present for debt collection agencies collecting on behalf of other companies)
Debtor’s company name (for B2B debts)
Custom payment link URL
Creation/import timestamp (ISO 8601 format). Read-only - automatically set by the system.
Timestamp of last timeline restart (ISO 8601 format). Read-only - managed by the system based on timeline workflows.
Whether the debt has an active payment plan
Payment plan start date (YYYY-MM-DD format), null if no plan
Additional contacts associated with this debt
Success Response
{
"error": false,
"message": "Success",
"data": {
"id": "abc123def456",
"civility": "Mr",
"firstname": "John",
"lastname": "Doe",
"phone": "+33123456789",
"email": "john.doe@example.com",
"birthdate": "1985-03-15",
"amount": 1250.00,
"amount_text": "1250.00",
"currency": "EUR",
"object": "Outstanding invoice #INV-2024-001",
"internal_id": "DEBT-2024-001",
"invoice_reference": "INV-2024-001",
"debtor_reference": "DEB-DOE-001",
"invoice_date": "2023-12-01",
"due_date": "2023-12-31",
"address": "123 Main Street, 75001 Paris, France",
"street_address": "Main Street",
"street_number": "123",
"postal_code": "75001",
"city": "Paris",
"country": "FR",
"status": "status.default.in_progress",
"timeline_id": "xyz789abc123",
"nb_reminders": 3,
"nb_answered": 1,
"summary": "Customer acknowledged debt, payment plan in discussion",
"iban": "FR1420041010050500013M02606",
"followups_count": 5,
"company": "Acme Corp",
"debtor_company": "ACME Corporation",
"payment_link": "https://pay.example.com/debt/abc123",
"import_date": "2023-11-15T10:30:00+00:00",
"last_timeline_restart": "2023-12-01T09:00:00+00:00",
"payment_plan_active": false,
"plan_start_date": null,
"contacts": []
}
}
Error Responses
{
"error": true,
"message": "Authentication credentials are missing or invalid",
"code": 401
}
Related Endpoints
- List Debts - Get all debts for your company
- Update Debt - Modify debt information
- Delete Debt - Remove a debt
- Get Followups by Debt - Get followups for this debt
⌘I