← 返回
开发者工具 中文

Central de Deudores BCRA

Query the BCRA (Banco Central de la República Argentina) Central de Deudores API to check the credit status of individuals or companies in Argentina's financ...
查询阿根廷央行(BCRA)债务人中心API,核查个人或企业在阿根廷金融体系中的信用状况。
ferminrp ferminrp 来源
开发者工具 clawhub v1.0.0 1 版本 99888.1 Key: 无需
★ 0
Stars
📥 893
下载
💾 36
安装
1
版本
#latest

概述

BCRA Central de Deudores

Query Argentina's Central Bank debtor registry to obtain credit reports by CUIT/CUIL/CDI.

API Overview

  • Base URL: https://api.bcra.gob.ar
  • Auth: None required (public API)
  • Format: JSON responses
  • Input: CUIT/CUIL/CDI as integer (no hyphens), e.g. 20123456789
  • Optional web interface: https://compara.ar/deudores/:cuit (replace :cuit with the 11-digit CUIT/CUIL/CDI)

Endpoints

1. Current Debts — GET /centraldedeudores/v1.0/Deudas/{Identificacion}

Returns the latest reported debt situation across all financial entities.

curl -s "https://api.bcra.gob.ar/centraldedeudores/v1.0/Deudas/20123456789"

Response structure:

{
  "status": 200,
  "results": {
    "identificacion": 20123456789,
    "denominacion": "NOMBRE DE LA PERSONA",
    "periodos": [
      {
        "periodo": "2024-12",
        "entidades": [
          {
            "entidad": "BANCO DE LA NACION ARGENTINA",
            "situacion": 1,
            "fechaSit1": "2020-03-15",
            "monto": 150.0,
            "diasAtrasoPago": 0,
            "refinanciaciones": false,
            "recategorizacionOblig": false,
            "situacionJuridica": false,
            "irrecDisposicionTecnica": false,
            "enRevision": false,
            "procesoJud": false
          }
        ]
      }
    ]
  }
}

2. Historical Debts — GET /centraldedeudores/v1.0/Deudas/Historicas/{Identificacion}

Returns debt history across multiple periods. Useful for tracking how a debtor's situation evolved over time.

curl -s "https://api.bcra.gob.ar/centraldedeudores/v1.0/Deudas/Historicas/20123456789"

Response structure: Same as current debts but with multiple periods. Historical entries have simplified entity data (no fechaSit1, diasAtrasoPago, or observation flags).

3. Rejected Checks — GET /centraldedeudores/v1.0/Deudas/ChequesRechazados/{Identificacion}

Returns rejected checks reported for the debtor, grouped by rejection cause and entity.

curl -s "https://api.bcra.gob.ar/centraldedeudores/v1.0/Deudas/ChequesRechazados/20123456789"

Response structure:

{
  "status": 200,
  "results": {
    "identificacion": 20123456789,
    "denominacion": "NOMBRE DE LA PERSONA",
    "causales": [
      {
        "causal": "SIN FONDOS SUFICIENTES",
        "entidades": [
          {
            "entidad": 44,
            "detalle": [
              {
                "nroCheque": 12345678,
                "fechaRechazo": "2024-05-10",
                "monto": 50000.0,
                "fechaPago": null,
                "fechaPagoMulta": null,
                "estadoMulta": null,
                "ctaPersonal": true,
                "denomJuridica": null,
                "enRevision": false,
                "procesoJud": false
              }
            ]
          }
        ]
      }
    ]
  }
}

Situacion (Credit Classification) Codes

CodeCommercial PortfolioConsumer/Housing Portfolio
-----------------------------------------------------
1NormalNormal
2Special follow-up (seguimiento especial)Low risk (riesgo bajo)
3Problematic (con problemas)Medium risk (riesgo medio)
4High insolvency risk (alto riesgo de insolvencia)High risk (riesgo alto)
5Irrecoverable (irrecuperable)Irrecoverable (irrecuperable)
6Irrecoverable by technical dispositionIrrecoverable by technical disposition

Situacion 1 is the best status. Any value >= 2 indicates some level of credit risk. Values >= 5 are severe.

Key Field Notes

  • monto: Reported in thousands of ARS (miles de pesos)
  • periodo: Format YYYY-MM (the last reported period)
  • fechaSit1: Date when the debtor was first classified as Situacion 1 at that entity
  • diasAtrasoPago: Days past due (0 means current)
  • refinanciaciones: true if debt has been refinanced
  • recategorizacionOblig: true if mandatory recategorization applied
  • situacionJuridica: true if under legal proceedings (concordatos, concurso preventivo, quiebra)
  • irrecDisposicionTecnica: true if irrecoverable by technical disposition
  • enRevision: true if the record is under review
  • procesoJud: true if under judicial process

Workflow

  1. Validate input: Ensure the CUIT/CUIL/CDI is a valid number (11 digits, no hyphens)
  2. Fetch current debts first — this is usually what the user wants
  3. Fetch historical debts if the user asks about evolution or past credit behavior
  4. Fetch rejected checks if relevant or requested
  5. If user prefers a UI, share https://compara.ar/deudores/:cuit as a quick visual option
  6. Present results with clear interpretation of the situacion codes and amounts

Error Handling

  • 400: Invalid identification number format
  • 404: No records found for the given CUIT/CUIL/CDI
  • 500: BCRA server error — retry after a moment

When receiving a 404, inform the user that no records were found. This does not necessarily mean the person has no debts — it could mean the CUIT/CUIL/CDI is incorrect.

Presenting Results

When presenting results to the user:

  • Always show the person/company name (denominacion)
  • Group debts by entity and highlight any situacion >= 2 as a warning
  • Convert monto context: remind the user amounts are in thousands of ARS
  • Flag any true values in observation fields (refinanciaciones, situacionJuridica, procesoJud, etc.)
  • For historical data, show the trend (improving/worsening situation over time)
  • For rejected checks, highlight unpaid checks (where fechaPago is null)

OpenAPI Spec

For the complete API schema, see references/openapi-spec.json.

版本历史

共 1 个版本

  • v1.0.0 当前
    2026-03-29 09:24 安全 安全

安全检测

腾讯云安全 (Keen)

安全,无风险
查看报告

腾讯云安全 (Sanbu)

安全,无风险
查看报告

🔗 相关推荐

professional

A股量化 AkShare

mbpz
A股量化数据分析工具,基于AkShare库获取A股行情、财务数据、板块信息等。用于回答关于A股股票查询、行情数据、财务分析、选股等问题。
★ 178 📥 61,289
professional

Stock Analysis

udiedrichsen
{"answer":"基于雅虎财经数据,分析股票与加密货币。支持投资组合管理、自选股预警、股息分析、8维评分、热门趋势扫描及传闻/早期信号探测。适用于股票分析、持仓追踪、财报异动、加密监控、热门股追踪或提前发掘非主流传闻。"}
★ 273 📥 57,279
professional

All-Market Financial Data Hub

financial-ai-analyst
基于东方财富数据库,支持自然语言查询金融数据,覆盖A股、港股、美股、基金、债券等资产,提供实时行情、公司信息、估值、财务报表等,适用于投资研究、交易复盘、市场监控、行业分析、信用研究、财报审计、资产配置等场景,满足机构与个人需求。返回结果为
★ 118 📥 40,903