v1.0
Central de Deudores
El servicio permite obtener un informe consolidado por clave de identificación fiscal (CUIT, CUIL o CDI) para una persona humana o jurídica respecto de financiaciones otorgadas por entidades financieras, fideicomisos financieros, entidades no financieras emisoras de tarjetas de crédito / compra, otros proveedores no financieros de créditos, sociedades de garantía recíproca, fondos de garantía de carácter público y proveedores de servicios de crédito entre particulares a través de plataformas.
Contacto
Servidores
https://api.bcra.gob.ar
Deudas
Deudas por Identificación
GET
/centraldedeudores/v1.0/Deudas/{Identificacion}
Obtener deudas de una persona por Identificación
Parámetros
Path Parameters
Identificacion*
Tipointeger
Requeridoformat
int64
Respuestas
Successtext/plain Schema JSON JSON
{
"status": 0,
"results": {
"identificacion": 0,
"denominacion": "string",
"periodos": [
{
"periodo": "string",
"entidades": [
{
"entidad": "string",
"situacion": 0,
"fechaSit1": "2024-09-17",
"monto": 0,
"diasAtrasoPago": 0,
"refinanciaciones": true,
"recategorizacionOblig": true,
"situacionJuridica": true,
"irrecDisposicionTecnica": true,
"enRevision": true,
"procesoJud": true
}
]
}
]
}
}
GET
/centraldedeudores/v1.0/Deudas/{Identificacion}
Ejemplos
curl -X GET \
'https://api.bcra.gob.ar/centraldedeudores/v1.0/Deudas/{Identificacion}' \
-H "Content-Type: application/json"
fetch('https://api.bcra.gob.ar/centraldedeudores/v1.0/Deudas/{Identificacion}', {headers:{'Content-Type':'application/json'}})
.then(response => response.json())
.then(data => console.log(data));
<?php
$url = 'https://api.bcra.gob.ar/centraldedeudores/v1.0/Deudas/{Identificacion}';
$method = 'GET';
$headers = [
'Content-Type' => 'application/json',
];
$ch = curl_init();
curl_setopt($ch, CURLOPT_URL, $url);
curl_setopt($ch, CURLOPT_RETURNTRANSFER, true);
curl_setopt($ch, CURLOPT_CUSTOMREQUEST, $method);
curl_setopt($ch, CURLOPT_HTTPHEADER, $headers);
$response = curl_exec($ch);
curl_close($ch);
echo $response;
?>
import requests
url = 'https://api.bcra.gob.ar/centraldedeudores/v1.0/Deudas/{Identificacion}'
headers = {
'Content-Type': 'application/json'
}
response = requests.get(url, headers=headers)
print(response.json())
Deudas históricas por Identificación
GET
/centraldedeudores/v1.0/Deudas/Historicas/{Identificacion}
Obtener deudas históricas de una persona por Identificación
Parámetros
Path Parameters
Identificacion*
Tipointeger
Requeridoformat
int64
Respuestas
Successtext/plain Schema JSON JSON
{
"status": 0,
"results": {
"identificacion": 0,
"denominacion": "string",
"periodos": [
{
"periodo": "string",
"entidades": [
{
"entidad": "string",
"situacion": 0,
"monto": 0,
"enRevision": true,
"procesoJud": true
}
]
}
]
}
}
GET
/centraldedeudores/v1.0/Deudas/Historicas/{Identificacion}
Ejemplos
curl -X GET \
'https://api.bcra.gob.ar/centraldedeudores/v1.0/Deudas/Historicas/{Identificacion}' \
-H "Content-Type: application/json"
fetch('https://api.bcra.gob.ar/centraldedeudores/v1.0/Deudas/Historicas/{Identificacion}', {headers:{'Content-Type':'application/json'}})
.then(response => response.json())
.then(data => console.log(data));
<?php
$url = 'https://api.bcra.gob.ar/centraldedeudores/v1.0/Deudas/Historicas/{Identificacion}';
$method = 'GET';
$headers = [
'Content-Type' => 'application/json',
];
$ch = curl_init();
curl_setopt($ch, CURLOPT_URL, $url);
curl_setopt($ch, CURLOPT_RETURNTRANSFER, true);
curl_setopt($ch, CURLOPT_CUSTOMREQUEST, $method);
curl_setopt($ch, CURLOPT_HTTPHEADER, $headers);
$response = curl_exec($ch);
curl_close($ch);
echo $response;
?>
import requests
url = 'https://api.bcra.gob.ar/centraldedeudores/v1.0/Deudas/Historicas/{Identificacion}'
headers = {
'Content-Type': 'application/json'
}
response = requests.get(url, headers=headers)
print(response.json())
Cheques rechazados por Identificación
GET
/centraldedeudores/v1.0/Deudas/ChequesRechazados/{Identificacion}
Obtener cheques rechazados de una persona por Identificación
Parámetros
Path Parameters
Identificacion*
Tipointeger
Requeridoformat
int64
Respuestas
Successtext/plain Schema JSON JSON
{
"status": 0,
"results": {
"identificacion": 0,
"denominacion": "string",
"causales": [
{
"causal": "string",
"entidades": [
{
"entidad": 0,
"detalle": [
{
"nroCheque": 0,
"fechaRechazo": "2024-09-17",
"monto": 0,
"fechaPago": "2024-09-17",
"fechaPagoMulta": "2024-09-17",
"estadoMulta": "string",
"ctaPersonal": true,
"denomJuridica": "string",
"enRevision": true,
"procesoJud": true
}
]
}
]
}
]
}
}
GET
/centraldedeudores/v1.0/Deudas/ChequesRechazados/{Identificacion}
Ejemplos
curl -X GET \
'https://api.bcra.gob.ar/centraldedeudores/v1.0/Deudas/ChequesRechazados/{Identificacion}' \
-H "Content-Type: application/json"
fetch('https://api.bcra.gob.ar/centraldedeudores/v1.0/Deudas/ChequesRechazados/{Identificacion}', {headers:{'Content-Type':'application/json'}})
.then(response => response.json())
.then(data => console.log(data));
<?php
$url = 'https://api.bcra.gob.ar/centraldedeudores/v1.0/Deudas/ChequesRechazados/{Identificacion}';
$method = 'GET';
$headers = [
'Content-Type' => 'application/json',
];
$ch = curl_init();
curl_setopt($ch, CURLOPT_URL, $url);
curl_setopt($ch, CURLOPT_RETURNTRANSFER, true);
curl_setopt($ch, CURLOPT_CUSTOMREQUEST, $method);
curl_setopt($ch, CURLOPT_HTTPHEADER, $headers);
$response = curl_exec($ch);
curl_close($ch);
echo $response;
?>
import requests
url = 'https://api.bcra.gob.ar/centraldedeudores/v1.0/Deudas/ChequesRechazados/{Identificacion}'
headers = {
'Content-Type': 'application/json'
}
response = requests.get(url, headers=headers)
print(response.json())