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

> Discover and explore Italian food festivals and local celebrations across different provinces with complete event details like dates, locations, descriptions, and contact information. Plan your culinary adventures by searching through listings of sagre and feste happening throughout Italy.

**Category:** Food & Dining | **Website:** [www.itinerarinelgusto.it/sagre-e-feste/bergamo](https://www.itinerarinelgusto.it/sagre-e-feste/bergamo) | **Docs:** [parse.bot/marketplace/e548e5f0-88e0-4b6c-aff3-0378be9db61a/itinerarinelgusto-it-api](https://parse.bot/marketplace/e548e5f0-88e0-4b6c-aff3-0378be9db61a/itinerarinelgusto-it-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-itinerarinelgusto-it-api-e548e5f0/`
**Auth:** `Authorization: Bearer <LOCUS_API_KEY>`

## Endpoints

### get_event

Retrieves full details of a specific sagra or festa by its URL slug. Returns event name, description, dates, location, city, address, category, region, organizer, contact information (phone, email), booking link, and external links.

**Estimated cost:** Metered

| Field | Type | Required | Description |
|-------|------|----------|-------------|
| `slug` | string | Yes | Event URL slug from list_events results (e.g. 'borgo-divino-in-tour-a-lovere-8453'). |

```bash
curl -X POST https://api.paywithlocus.com/api/wrapped/parse-itinerarinelgusto-it-api-e548e5f0/get_event \
  -H "Authorization: Bearer YOUR_LOCUS_API_KEY" \
  -H "Content-Type: application/json" \
  -d '{"slug":"<string>"}'
```

### list_events

Lists sagre and feste for a given Italian province. Results are paginated (15 per page) and include event name, dates, location, city, description, and category. Each event includes a URL slug usable with get_event for full details.

**Estimated cost:** Metered

| Field | Type | Required | Description |
|-------|------|----------|-------------|
| `page` | integer | No | Page number (1-based). |
| `province` | string | No | Italian province name in lowercase (e.g. 'bergamo', 'brescia', 'lecco'). |

```bash
curl -X POST https://api.paywithlocus.com/api/wrapped/parse-itinerarinelgusto-it-api-e548e5f0/list_events \
  -H "Authorization: Bearer YOUR_LOCUS_API_KEY" \
  -H "Content-Type: application/json" \
  -d '{"page":"<integer>","province":"<string>"}'
```
