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

> Access data from partiful.com.

**Category:** Entertainment | **Website:** [partiful.com/e/gCWfz67jiLTLLtdswmxX?](https://partiful.com/e/gCWfz67jiLTLLtdswmxX?) | **Docs:** [parse.bot/marketplace/1916ad6d-b233-498f-b0c4-3614559f2e91/partiful-com-api](https://parse.bot/marketplace/1916ad6d-b233-498f-b0c4-3614559f2e91/partiful-com-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-partiful-com-api-1916ad6d/`
**Auth:** `Authorization: Bearer <LOCUS_API_KEY>`

## Endpoints

### get_event

Retrieve full details for a Partiful event given its URL or event ID. Returns structured event data including title, description, start/end times, location with coordinates, organiser name, banner image URL, and suburb. The event URL is the public sharing link (e.g. https://partiful.com/e/ABC123). Events that have been removed return a 404 upstream error.

**Estimated cost:** Metered

| Field | Type | Required | Description |
|-------|------|----------|-------------|
| `event_url` | string | Yes | Partiful event URL (e.g. https://partiful.com/e/gCWfz67jiLTLLtdswmxX) or bare event ID. |

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