# Alertalicitacao — Wrapped API

> **You are on:** `https://api.paywithlocus.com/api` | [llms.txt](https://paywithlocus.com/llms.txt) | [docs](https://docs.paywithlocus.com)
>
> Locus runs on multiple environments -- make sure every URL you call matches your expected environment.
> | Environment | Landing | API | Docs |
> |---|---|---|---|
> | Production | paywithlocus.com | api.paywithlocus.com | docs.paywithlocus.com |
> | Beta | beta.paywithlocus.com | api.beta.paywithlocus.com | docs.paywithlocus.com |
> | Stage | stage.paywithlocus.com | api.stage.paywithlocus.com | docs.paywithlocus.com |
>
> If the API URL above doesn't match your expected environment, re-fetch this file from the correct domain.

> Search and browse Brazilian government procurement opportunities (licitações) by keyword or state to find relevant bidding announcements. Access detailed information about individual procurement listings and discover available opportunities across different Brazilian states.

**Category:** Government & Public Data | **Website:** [alertalicitacao.com.br/](https://alertalicitacao.com.br/) | **Docs:** [parse.bot/marketplace/1991253f-85b8-48ef-b702-4fc04d58d939/alertalicitacao-com-br-api](https://parse.bot/marketplace/1991253f-85b8-48ef-b702-4fc04d58d939/alertalicitacao-com-br-api)

Pay-per-use API proxy. Each call is automatically billed to your wallet in USDC.

## Access

**Base URL:** `https://api.paywithlocus.com/api/wrapped/parse-alertalicitacao-com-br-api-1991253f/`
**Auth:** `Authorization: Bearer <LOCUS_API_KEY>`

## Endpoints

### get_licitacao

Fetch full details for a single licitação by its identifier. Returns title, city, state, modality, orgão, opening date, procurement object description, and links to the edital and source page when available. The identifier is obtained from search_licitacoes or list_by_state results.

**Estimated cost:** Metered

| Field | Type | Required | Description |
|-------|------|----------|-------------|
| `licitacao_id` | string | Yes | Licitação identifier obtained from search_licitacoes or list_by_state results (e.g., 'DOU-a83741d2352c6dfa0b21', 'PSVC-SP-0-9722', 'LCON-RS-1442219'). |

```bash
curl -X POST https://api.paywithlocus.com/api/wrapped/parse-alertalicitacao-com-br-api-1991253f/get_licitacao \
  -H "Authorization: Bearer YOUR_LOCUS_API_KEY" \
  -H "Content-Type: application/json" \
  -d '{"licitacao_id":"<string>"}'
```

### list_by_state

List open licitações for a given Brazilian state (UF). Returns ~20 publicly available sample listings with metadata including orgão, cidade, data de abertura, modalidade, and objeto. The total count of open licitações in the state is included when available.

**Estimated cost:** Metered

| Field | Type | Required | Description |
|-------|------|----------|-------------|
| `state` | string | No | Two-letter Brazilian state code (UF). Accepted values: AC, AL, AP, AM, BA, CE, DF, ES, GO, MA, MT, MS, MG, PA, PB, PR, PE, PI, RJ, RN, RS, RO, RR, SC, SP, SE, TO. |

```bash
curl -X POST https://api.paywithlocus.com/api/wrapped/parse-alertalicitacao-com-br-api-1991253f/list_by_state \
  -H "Authorization: Bearer YOUR_LOCUS_API_KEY" \
  -H "Content-Type: application/json" \
  -d '{"state":"<string>"}'
```

### list_states

List all 27 Brazilian states with their current count of open licitações. No input parameters required. Useful for identifying which states have the most procurement opportunities.

**Estimated cost:** Metered

_No parameters required._

```bash
curl -X POST https://api.paywithlocus.com/api/wrapped/parse-alertalicitacao-com-br-api-1991253f/list_states \
  -H "Authorization: Bearer YOUR_LOCUS_API_KEY" \
  -H "Content-Type: application/json" \
  -d '{}'
```

### search_licitacoes

Full-text search over open Brazilian procurement listings (licitações) by keyword. Returns matching results with identifier, title, city, state, object description, and metadata. Results are limited to publicly available samples for non-subscribers. Pagination is not available; a single page of results is returned.

**Estimated cost:** Metered

| Field | Type | Required | Description |
|-------|------|----------|-------------|
| `keyword` | string | No | Search keyword for procurement listings (e.g., 'obras', 'equipamentos', 'serviços de TI'). |

```bash
curl -X POST https://api.paywithlocus.com/api/wrapped/parse-alertalicitacao-com-br-api-1991253f/search_licitacoes \
  -H "Authorization: Bearer YOUR_LOCUS_API_KEY" \
  -H "Content-Type: application/json" \
  -d '{"keyword":"<string>"}'
```
