# Nextdoororiginals — 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 nextdoororiginals.co.

**Category:** Entertainment | **Website:** [nextdoororiginals.co/cdn/shop/files/web_banner.png?v=1781657694&width=2450](https://nextdoororiginals.co/cdn/shop/files/web_banner.png?v=1781657694&width=2450) | **Docs:** [parse.bot/marketplace/7a46fd87-ce30-461f-9385-ab30a7ed084e/nextdoororiginals-co-api](https://parse.bot/marketplace/7a46fd87-ce30-461f-9385-ab30a7ed084e/nextdoororiginals-co-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-nextdoororiginals-co-api-7a46fd87/`
**Auth:** `Authorization: Bearer <LOCUS_API_KEY>`

## Endpoints

### get_event

Retrieve details for a single event from its page URL. Extracts structured data including title, date, time, venue, location, description, and a primary image. Fields that are not present on the page return null. Venue and location are parsed from the event description text when structured patterns are found (e.g. 'at <Venue> in <Location>').

**Estimated cost:** Metered

| Field | Type | Required | Description |
|-------|------|----------|-------------|
| `url` | string | Yes | Full URL of the event page on nextdoororiginals.co (e.g. https://nextdoororiginals.co/pages/party-1). |

```bash
curl -X POST https://api.paywithlocus.com/api/wrapped/parse-nextdoororiginals-co-api-7a46fd87/get_event \
  -H "Authorization: Bearer YOUR_LOCUS_API_KEY" \
  -H "Content-Type: application/json" \
  -d '{"url":"<string>"}'
```
