# GetNinjas Leads Scraper (`national_scrim/getninjas-leads-scraper`) Actor

Extrai cards públicos de categorias e pedidos similares no GetNinjas.

- **URL**: https://apify.com/national\_scrim/getninjas-leads-scraper.md
- **Developed by:** [Bruno-Arantir](https://apify.com/national_scrim) (community)
- **Stats:** 2 total users, 1 monthly users, 100.0% runs succeeded, 0 bookmarks
- **User rating**: No ratings yet

## Pricing

from $4.00 / 1,000 results

This Actor is paid per event and usage. You are charged both the fixed price for specific events and for Apify platform usage.

Learn more: https://docs.apify.com/actors/running/actors-in-store.md#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

## GetNinjas Leads Scraper

**Public GetNinjas category pages → structured service-request cards (no inbox, no login).**

Monitore demanda local no [GetNinjas](https://www.getninjas.com.br): categorias públicas e os cards de **pedidos similares** que o site já mostra na página do serviço.

- Lê `__NEXT_DATA__` das URLs `/categoria/{slug}/{uf}/{cidade}` (SSR público).
- Filtra por tipo de serviço, cidade e UF — o mesmo recorte que o cliente vê sem login.
- Devolve título, categoria, local, resumo do pedido (quando o site publica) e URL.
- HTTP barato; Playwright só se o HTML vier bloqueado. Challenge/CAPTCHA = **fail closed**.
- Dedup por hash do resumo + categoria + local. Teto rígido de `maxItems` (5.000).

### Fonte

Páginas públicas, por exemplo:

`https://www.getninjas.com.br/categoria/reformas-e-reparos/eletricista/sp/sao-paulo`

O inbox de profissionais **não** é público. Este Actor não entra na conta, não compra moedas e não coleta telefone/e-mail de clientes.

### Amostra de saída

Estrutura real da página de categoria (campos nulos se o site não publicar):

```json
{
  "id": "a1b2c3d4e5f60789",
  "kind": "service_request",
  "title": "Pedido de Eletricista",
  "category": "Eletricista",
  "location": "São Paulo, São Paulo",
  "summary": "Puxar fiação para iluminação em forro acartonado…",
  "url": "https://www.getninjas.com.br/categoria/reformas-e-reparos/eletricista/sp/sao-paulo"
}
```

Exemplo ilustrativo de formato — rode o Actor para dados atuais. O primeiro nome que o site mostra no card público vai em `requesterNamePublic`; contato não é coletado.

### Configuração

| Campo | Default | Descrição |
| --- | --- | --- |
| `query` | eletricista | Tipo de serviço |
| `category` | — | Slug, ex. `reformas-e-reparos/eletricista` |
| `city` | São Paulo | Cidade da URL pública |
| `state` | SP | UF ou nome |
| `maxItems` | 40 | Teto 5.000 |
| `searchUrl` | — | URL `/categoria/…` pronta |
| `proxyConfiguration` | RESIDENTIAL BR | Padrão em produção |

### PPE

Evento `dataset-item`: **US$ 3–5 / 1.000 cards** sugerido (referência US$ 4).

### LGPD

Resumos de pedido e primeiro nome no card são dados que o GetNinjas já publica na página de categoria. Não coletamos inbox, telefone, e-mail nem documentos. Respeite os termos do site; este Actor não é produto oficial do GetNinjas.

### Desenvolvimento

```bash
cd actors/getninjas-leads-scraper
npm install && npm test && npm run build
apify run
```

# Actor input Schema

## `query` (type: `string`):

Termo público, como na busca do site (ex.: eletricista, diarista, aula de inglês).

## `category` (type: `string`):

Slug da URL pública, ex. reformas-e-reparos/eletricista. Sobrescreve a busca se preenchido.

## `city` (type: `string`):

Cidade pública da página de categoria. Ex.: São Paulo.

## `state` (type: `string`):

UF (SP) ou nome (São Paulo). Monta /categoria/.../{uf}/{cidade}.

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

Limite rígido (teto 5.000).

## `searchUrl` (type: `string`):

Cole uma URL pública getninjas.com.br/categoria/.... Sobrescreve query/cidade.

## `useBrowser` (type: `boolean`):

Playwright só abre a categoria pública. CAPTCHA/Cloudflare persistente = fail closed.

## `proxyConfiguration` (type: `object`):

Padrão em produção: Apify RESIDENTIAL + país BR.

## Actor input object example

```json
{
  "query": "eletricista",
  "city": "São Paulo",
  "state": "SP",
  "maxItems": 20,
  "useBrowser": true,
  "proxyConfiguration": {
    "useApifyProxy": true,
    "apifyProxyGroups": [
      "RESIDENTIAL"
    ]
  }
}
```

# Actor output Schema

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

No description

# 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 = {
    "query": "eletricista",
    "city": "São Paulo",
    "state": "SP",
    "maxItems": 20,
    "proxyConfiguration": {
        "useApifyProxy": true,
        "apifyProxyGroups": [
            "RESIDENTIAL"
        ]
    }
};

// Run the Actor and wait for it to finish
const run = await client.actor("national_scrim/getninjas-leads-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 = {
    "query": "eletricista",
    "city": "São Paulo",
    "state": "SP",
    "maxItems": 20,
    "proxyConfiguration": {
        "useApifyProxy": True,
        "apifyProxyGroups": ["RESIDENTIAL"],
    },
}

# Run the Actor and wait for it to finish
run = client.actor("national_scrim/getninjas-leads-scraper").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 '{
  "query": "eletricista",
  "city": "São Paulo",
  "state": "SP",
  "maxItems": 20,
  "proxyConfiguration": {
    "useApifyProxy": true,
    "apifyProxyGroups": [
      "RESIDENTIAL"
    ]
  }
}' |
apify call national_scrim/getninjas-leads-scraper --silent --output-dataset

```

## MCP server setup

```json
{
    "mcpServers": {
        "apify": {
            "type": "http",
            "url": "https://mcp.apify.com/?tools=fetch-actor-details,national_scrim/getninjas-leads-scraper"
        }
    }
}
```

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/lvVgF6xHztV0CjFnU/builds/E597VhY09GhIR1ztR/openapi.json
