# Guia Curitiba — 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.

> Find and explore events happening in Curitiba by browsing comprehensive listings or looking up specific event details from the municipal platform. Discover local concerts, festivals, exhibitions, and activities with full information about each event.

**Category:** Entertainment | **Website:** [guia.curitiba.pr.gov.br/evento/listar/?categoriaid=22](https://guia.curitiba.pr.gov.br/evento/listar/?categoriaid=22) | **Docs:** [parse.bot/marketplace/457523bd-1d9e-4b53-8030-5a3ab8b4745a/guia-curitiba-pr-gov-br-api](https://parse.bot/marketplace/457523bd-1d9e-4b53-8030-5a3ab8b4745a/guia-curitiba-pr-gov-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-guia-curitiba-pr-gov-br-api-457523bd/`
**Auth:** `Authorization: Bearer <LOCUS_API_KEY>`

## Endpoints

### get_event

Retrieves full event details including precise start/end dates with times, venue, street address, ticket info, modality, organizer, full description text, observation notes, venue amenities, and featured image. Requires slug and event_id from list_events results.

**Estimated cost:** Metered

| Field | Type | Required | Description |
|-------|------|----------|-------------|
| `event_id` | string | Yes | Numeric event identifier (from list_events results). |
| `slug` | string | Yes | URL slug of the event (from list_events results). |

```bash
curl -X POST https://api.paywithlocus.com/api/wrapped/parse-guia-curitiba-pr-gov-br-api-457523bd/get_event \
  -H "Authorization: Bearer YOUR_LOCUS_API_KEY" \
  -H "Content-Type: application/json" \
  -d '{"event_id":"<string>","slug":"<string>"}'
```

### list_events

Lists events by category. Returns paginated event summaries including title, venue, date range, ticket info, and image. Each result carries a slug and event_id for use with get_event. Results are auto-iterated; each page returns up to 9 events.

**Estimated cost:** Metered

| Field | Type | Required | Description |
|-------|------|----------|-------------|
| `category_id` | string | Yes | Numeric category ID for filtering events (e.g. 22 for Festas e shows). |
| `page` | integer | No | Zero-based page index for pagination. |

```bash
curl -X POST https://api.paywithlocus.com/api/wrapped/parse-guia-curitiba-pr-gov-br-api-457523bd/list_events \
  -H "Authorization: Bearer YOUR_LOCUS_API_KEY" \
  -H "Content-Type: application/json" \
  -d '{"category_id":"<string>","page":"<integer>"}'
```
