# Check Ecuadorian companies by RUC (with fraud flags)

**Use case:** 

A ready-to-run example: paste a list of Ecuadorian RUC numbers and get one row per company from the official SRI registry — legal name, status, economic activity, tax regime, legal representatives with their national ID, every registered branch with its address, and the SRI's own ghost-taxpayer (contribuyente fantasma) flags. Start it as it is to see two real companies, then use your own list.

## Input

```json
{
  "rucs": [
    "1790016919001",
    "0990004196001"
  ],
  "includeEstablishments": true,
  "includeTaxDebts": true,
  "includeTaxDebtDetails": false,
  "includeRaw": false,
  "skipInvalidChecksum": false,
  "verifyNotFound": true,
  "maxConcurrency": 5,
  "requestTimeoutSecs": 30,
  "maxRetries": 3,
  "proxyConfiguration": {
    "useApifyProxy": false
  }
}
```

## Output

```json
{
  "ruc": {
    "label": "RUC",
    "format": "text"
  },
  "legalName": {
    "label": "Legal name",
    "format": "text"
  },
  "status": {
    "label": "Status",
    "format": "text"
  },
  "taxpayerType": {
    "label": "Type",
    "format": "text"
  },
  "mainEconomicActivity": {
    "label": "Main activity",
    "format": "text"
  },
  "activityStartDate": {
    "label": "Active since",
    "format": "text"
  },
  "isGhostTaxpayer": {
    "label": "Ghost taxpayer",
    "format": "boolean"
  },
  "hasNonExistentTransactions": {
    "label": "Non-existent transactions",
    "format": "boolean"
  },
  "hasFirmTaxDebt": {
    "label": "Firm tax debt",
    "format": "boolean"
  },
  "firmTaxDebtUsd": {
    "label": "Tax debt USD",
    "format": "number"
  },
  "isSpecialTaxpayer": {
    "label": "Special taxpayer",
    "format": "boolean"
  },
  "establishmentCount": {
    "label": "Establishments",
    "format": "number"
  },
  "openEstablishmentCount": {
    "label": "Open",
    "format": "number"
  },
  "headOfficeAddress": {
    "label": "Head office",
    "format": "text"
  },
  "registryUpdatedAt": {
    "label": "Registry updated",
    "format": "text"
  },
  "sourceUrl": {
    "label": "Source",
    "format": "link"
  }
}
```

## About this Actor

This example demonstrates how to use [Ecuador SRI RUC Scraper — Company Registry & Fraud Flags](https://apify.com/registralia/ecuador-sri-ruc-scraper.md) with a specific input configuration. Visit the [Actor detail page](https://apify.com/registralia/ecuador-sri-ruc-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/ecuador-sri-ruc-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`).
