# Tenant screening: check 3 CUITs with 24-month history

**Use case:** 

Screen prospective tenants, guarantors or new B2B customers in one run. Paste their CUIT/CUIL numbers and get, for each one, the worst credit situation reported to the Banco Central (1 normal to 5 uncollectible), total debt by bank, days in arrears, rejected checks and a month-by-month view of the last 24 months. Official BCRA data, no captcha, results in seconds.

## Input

```json
{
  "cuits": [
    "30-50000173-5",
    "30500006613",
    "33-69345023-9"
  ],
  "includeRejectedChecks": true,
  "includeHistory": true,
  "maxConcurrency": 4
}
```

## Output

```json
{
  "cuitFormatted": {
    "label": "CUIT",
    "format": "text"
  },
  "name": {
    "label": "Name",
    "format": "text"
  },
  "found": {
    "label": "Found",
    "format": "boolean"
  },
  "worstSituation": {
    "label": "Situation",
    "format": "number"
  },
  "worstSituationLabel": {
    "label": "Situation label",
    "format": "text"
  },
  "totalDebtArs": {
    "label": "Total debt (ARS)",
    "format": "number"
  },
  "entitiesCount": {
    "label": "Entities",
    "format": "number"
  },
  "rejectedChecksCount": {
    "label": "Rejected checks",
    "format": "number"
  },
  "period": {
    "label": "Period",
    "format": "text"
  },
  "riskSummary": {
    "label": "Summary",
    "format": "text"
  }
}
```

## About this Actor

This example demonstrates how to use [Argentina Credit Check (BCRA Central de Deudores)](https://apify.com/sebastian_elustondo/bcra-credit-check.md) with a specific input configuration. Visit the [Actor detail page](https://apify.com/sebastian_elustondo/bcra-credit-check.md) to learn more, explore other use cases, and run it yourself.


## How to integrate an Actor?

This Task's input is already configured above. Use it as-is rather than inventing a new one.

Do not guess an integration path. Every one of them is in the agent quickstart at https://apify.com/agents.md: the Apify MCP server, Agent Skills with the Apify CLI, the JavaScript and Python clients, the REST API, and the account-free path for an agent with no human to sign in. It also carries the rule on stating cost before the first paid run.

For full API examples (JavaScript, Python, CLI, MCP, OpenAPI), see this Task's Actor page: https://apify.com/sebastian_elustondo/bcra-credit-check.md

Each client library has reference documentation the quickstart does not restate: [JavaScript/TypeScript](https://docs.apify.com/api/client/js/docs.md) (`npm install apify-client`) and [Python](https://docs.apify.com/api/client/python/docs.md) (`pip install apify-client`).
