# Brazil CNPJ Scraper. Receita Federal Company Records (`seemuapps/brasil-cnpj-scraper`) Actor

Look up Brazilian companies by CNPJ — full Receita Federal record: legal name, address, status, share capital, CNAE industry codes, partners (QSA), tax regime history, and contact details.

- **URL**: https://apify.com/seemuapps/brasil-cnpj-scraper.md
- **Developed by:** [Andrew](https://apify.com/seemuapps) (community)
- **Categories:** Lead generation, Jobs, Developer tools
- **Stats:** 2 total users, 1 monthly users, 100.0% runs succeeded, NaN bookmarks
- **User rating**: No ratings yet

## Pricing

from $0.99 / 1,000 company record fetcheds

This Actor is paid per event. You are not charged for the Apify platform usage, but only a fixed price for specific events.

Learn more: https://docs.apify.com/platform/actors/running/actors-in-store#pay-per-event

## What's an Apify Actor?

Actors are a software tools running on the Apify platform, for all kinds of web data extraction and automation use cases.
In Batch mode, an Actor accepts a well-defined JSON input, performs an action which can take anything from a few seconds to a few hours,
and optionally produces a well-defined JSON output, datasets with results, or files in key-value store.
In Standby mode, an Actor provides a web server which can be used as a website, API, or an MCP server.
Actors are written with capital "A".

## How to integrate an Actor?

If asked about integration, you help developers integrate Actors into their projects.
You adapt to their stack and deliver integrations that are safe, well-documented, and production-ready.
The best way to integrate Actors is as follows.

In JavaScript/TypeScript projects, use official [JavaScript/TypeScript client](https://docs.apify.com/api/client/js.md):

```bash
npm install apify-client
```

In Python projects, use official [Python client library](https://docs.apify.com/api/client/python.md):

```bash
pip install apify-client
```

In shell scripts, use [Apify CLI](https://docs.apify.com/cli/docs.md):

````bash
# MacOS / Linux
curl -fsSL https://apify.com/install-cli.sh | bash
# Windows
irm https://apify.com/install-cli.ps1 | iex
```bash

In AI frameworks, you might use the [Apify MCP server](https://docs.apify.com/platform/integrations/mcp.md).

If your project is in a different language, use the [REST API](https://docs.apify.com/api/v2.md).

For usage examples, see the [API](#api) section below.

For more details, see Apify documentation as [Markdown index](https://docs.apify.com/llms.txt) and [Markdown full-text](https://docs.apify.com/llms-full.txt).


# README

## Brazil CNPJ Scraper — Receita Federal Company Records

Look up Brazilian companies by CNPJ — full Receita Federal record: legal name, address, status, share capital, CNAE industry codes, partners (QSA), tax regime history, and contact details. Bulk batch. No API key.

### What you get

- One row per Brazilian company, fetched live from Brazil's federal tax registry (Receita Federal)
- **Legal name** (razão social), **trade name** (nome fantasia), and CNPJ in both raw and formatted (`19.131.243/0001-97`) forms
- **Registration status** — Active / Suspended / Inactive / Closed — with the date and reason
- **Address** — street, number, complement, neighborhood, city, state, ZIP, IBGE code, country
- **Industry classification** — primary CNAE code + description, plus the full list of secondary CNAEs
- **Share capital**, company size (ME / EPP / DEMAIS), legal nature, founding date
- **Partners (QSA)** — every officer / shareholder with their name, role, join date, age range, and masked tax ID
- **Tax regime history** — annual Simples Nacional / MEI / Lucro Real status (optional)
- **Contact** — phone (DDD + number), fax, email
- Direct export to JSON, CSV, Excel, or Google Sheets

### Use cases

- **Lead generation** — enrich a list of CNPJs scraped elsewhere with full company profiles for outbound campaigns
- **Due diligence** — verify a Brazilian counterparty's legal status, partners, and tax-regime history in seconds
- **B2B sales** — filter prospects by CNAE (industry), state, size, or active/inactive status
- **AML / KYC** — pull the QSA (partners list) for ultimate beneficial ownership review
- **Financial / lending** — check `situacao_cadastral`, capital social, and founding date for credit decisions
- **Research / journalism** — bulk-enrich datasets of government contractors, exporters, or news subjects

### How to use

1. Paste one or more **CNPJs** — with or without punctuation. Both `19.131.243/0001-97` and `19131243000197` work.
2. Choose what to include: **Partners (QSA)**, **Secondary CNAEs**, **Tax regime history** (off by default).
3. Set **Concurrency** (default 5; max 10) to control how fast we hit BrasilAPI.
4. Set **Max items** (0 = no cap) and run. One company per row in the **Dataset** tab.

### Output format

```json
{
  "cnpj": "19131243000197",
  "cnpjFormatted": "19.131.243/0001-97",
  "legalName": "OPEN KNOWLEDGE BRASIL",
  "tradeName": "REDE PELO CONHECIMENTO LIVRE",
  "status": "ATIVA",
  "statusCode": 2,
  "statusDate": "2013-12-13",
  "statusReason": "SEM MOTIVO",
  "founded": "2013-12-13",
  "branchType": "MATRIZ",
  "size": "DEMAIS",
  "legalNature": "Associação Privada",
  "legalNatureCode": 3999,
  "capitalSocial": 0,
  "mainCnaeCode": 9430800,
  "mainCnaeDescription": "Atividades de associações de defesa de direitos sociais",
  "secondaryCnaes": [
    { "code": 6204000, "description": "Consultoria em tecnologia da informação" },
    { "code": 8599699, "description": "Outras atividades de ensino não especificadas anteriormente" }
  ],
  "street": "PAULISTA 37",
  "number": "37",
  "complement": "ANDAR 4",
  "neighborhood": "BELA VISTA",
  "city": "SAO PAULO",
  "state": "SP",
  "zip": "01311902",
  "cityCode": 7107,
  "ibgeCode": 3550308,
  "country": null,
  "phone1": "1123851939",
  "phone2": null,
  "fax": null,
  "email": null,
  "simplesNacional": false,
  "simplesOptIn": null,
  "simplesOptOut": null,
  "mei": null,
  "meiOptIn": null,
  "meiOptOut": null,
  "responsibleEntity": "",
  "specialStatus": null,
  "specialStatusDate": null,
  "partners": [
    {
      "name": "HAYDEE SVAB",
      "taxId": "***112108**",
      "role": "Presidente",
      "joinedAt": "2024-02-27",
      "ageRange": "Entre 41 a 50 anos",
      "legalRepName": null,
      "legalRepTaxId": null,
      "legalRepRole": null
    }
  ],
  "taxRegimes": [],
  "fetchedAt": "2026-05-18T01:30:00.000Z"
}
````

### Input options

| Field | Type | Description |
|-------|------|-------------|
| CNPJs | array | One or more CNPJs, with or without punctuation |
| Include partners | boolean | Include the QSA (corporate partners / officers). Default true |
| Include secondary CNAEs | boolean | Include the full list of registered economic activities. Default true |
| Include tax regimes | boolean | Include annual tax-regime history. Default false |
| Concurrency | integer | Parallel lookups (1–10). Default 5 |
| Max items | integer | Cap on companies returned. 0 = no cap |

### Status codes

| Code | Status | Meaning |
|------|--------|---------|
| 1 | NULA | Annulled |
| 2 | ATIVA | Active |
| 3 | SUSPENSA | Suspended |
| 4 | INAPTA | Inactive |
| 8 | BAIXADA | Closed / wound up |

### Notes

- Data is fetched live from [BrasilAPI](https://brasilapi.com.br), a public consortium-maintained mirror of the Receita Federal CNPJ registry
- Tax IDs in the QSA (partners list) are masked by Receita Federal (e.g. `***112108**`) — full IDs are not publicly available
- BrasilAPI is generally rate-limited around 3–5 requests per second per IP; the default concurrency of 5 stays under that
- Invalid CNPJs (anything other than exactly 14 digits) are skipped with a warning, not a fatal error

# Actor input Schema

## `cnpjs` (type: `array`):

One or more Brazilian CNPJs. Punctuation is optional — '19.131.243/0001-97' and '19131243000197' are both accepted. Invalid entries are skipped with a log warning.

## `includePartners` (type: `boolean`):

Include the list of corporate partners / officers (Quadro de Sócios e Administradores). Disable for smaller rows when you only need company-level data.

## `includeSecondaryCnaes` (type: `boolean`):

Include the company's full list of registered economic activities (CNAEs). The primary CNAE is always included.

## `includeTaxRegimes` (type: `boolean`):

Include the annual tax-regime history (forma de tributação per year). Useful for due diligence; off by default to keep rows compact.

## `concurrency` (type: `integer`):

Parallel CNPJ lookups against BrasilAPI. Higher = faster but may trigger 429 rate-limits.

## `maxItems` (type: `integer`):

Maximum companies to return. 0 = no cap (process all CNPJs).

## Actor input object example

```json
{
  "cnpjs": [
    "19131243000197"
  ],
  "includePartners": true,
  "includeSecondaryCnaes": true,
  "includeTaxRegimes": false,
  "concurrency": 5,
  "maxItems": 0
}
```

# Actor output Schema

## `results` (type: `string`):

Fields: cnpj, cnpjFormatted, legalName, tradeName, status, statusCode, statusDate, statusReason, founded, branchType, size, legalNature, legalNatureCode, capitalSocial, mainCnaeCode, mainCnaeDescription, secondaryCnaes, full address fields (street/number/complement/neighborhood/city/state/zip/cityCode/ibgeCode/country), phone1, phone2, fax, email, simplesNacional + dates, mei + dates, responsibleEntity, partners (QSA), taxRegimes, fetchedAt.

# API

You can run this Actor programmatically using our API. Below are code examples in JavaScript, Python, and CLI, as well as the OpenAPI specification and MCP server setup.

## JavaScript example

```javascript
import { ApifyClient } from 'apify-client';

// Initialize the ApifyClient with your Apify API token
// Replace the '<YOUR_API_TOKEN>' with your token
const client = new ApifyClient({
    token: '<YOUR_API_TOKEN>',
});

// Prepare Actor input
const input = {
    "cnpjs": [
        "19131243000197"
    ]
};

// Run the Actor and wait for it to finish
const run = await client.actor("seemuapps/brasil-cnpj-scraper").call(input);

// Fetch and print Actor results from the run's dataset (if any)
console.log('Results from dataset');
console.log(`💾 Check your data here: https://console.apify.com/storage/datasets/${run.defaultDatasetId}`);
const { items } = await client.dataset(run.defaultDatasetId).listItems();
items.forEach((item) => {
    console.dir(item);
});

// 📚 Want to learn more 📖? Go to → https://docs.apify.com/api/client/js/docs

```

## Python example

```python
from apify_client import ApifyClient

# Initialize the ApifyClient with your Apify API token
# Replace '<YOUR_API_TOKEN>' with your token.
client = ApifyClient("<YOUR_API_TOKEN>")

# Prepare the Actor input
run_input = { "cnpjs": ["19131243000197"] }

# Run the Actor and wait for it to finish
run = client.actor("seemuapps/brasil-cnpj-scraper").call(run_input=run_input)

# Fetch and print Actor results from the run's dataset (if there are any)
print("💾 Check your data here: https://console.apify.com/storage/datasets/" + run["defaultDatasetId"])
for item in client.dataset(run["defaultDatasetId"]).iterate_items():
    print(item)

# 📚 Want to learn more 📖? Go to → https://docs.apify.com/api/client/python/docs/quick-start

```

## CLI example

```bash
echo '{
  "cnpjs": [
    "19131243000197"
  ]
}' |
apify call seemuapps/brasil-cnpj-scraper --silent --output-dataset

```

## MCP server setup

```json
{
    "mcpServers": {
        "apify": {
            "command": "npx",
            "args": [
                "mcp-remote",
                "https://mcp.apify.com/?tools=seemuapps/brasil-cnpj-scraper",
                "--header",
                "Authorization: Bearer <YOUR_API_TOKEN>"
            ]
        }
    }
}

```

## OpenAPI specification

```json
{
    "openapi": "3.0.1",
    "info": {
        "title": "Brazil CNPJ Scraper. Receita Federal Company Records",
        "description": "Look up Brazilian companies by CNPJ — full Receita Federal record: legal name, address, status, share capital, CNAE industry codes, partners (QSA), tax regime history, and contact details.",
        "version": "1.0",
        "x-build-id": "0ouH1HcEdPruZgLhX"
    },
    "servers": [
        {
            "url": "https://api.apify.com/v2"
        }
    ],
    "paths": {
        "/acts/seemuapps~brasil-cnpj-scraper/run-sync-get-dataset-items": {
            "post": {
                "operationId": "run-sync-get-dataset-items-seemuapps-brasil-cnpj-scraper",
                "x-openai-isConsequential": false,
                "summary": "Executes an Actor, waits for its completion, and returns Actor's dataset items in response.",
                "tags": [
                    "Run Actor"
                ],
                "requestBody": {
                    "required": true,
                    "content": {
                        "application/json": {
                            "schema": {
                                "$ref": "#/components/schemas/inputSchema"
                            }
                        }
                    }
                },
                "parameters": [
                    {
                        "name": "token",
                        "in": "query",
                        "required": true,
                        "schema": {
                            "type": "string"
                        },
                        "description": "Enter your Apify token here"
                    }
                ],
                "responses": {
                    "200": {
                        "description": "OK"
                    }
                }
            }
        },
        "/acts/seemuapps~brasil-cnpj-scraper/runs": {
            "post": {
                "operationId": "runs-sync-seemuapps-brasil-cnpj-scraper",
                "x-openai-isConsequential": false,
                "summary": "Executes an Actor and returns information about the initiated run in response.",
                "tags": [
                    "Run Actor"
                ],
                "requestBody": {
                    "required": true,
                    "content": {
                        "application/json": {
                            "schema": {
                                "$ref": "#/components/schemas/inputSchema"
                            }
                        }
                    }
                },
                "parameters": [
                    {
                        "name": "token",
                        "in": "query",
                        "required": true,
                        "schema": {
                            "type": "string"
                        },
                        "description": "Enter your Apify token here"
                    }
                ],
                "responses": {
                    "200": {
                        "description": "OK",
                        "content": {
                            "application/json": {
                                "schema": {
                                    "$ref": "#/components/schemas/runsResponseSchema"
                                }
                            }
                        }
                    }
                }
            }
        },
        "/acts/seemuapps~brasil-cnpj-scraper/run-sync": {
            "post": {
                "operationId": "run-sync-seemuapps-brasil-cnpj-scraper",
                "x-openai-isConsequential": false,
                "summary": "Executes an Actor, waits for completion, and returns the OUTPUT from Key-value store in response.",
                "tags": [
                    "Run Actor"
                ],
                "requestBody": {
                    "required": true,
                    "content": {
                        "application/json": {
                            "schema": {
                                "$ref": "#/components/schemas/inputSchema"
                            }
                        }
                    }
                },
                "parameters": [
                    {
                        "name": "token",
                        "in": "query",
                        "required": true,
                        "schema": {
                            "type": "string"
                        },
                        "description": "Enter your Apify token here"
                    }
                ],
                "responses": {
                    "200": {
                        "description": "OK"
                    }
                }
            }
        }
    },
    "components": {
        "schemas": {
            "inputSchema": {
                "type": "object",
                "required": [
                    "cnpjs"
                ],
                "properties": {
                    "cnpjs": {
                        "title": "CNPJs",
                        "type": "array",
                        "description": "One or more Brazilian CNPJs. Punctuation is optional — '19.131.243/0001-97' and '19131243000197' are both accepted. Invalid entries are skipped with a log warning.",
                        "items": {
                            "type": "string"
                        }
                    },
                    "includePartners": {
                        "title": "Include partners (QSA)",
                        "type": "boolean",
                        "description": "Include the list of corporate partners / officers (Quadro de Sócios e Administradores). Disable for smaller rows when you only need company-level data.",
                        "default": true
                    },
                    "includeSecondaryCnaes": {
                        "title": "Include secondary CNAE codes",
                        "type": "boolean",
                        "description": "Include the company's full list of registered economic activities (CNAEs). The primary CNAE is always included.",
                        "default": true
                    },
                    "includeTaxRegimes": {
                        "title": "Include tax regime history",
                        "type": "boolean",
                        "description": "Include the annual tax-regime history (forma de tributação per year). Useful for due diligence; off by default to keep rows compact.",
                        "default": false
                    },
                    "concurrency": {
                        "title": "Concurrency",
                        "minimum": 1,
                        "maximum": 10,
                        "type": "integer",
                        "description": "Parallel CNPJ lookups against BrasilAPI. Higher = faster but may trigger 429 rate-limits.",
                        "default": 5
                    },
                    "maxItems": {
                        "title": "Max items",
                        "minimum": 0,
                        "type": "integer",
                        "description": "Maximum companies to return. 0 = no cap (process all CNPJs).",
                        "default": 0
                    }
                }
            },
            "runsResponseSchema": {
                "type": "object",
                "properties": {
                    "data": {
                        "type": "object",
                        "properties": {
                            "id": {
                                "type": "string"
                            },
                            "actId": {
                                "type": "string"
                            },
                            "userId": {
                                "type": "string"
                            },
                            "startedAt": {
                                "type": "string",
                                "format": "date-time",
                                "example": "2025-01-08T00:00:00.000Z"
                            },
                            "finishedAt": {
                                "type": "string",
                                "format": "date-time",
                                "example": "2025-01-08T00:00:00.000Z"
                            },
                            "status": {
                                "type": "string",
                                "example": "READY"
                            },
                            "meta": {
                                "type": "object",
                                "properties": {
                                    "origin": {
                                        "type": "string",
                                        "example": "API"
                                    },
                                    "userAgent": {
                                        "type": "string"
                                    }
                                }
                            },
                            "stats": {
                                "type": "object",
                                "properties": {
                                    "inputBodyLen": {
                                        "type": "integer",
                                        "example": 2000
                                    },
                                    "rebootCount": {
                                        "type": "integer",
                                        "example": 0
                                    },
                                    "restartCount": {
                                        "type": "integer",
                                        "example": 0
                                    },
                                    "resurrectCount": {
                                        "type": "integer",
                                        "example": 0
                                    },
                                    "computeUnits": {
                                        "type": "integer",
                                        "example": 0
                                    }
                                }
                            },
                            "options": {
                                "type": "object",
                                "properties": {
                                    "build": {
                                        "type": "string",
                                        "example": "latest"
                                    },
                                    "timeoutSecs": {
                                        "type": "integer",
                                        "example": 300
                                    },
                                    "memoryMbytes": {
                                        "type": "integer",
                                        "example": 1024
                                    },
                                    "diskMbytes": {
                                        "type": "integer",
                                        "example": 2048
                                    }
                                }
                            },
                            "buildId": {
                                "type": "string"
                            },
                            "defaultKeyValueStoreId": {
                                "type": "string"
                            },
                            "defaultDatasetId": {
                                "type": "string"
                            },
                            "defaultRequestQueueId": {
                                "type": "string"
                            },
                            "buildNumber": {
                                "type": "string",
                                "example": "1.0.0"
                            },
                            "containerUrl": {
                                "type": "string"
                            },
                            "usage": {
                                "type": "object",
                                "properties": {
                                    "ACTOR_COMPUTE_UNITS": {
                                        "type": "integer",
                                        "example": 0
                                    },
                                    "DATASET_READS": {
                                        "type": "integer",
                                        "example": 0
                                    },
                                    "DATASET_WRITES": {
                                        "type": "integer",
                                        "example": 0
                                    },
                                    "KEY_VALUE_STORE_READS": {
                                        "type": "integer",
                                        "example": 0
                                    },
                                    "KEY_VALUE_STORE_WRITES": {
                                        "type": "integer",
                                        "example": 1
                                    },
                                    "KEY_VALUE_STORE_LISTS": {
                                        "type": "integer",
                                        "example": 0
                                    },
                                    "REQUEST_QUEUE_READS": {
                                        "type": "integer",
                                        "example": 0
                                    },
                                    "REQUEST_QUEUE_WRITES": {
                                        "type": "integer",
                                        "example": 0
                                    },
                                    "DATA_TRANSFER_INTERNAL_GBYTES": {
                                        "type": "integer",
                                        "example": 0
                                    },
                                    "DATA_TRANSFER_EXTERNAL_GBYTES": {
                                        "type": "integer",
                                        "example": 0
                                    },
                                    "PROXY_RESIDENTIAL_TRANSFER_GBYTES": {
                                        "type": "integer",
                                        "example": 0
                                    },
                                    "PROXY_SERPS": {
                                        "type": "integer",
                                        "example": 0
                                    }
                                }
                            },
                            "usageTotalUsd": {
                                "type": "number",
                                "example": 0.00005
                            },
                            "usageUsd": {
                                "type": "object",
                                "properties": {
                                    "ACTOR_COMPUTE_UNITS": {
                                        "type": "integer",
                                        "example": 0
                                    },
                                    "DATASET_READS": {
                                        "type": "integer",
                                        "example": 0
                                    },
                                    "DATASET_WRITES": {
                                        "type": "integer",
                                        "example": 0
                                    },
                                    "KEY_VALUE_STORE_READS": {
                                        "type": "integer",
                                        "example": 0
                                    },
                                    "KEY_VALUE_STORE_WRITES": {
                                        "type": "number",
                                        "example": 0.00005
                                    },
                                    "KEY_VALUE_STORE_LISTS": {
                                        "type": "integer",
                                        "example": 0
                                    },
                                    "REQUEST_QUEUE_READS": {
                                        "type": "integer",
                                        "example": 0
                                    },
                                    "REQUEST_QUEUE_WRITES": {
                                        "type": "integer",
                                        "example": 0
                                    },
                                    "DATA_TRANSFER_INTERNAL_GBYTES": {
                                        "type": "integer",
                                        "example": 0
                                    },
                                    "DATA_TRANSFER_EXTERNAL_GBYTES": {
                                        "type": "integer",
                                        "example": 0
                                    },
                                    "PROXY_RESIDENTIAL_TRANSFER_GBYTES": {
                                        "type": "integer",
                                        "example": 0
                                    },
                                    "PROXY_SERPS": {
                                        "type": "integer",
                                        "example": 0
                                    }
                                }
                            }
                        }
                    }
                }
            }
        }
    }
}
```
