# Brazil PNCP Awarded Contracts (`downright_blessing/brazil-pncp-awarded-contracts`) Actor

Fetch Brazilian public contracts (contratos públicos PNCP) with buyer, supplier CNPJ, vigência and BRL valorGlobal from the official PNCP API. Structured JSON for awarded-contract monitoring and spend analytics.

- **URL**: https://apify.com/downright\_blessing/brazil-pncp-awarded-contracts.md
- **Developed by:** [Joao Pedro Rosado](https://apify.com/downright_blessing) (community)
- **Categories:** Automation, Developer tools
- **Stats:** 2 total users, 1 monthly users, 0.0% runs succeeded, 0 bookmarks
- **User rating**: No ratings yet

## Pricing

from $2.00 / 1,000 contract rows

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/actors/running/actors-in-store.md#pay-per-event

## What's an Apify Actor?

An Actor is a serverless cloud program that runs on the Apify platform. It has two run modes.
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.

Apify vocabulary and the platform model are defined once, in the agent quickstart at https://apify.com/agents.md.

## 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.

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 examples already wired to this Actor's own input schema, see the [API](#api) section below.

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`).

# README

## Brazil PNCP Awarded Contracts

Fetch **awarded contracts** and published **PNCP contratos** — Brazilian **public contracts** with buyer, supplier, term and BRL values — from the **official PNCP public API**. Structured JSON for contract monitoring, supplier intel and public-spend analytics without login, browser or HTML scraping.

This Actor reads the PNCP contracts feed (`/v1/contratos`). It returns published contract / commitment rows as exposed by PNCP (objeto, órgão, fornecedor, vigência, `valorGlobal`). It does **not** guarantee that every row is a formal award *ata*; use supplier and value fields when the API provides them.

**Store:** [brazil-pncp-awarded-contracts](https://apify.com/downright_blessing/brazil-pncp-awarded-contracts) · **Sibling:** [PNCP Tenders Monitor](https://apify.com/downright_blessing/brazil-pncp-tenders-monitor)

***

### What it does

1. Calls `https://pncp.gov.br/api/consulta/v1/contratos` for the `dateFrom`–`dateTo` publication window.
2. Optionally filters by UF, buyer CNPJ, supplier CNPJ and keywords (object / supplier name).
3. Normalizes each row into a stable Dataset schema with a `pncpUrl` when identifiers allow.

### Who it's for

- Procurement and bid desks tracking **public contracts Brazil** after award
- Supplier / competitor intelligence on government sales
- Compliance and spend-analytics pipelines
- Upsell workflows that already monitor tenders with the [PNCP Tenders Monitor](https://apify.com/downright_blessing/brazil-pncp-tenders-monitor)

### Input summary

| Field | Required | Description |
|---|---|---|
| `dateFrom` / `dateTo` | yes | Contract publication window as `YYYYMMDD` |
| `uf` | no | Two-letter state (`SP`, `RJ`, …) |
| `orgaoCnpj` | no | Buyer CNPJ |
| `fornecedorCnpj` | no | Supplier CNPJ |
| `keywords` | no | Match ANY term in contract object or supplier name |
| `maxItems` | no | Hard Dataset cap (default 100) |
| `pageSize` | no | API page size 10–50 (default 50) |

### Output fields

One Dataset row per published contract. Key fields:

`numeroControlePNCP`, `contratoId`, `numeroContratoEmpenho`, `anoContrato`, `sequencialContrato`, `processo`, `objetoContrato`, `tipoContratoId`, `dataPublicacaoPncp`, `dataAssinatura`, `vigenciaInicio`, `vigenciaFim`, `valorInicial`, `valorGlobal`, `valorParcela`, `currency` (`BRL`), `fornecedorCnpj`, `fornecedorRazaoSocial`, `orgaoCnpj`, `orgaoRazaoSocial`, `uf`, `municipio`, `linkSistemaOrigem`, `pncpUrl`, `scrapedAt`, `recordType` (`published-contract`).

### Pricing

**Pay-per-event** is already set on the Store (Actor start + result rows). Use `maxItems` as your spend cap. See the Actor’s Store pricing panel for current event prices.

### Quick start (Apify Console)

1. Open [brazil-pncp-awarded-contracts](https://apify.com/downright_blessing/brazil-pncp-awarded-contracts) → **Start**.
2. Set `dateFrom` / `dateTo` (`YYYYMMDD`).
3. Optionally add `uf`, `orgaoCnpj`, `fornecedorCnpj` or `keywords`.
4. Cap with `maxItems` → Run → export the Dataset.

```json
{
  "dateFrom": "20260901",
  "dateTo": "20260910",
  "uf": "SP",
  "keywords": ["software"],
  "maxItems": 100
}
```

### Related Actors

- [Brazil PNCP Public Tenders Monitor](https://apify.com/downright_blessing/brazil-pncp-tenders-monitor) — notices / editais
- [Brazil CEIS/CNEP Sanctions Delta](https://apify.com/downright_blessing/brazil-ceis-cnep-sanctions-delta)
- [Brazil TCU Acórdãos Keyword Monitor](https://apify.com/downright_blessing/brazil-tcu-acordaos-keyword-monitor)
- [Brazil NCM / TIPI Lookup](https://apify.com/downright_blessing/brazil-ncm-tipi-lookup)

### Legal / data source

Official **PNCP** public Consulta API — Brazilian government open procurement data. No credentials. Respect rate limits and fair use. Not for harvesting private data beyond published contract fields.

***

### Português (resumo)

Consulta **contratos publicados** do **PNCP** pela API oficial (`/v1/contratos`): órgão, fornecedor, vigência e valores em BRL. Filtra por período, UF, CNPJ e palavras-chave. Complementa o monitor de licitações. **Pay-per-event** na Store; use `maxItems` para limitar gasto.

# Actor input Schema

## `dateFrom` (type: `string`):

Inclusive PNCP contract publication date.

## `dateTo` (type: `string`):

Inclusive PNCP contract publication date.

## `uf` (type: `string`):

Optional two-letter state, e.g. SP or RJ.

## `orgaoCnpj` (type: `string`):

Optional 14-digit CNPJ of the contracting body.

## `fornecedorCnpj` (type: `string`):

Optional supplier CNPJ.

## `keywords` (type: `array`):

Keep contracts whose object or supplier name matches ANY term.

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

Hard dataset row cap.

## `pageSize` (type: `integer`):

Public API page size; 10–50 is accepted by this Actor.

## Actor input object example

```json
{
  "dateFrom": "20260901",
  "dateTo": "20260910",
  "keywords": [],
  "maxItems": 100,
  "pageSize": 50
}
```

# Actor output Schema

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

Default dataset items

# 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 = {
    "dateFrom": "20260901",
    "dateTo": "20260910"
};

// Run the Actor and wait for it to finish
const run = await client.actor("downright_blessing/brazil-pncp-awarded-contracts").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 = {
    "dateFrom": "20260901",
    "dateTo": "20260910",
}

# Run the Actor and wait for it to finish
run = client.actor("downright_blessing/brazil-pncp-awarded-contracts").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 '{
  "dateFrom": "20260901",
  "dateTo": "20260910"
}' |
apify call downright_blessing/brazil-pncp-awarded-contracts --silent --output-dataset

```

## MCP server setup

```json
{
    "mcpServers": {
        "apify": {
            "type": "http",
            "url": "https://mcp.apify.com/?tools=fetch-actor-details,downright_blessing/brazil-pncp-awarded-contracts"
        }
    }
}
```

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/xqmSEtkSxfvn8ftFE/builds/d92V2LBQjyD302ZNE/openapi.json
