# Get a debt's details Get the details of a specific debt. Endpoint: GET /api/cl/debt-reports/{id}/ Version: 1.222.0 Security: basicAuth ## Path parameters: - `id` (string, required) The you want to get detailed information about. ## Query parameters: - `omit` (string) Omit certain fields from being returned in the response. For more information, see our Filtering responses DevPortal article. - `fields` (string) Return only the specified fields in the response. For more information, see our Filtering responses DevPortal article. ## Response 200 fields (application/json): - `id` (string) Belvo's unique identifier for the current item. Example: "0d3ffb69-f83b-456e-ad8e-208d0998d71d" - `link` (string,null) The the data belongs to. Example: "30cb4806-6e00-48a4-91c9-ca55968576c8" - `collected_at` (string) The ISO-8601 timestamp when the data point was collected. Example: "2022-02-09T08:45:50.406032Z" - `created_at` (string) The ISO-8601 timestamp of when the data point was created in Belvo's database. Example: "2022-02-09T08:45:50.406032Z" - `personal_data` (object) - `personal_data.full_name` (string) The full name of the individual. Example: "Cabezas Pérez Martín Vicente " - `personal_data.document_id_type` (string) The type of document ID of the individual. For Chile, this will be always set to . Enum: "RUT" - `personal_data.document_id_number` (string) The document ID number of the individual. For Chile, this will be the RUT number. Example: "12345678-9" - `debt_data_last_update` (string) The date when the debt data was last updated, in format. Example: "2023-07-02" - `currency` (string) The currency of the debts. For Chile, this will be the . Example: "CLP" - `total` (number,null) The total amount of debt including current, delinquent, severely delinquent, and defaulted debts. Example: 6506000.02 - `current` (number,null) The amount of debt that is currently outstanding but not past due. Example: 5350000.02 - `delinquent` (number,null) The amount of debt that is 30-59 days past due. - `severely_delinquent` (number,null) The amount of debt that is 60-89 days past due. Example: 56000.02 - `defaulted` (number,null) The amount of debt that is 90 days past due. Example: 1100000.02 - `direct_debts` (array,null) A list of debts that are directly atttribued to the individual. - `direct_debts.financial_institution` (string) The name of the financial institution where the debt is held. Example: "Banco Santander" - `direct_debts.credit_type` (string) The type of credit issued by the financial institution. For example, , , , or . Example: "Vivienda" - `direct_debts.amount` (number) The total amount of the debt at the financial institution. Example: 5000000.02 - `direct_debts.current` (number,null) The current outstanding amount of the debt at the financial institution. Example: 5000000.02 - `indirect_debts` (array,null) List of indirect debts from financial institutions. - `indirect_debts.financial_institution` (string) Name of the financial institution providing the indirect debt. Example: "Banco BCI" - `credit_lines` (array,null) List of credit lines (such as credit cards) available to the individual. - `credit_lines.financial_institution` (string) The name of the financial institution providing the credit line. Example: "Banco BCI" - `credit_lines.direct_amount` (number,null) The amount of direct credit available. Example: 5000000.02 - `credit_lines.indirect_amount` (number,null) The amount of indirect credit available. - `other_credits` (array,null) List of other credits (such as guarantee notes, foreign credit, and so on) available to the individual. - `other_credits.financial_institution` (string) The name of the financial institution providing the credit. Example: "Banco BCI" ## Response 403 fields (application/json): - `code` (string) A unique error code () that allows you to classify and handle the error programmatically. ℹ️ Check our DevPortal for more information on how to handle 403 access_to_resource_denied. Example: "access_to_resource_denied" - `message` (string) A short description of the error. For errors, the description is: - . Example: "You don't have access to this resource." - `request_id` (string) A 32-character unique ID of the request (matching a regex pattern of: ). Provide this ID when contacting the Belvo support team to accelerate investigations. Example: "9e7b283c6efa449c9c028a16b5c249fb" ## Response 404 fields (application/json): - `code` (string) A unique error code () that allows you to classify and handle the error programmatically. Example: "not_found" - `message` (string) A short description of the error. For errors, the description is: - Example: "Not found" - `request_id` (string) A 32-character unique ID of the request (matching a regex pattern of: ). Provide this ID when contacting the Belvo support team to accelerate investigations. Example: "9e7b283c6efa449c9c028a16b5c249fb" ## Response 408 fields (application/json): - `code` (string) A unique error code () that allows you to classify and handle the error programmatically. ℹ️ Check our DevPortal for more information on how to handle 408 request_timeout errors. Example: "request_timeout" - `message` (string) A short description of the error. For errors, the description is: - . Example: "The request timed out, you can retry asking for less data by changing your query parameters" - `request_id` (string) A 32-character unique ID of the request (matching a regex pattern of: ). Provide this ID when contacting the Belvo support team to accelerate investigations. Example: "9e7b283c6efa449c9c028a16b5c249fb" ## Response 500 fields (application/json): - `code` (string) A unique error code () that allows you to classify and handle the error programmatically. ℹ️ Check our DevPortal for more information on how to handle 500 unexpected_error errors. Example: "unexpected_error" - `message` (string) A short description of the error. For errors, the description is: - . Example: "Belvo is unable to process the request due to an internal system issue or to an unsupported response from an institution" - `request_id` (string) A 32-character unique ID of the request (matching a regex pattern of: ). Provide this ID when contacting the Belvo support team to accelerate investigations. Example: "9e7b283c6efa449c9c028a16b5c249fb"