# Diariodarepublica — 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 retrieve official Portuguese legislation, decrees, and resolutions published in the Diário da República, organized by publication series and date. Browse acts from both Serie I and Serie II to stay updated on the latest government publications and legal announcements.

**Category:** Government & Public Data | **Website:** [diariodarepublica.pt/dr/home](https://diariodarepublica.pt/dr/home) | **Docs:** [parse.bot/marketplace/8f10c47d-6521-4bda-b2fb-bebb0d84afd7/diariodarepublica-pt-api](https://parse.bot/marketplace/8f10c47d-6521-4bda-b2fb-bebb0d84afd7/diariodarepublica-pt-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-diariodarepublica-pt-api-8f10c47d/`
**Auth:** `Authorization: Bearer <LOCUS_API_KEY>`

## Endpoints

### get_acts_by_date

Get all published acts from both Serie I and Serie II for a specific date. Combines results from both series into a single response with per-serie counts. Useful for a complete view of all official publications on a given day.

**Estimated cost:** Metered

| Field | Type | Required | Description |
|-------|------|----------|-------------|
| `date` | string | Yes | Publication date in YYYY-MM-DD format. |

```bash
curl -X POST https://api.paywithlocus.com/api/wrapped/parse-diariodarepublica-pt-api-8f10c47d/get_acts_by_date \
  -H "Authorization: Bearer YOUR_LOCUS_API_KEY" \
  -H "Content-Type: application/json" \
  -d '{"date":"<string>"}'
```

### get_serie1_acts

Get all Serie I (1ª Série) acts published on a specific date. Serie I contains laws, decree-laws, resolutions, and other primary legislation. Returns the list of acts with metadata including type, emitter, summary, and associated Diário issue. Dates without publications return an empty acts array.

**Estimated cost:** Metered

| Field | Type | Required | Description |
|-------|------|----------|-------------|
| `date` | string | Yes | Publication date in YYYY-MM-DD format. |

```bash
curl -X POST https://api.paywithlocus.com/api/wrapped/parse-diariodarepublica-pt-api-8f10c47d/get_serie1_acts \
  -H "Authorization: Bearer YOUR_LOCUS_API_KEY" \
  -H "Content-Type: application/json" \
  -d '{"date":"<string>"}'
```

### get_serie2_acts

Get Serie II (2ª Série) Diário issues published on a specific date. Serie II contains administrative acts, appointments, notices, and other secondary publications. Returns diario-level metadata listing the issues for that date, plus any detailed acts extracted from Elasticsearch.

**Estimated cost:** Metered

| Field | Type | Required | Description |
|-------|------|----------|-------------|
| `date` | string | Yes | Publication date in YYYY-MM-DD format. |

```bash
curl -X POST https://api.paywithlocus.com/api/wrapped/parse-diariodarepublica-pt-api-8f10c47d/get_serie2_acts \
  -H "Authorization: Bearer YOUR_LOCUS_API_KEY" \
  -H "Content-Type: application/json" \
  -d '{"date":"<string>"}'
```
