# Check Costa Rican companies by cédula jurídica

**Use case:** 

A ready-to-run example: paste a list of Costa Rican cédulas jurídicas and get one row per company from the official Ministerio de Hacienda registry — legal name, registration status, legal form, tax regime, tax office, economic activities, and the authority's own moroso (tax debt) and omiso (non-filer) flags. Start it as it is to see two real companies, then replace the numbers with your own list.

## Input

```json
{
  "identifications": [
    "3101005212",
    "3-101-002001"
  ],
  "includeRaw": false,
  "checkCcssDebtorList": true,
  "ccssProxyCountry": "CR",
  "maxConcurrency": 5,
  "requestTimeoutSecs": 30,
  "maxRetries": 3,
  "proxyConfiguration": {
    "useApifyProxy": false
  }
}
```

## Output

```json
{
  "identification": {
    "label": "Cédula",
    "format": "text"
  },
  "legalName": {
    "label": "Legal name",
    "format": "text"
  },
  "status": {
    "label": "Status",
    "format": "text"
  },
  "entityType": {
    "label": "Entity",
    "format": "text"
  },
  "juridicalClass": {
    "label": "Legal form",
    "format": "text"
  },
  "isTaxDelinquent": {
    "label": "Tax delinquent",
    "format": "boolean"
  },
  "isNonFiler": {
    "label": "Non-filer",
    "format": "boolean"
  },
  "canIssueElectronicInvoice": {
    "label": "May invoice",
    "format": "boolean"
  },
  "mainActivity": {
    "label": "Main activity",
    "format": "text"
  },
  "mainActivityCode": {
    "label": "Activity code",
    "format": "text"
  },
  "taxRegime": {
    "label": "Regime",
    "format": "text"
  },
  "taxOffice": {
    "label": "Tax office",
    "format": "text"
  },
  "activityCount": {
    "label": "Activities",
    "format": "number"
  },
  "onCcssTopDebtorList": {
    "label": "CCSS debtor",
    "format": "boolean"
  },
  "ccssDebtCrc": {
    "label": "CCSS arrears (CRC)",
    "format": "number"
  },
  "sourceUrl": {
    "label": "Source",
    "format": "link"
  }
}
```

## About this Actor

This example demonstrates how to use [Costa Rica Cedula Scraper — Hacienda Company Registry & KYB](https://apify.com/registralia/costa-rica-cedula-scraper.md) with a specific input configuration. Visit the [Actor detail page](https://apify.com/registralia/costa-rica-cedula-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/costa-rica-cedula-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`).
