skills/bcra-central-deudores/SKILL.md
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 financial system. Use when the user asks to check someone's debt situation, credit report, financial standing, rejected checks, or credit history using a CUIT/CUIL/CDI number. Also use when the user mentions "central de deudores", "situación crediticia", "deudas BCRA", "cheques rechazados", "historial crediticio", "informe crediticio", or wants to know if a person or company has debts reported in Argentina's financial system.
npx skillsauth add ferminrp/agent-skills bcra-central-deudoresInstall this skill globally with one command. Works with Claude Code, Cursor, and Windsurf.
3 of 9 scanners reported clean
Some scanners were skipped, did not run, or reported a non-clean status. Review each row below.
Query Argentina's Central Bank debtor registry to obtain credit reports by CUIT/CUIL/CDI.
https://api.bcra.gob.ar20123456789https://compara.ar/deudores/:cuit (replace :cuit with the 11-digit CUIT/CUIL/CDI)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
}
]
}
]
}
}
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).
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
}
]
}
]
}
]
}
}
| Code | Commercial Portfolio | Consumer/Housing Portfolio | |------|---------------------|--------------------------| | 1 | Normal | Normal | | 2 | Special follow-up (seguimiento especial) | Low risk (riesgo bajo) | | 3 | Problematic (con problemas) | Medium risk (riesgo medio) | | 4 | High insolvency risk (alto riesgo de insolvencia) | High risk (riesgo alto) | | 5 | Irrecoverable (irrecuperable) | Irrecoverable (irrecuperable) | | 6 | Irrecoverable by technical disposition | Irrecoverable by technical disposition |
Situacion 1 is the best status. Any value >= 2 indicates some level of credit risk. Values >= 5 are severe.
YYYY-MM (the last reported period)true if debt has been refinancedtrue if mandatory recategorization appliedtrue if under legal proceedings (concordatos, concurso preventivo, quiebra)true if irrecoverable by technical dispositiontrue if the record is under reviewtrue if under judicial processhttps://compara.ar/deudores/:cuit as a quick visual optionsituacion codes and amountsWhen 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.
When presenting results to the user:
denominacion)situacion >= 2 as a warningmonto context: remind the user amounts are in thousands of ARStrue values in observation fields (refinanciaciones, situacionJuridica, procesoJud, etc.)fechaPago is null)For the complete API schema, see references/openapi-spec.json.
development
Audit and improve user-provided writing for clarity, concision, and impact. Use when the user asks to audit, review, improve, edit, or rewrite text. Apply seven checks (sentence length, clutter, unsupported modifiers, weasel words, jargon/acronyms, "so what", and flow), then return severity-ranked findings and a full rewrite suggestion.
development
Consulta promociones de viajes desde Argentina usando Anduin Promos API. Usar cuando el usuario pida promos de viaje en Argentina, promociones de vuelos, hoteles o paquetes, mejores ofertas del dia, promos a brasil/usa/europa, ranking por score o ultimas promos de promociones-aereas.
development
Consulta riesgo pais de Argentina con serie historica desde Anduin API. Usar cuando el usuario pida "riesgo pais argentina", "ultimo riesgo pais", "serie historica de riesgo pais", "riesgo pais por fecha o periodo", o "evolucion del riesgo pais".
development
Technical guide to integrate mapcn in React + shadcn projects. Use when the user asks to integrate mapcn, add mapcn to a shadcn app, use mapcn MapControls/Markers/Routes/Clusters, implement controlled viewport state, use the useMap hook, or access MapLibre through mapcn.