# Brazil Company Reputation Checker (`intrabit/brazil-company-reputation-checker`) Actor

Check Brazilian companies in bulk and retrieve public reputation metrics, including score, complaint volume, response rate, resolution rate, consumer rating, and more. Ideal for supplier screening, lead enrichment, due diligence, and company research.

- **URL**: https://apify.com/intrabit/brazil-company-reputation-checker.md
- **Developed by:** [Intrabit](https://apify.com/intrabit) (community)
- **Categories:** E-commerce, Developer tools, Other
- **Stats:** 2 total users, 1 monthly users, 100.0% runs succeeded, 0 bookmarks
- **User rating**: No ratings yet

## Pricing

Pay per event

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 web data automations that power AI and operations. They run on the Apify platform to scrape websites, process data, connect APIs, and automate workflows.
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.

- **AI agents and MCP clients** — the [Apify MCP server](https://docs.apify.com/integrations/mcp.md) at `https://mcp.apify.com` (remote, streamable HTTP, OAuth on first use).
- **Agentic workflows and local Actor development** — [Agent Skills](https://apify.com/.well-known/agent-skills/index.json) with the [Apify CLI](https://docs.apify.com/cli/docs.md): `npm install -g apify-cli`, then `apify login`.
- **JavaScript/TypeScript projects** — the official [JS/TS client](https://docs.apify.com/api/client/js/docs.md): `npm install apify-client`.
- **Python projects** — the official [Python client](https://docs.apify.com/api/client/python/docs.md): `pip install apify-client`.
- **Any other language** — 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 Company Reputation Bulk Checker

> Enrich a list of Brazilian companies with public Reclame Aqui reputation metrics. Built for bulk company research, supplier screening, lead enrichment and due diligence workflows.

Give it a list of 500 company names. Get back one structured row per company with its public Reclame Aqui reputation: score, complaint counts, answer/resolve rates, deal-again rate and consumer rating.

### What it does

You provide Brazilian company names (or their Reclame Aqui page URLs). The Actor:

1. Resolves each name to the correct company page on Reclame Aqui.
2. Extracts the **public** reputation metrics shown on that page.
3. Returns one clean JSON row per company in the default Dataset.

Nothing is invented: if a field is not available for a company, it is returned as `null`.

### Input example

```json
{
  "companies": [
    "nubank",
    "mercado livre",
    "ifood"
  ]
}
```

You can also paste Reclame Aqui URLs directly when you already know the page:

```json
{
  "companies": [
    "https://www.reclameaqui.com.br/empresa/nubank/",
    "https://www.reclameaqui.com.br/empresa/mercado-livre/"
  ]
}
```

Up to **1000 companies per run**.

### Output example

Each company becomes one item in the Dataset:

```json
{
  "query": "nubank",
  "companyName": "Nubank",
  "reclameAquiUrl": "https://www.reclameaqui.com.br/empresa/nubank/",
  "reputation": "RA1000",
  "reputationStatus": "RA1000",
  "score": 8.7,
  "complaints": 57104,
  "answeredComplaints": 57008,
  "answeredPercent": 99.8,
  "resolvedPercent": 93.3,
  "wouldBuyAgainPercent": 81.4,
  "consumerRating": 7.72,
  "status": "FOUND",
  "scrapedAt": "2026-08-09T01:26:48.205Z"
}
```

`status` is explicit per company:

- `FOUND` – company found and reputation extracted.
- `NOT_FOUND` – no matching company on Reclame Aqui.
- `AMBIGUOUS` – more than one plausible match was returned (together with the candidates).
- `ERROR` – the company could not be processed (e.g. temporarily rate-limited).

A failing company never interrupts the others.

### Use cases

- **Company enrichment** – add Reclame Aqui reputation to your Brazilian company database.
- **Supplier screening** – check a shortlist of potential suppliers at scale.
- **Lead enrichment** – score prospect lists by public consumer reputation.
- **Brazilian company research** – quickly compare reputation across an entire market.
- **Reputation monitoring** – take periodic snapshots of a fixed company list.
- **Due diligence datasets** – feed reputation metrics into risk and diligence pipelines.

### Pricing

This Actor runs on a **pay-per-result** model. You are charged only for companies that were processed and produced a useful result (`FOUND`). `NOT_FOUND`, `AMBIGUOUS` and `ERROR` items are **never charged**.

- Event: `company-result`
- Target price: **US$ 0.005 per result** (US$ 5 / 1,000 results)

Platform (compute) costs are billed separately by Apify as usual and are minimal — this Actor is pure HTTP, uses no browser, and typically runs at 512 MB of memory.

### FAQ

**Can I send 1,000 companies?** Yes. The hard limit per run is 1,000.

**What if a name is ambiguous?** The row gets `status: "AMBIGUOUS"` and includes the candidate companies found, so you can pick the right one by passing its URL in a second run.

**Does it log in or scrape complaints?** No. Only the public reputation summary of each company page is used.

**Is it blocked by CAPTCHA?** No bypass is attempted. Like any automated access, it may be rate-limited temporarily; the Actor retries politely and never tries to circumvent access controls.

# Actor input Schema

## `companies` (type: `array`):

One company per row. Use a company name (e.g. 'Nubank', 'Mercado Livre') or a Reclame Aqui company page URL (e.g. https://www.reclameaqui.com.br/empresa/nubank/). Up to 1000 per run.

## Actor input object example

```json
{
  "companies": [
    "nubank",
    "mercado livre",
    "ifood"
  ]
}
```

# 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 = {
    "companies": [
        "nubank",
        "mercado livre",
        "ifood"
    ]
};

// Run the Actor and wait for it to finish
const run = await client.actor("intrabit/brazil-company-reputation-checker").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 = { "companies": [
        "nubank",
        "mercado livre",
        "ifood",
    ] }

# Run the Actor and wait for it to finish
run = client.actor("intrabit/brazil-company-reputation-checker").call(run_input=run_input)

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

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

```

## CLI example

```bash
echo '{
  "companies": [
    "nubank",
    "mercado livre",
    "ifood"
  ]
}' |
apify call intrabit/brazil-company-reputation-checker --silent --output-dataset

```

## MCP server setup

```json
{
    "mcpServers": {
        "apify": {
            "type": "http",
            "url": "https://mcp.apify.com/?tools=fetch-actor-details,intrabit/brazil-company-reputation-checker"
        }
    }
}

```

The hosted server signs you in with OAuth on first connect, so no API token belongs in this config. Clients without OAuth support can send an `Authorization: Bearer <APIFY_API_TOKEN>` header instead, using a token from API & Integrations in Apify Console (https://console.apify.com/settings/integrations).

## OpenAPI specification

Download the OpenAPI definition: https://api.apify.com/v2/actors/OsL4zn6jhxlwLRNcA/builds/l4fJeygrBd7ledw5V/openapi.json
