# Check Ecuadorian and Costa Rican companies in one run

**Use case:** 

A ready-to-run example: paste a mixed list of Ecuadorian RUCs and Costa Rican cédulas and get one normalized row per company from the official SRI and Hacienda registries — legal name, status, activity, tax regime, representatives, branches, and each authority's own fraud and tax-debt flags in one shared schema. Start it as it is to see one company from each country.

## Input

```json
{
  "identifiers": [
    "1790016919001",
    "3101005212"
  ],
  "countries": [
    "EC",
    "CR"
  ],
  "includeEstablishments": true,
  "includeRaw": false,
  "skipInvalidChecksum": false,
  "verifyNotFound": true,
  "maxConcurrency": 5,
  "requestTimeoutSecs": 30,
  "maxRetries": 3,
  "proxyConfiguration": {
    "useApifyProxy": false
  }
}
```

## Output

```json
{
  "country": {
    "label": "Country",
    "format": "text"
  },
  "identifier": {
    "label": "Tax ID",
    "format": "text"
  },
  "legalName": {
    "label": "Legal name",
    "format": "text"
  },
  "status": {
    "label": "Status",
    "format": "text"
  },
  "entityType": {
    "label": "Type",
    "format": "text"
  },
  "hasRiskFlag": {
    "label": "Flagged",
    "format": "boolean"
  },
  "riskFlagsRaised": {
    "label": "Flags",
    "format": "array"
  },
  "mainActivity": {
    "label": "Main activity",
    "format": "text"
  },
  "taxRegime": {
    "label": "Regime",
    "format": "text"
  },
  "registeredSince": {
    "label": "Registered since",
    "format": "text"
  },
  "establishmentCount": {
    "label": "Branches",
    "format": "number"
  },
  "headOfficeAddress": {
    "label": "Head office",
    "format": "text"
  },
  "sourceUrl": {
    "label": "Source",
    "format": "link"
  }
}
```

## About this Actor

This example demonstrates how to use [LATAM Company Registry Scraper — Ecuador & Costa Rica Tax ID](https://apify.com/registralia/latam-company-registry-scraper.md) with a specific input configuration. Visit the [Actor detail page](https://apify.com/registralia/latam-company-registry-scraper.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/registralia/latam-company-registry-scraper.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`).
