# Tech Week — 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.

> Browse and filter Tech Week events by city, day, track, location, time, or keyword to find conferences, talks, and networking opportunities. Retrieve structured event data including titles, dates, venues, hosts, RSVP links, and schedule positions.

**Category:** Entertainment | **Website:** [www.tech-week.com/calendar/nyc](https://www.tech-week.com/calendar/nyc) | **Docs:** [parse.bot/marketplace/540756de-bec9-4bfc-8c2a-1d492603322c/tech-week-com-api](https://parse.bot/marketplace/540756de-bec9-4bfc-8c2a-1d492603322c/tech-week-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-tech-week-com-api-540756de/`
**Auth:** `Authorization: Bearer <LOCUS_API_KEY>`

## Endpoints

### get_events

Search and retrieve Tech Week events with optional filters for city, day, track, location, time, and text search. Supports pagination. Returns up to 48 events per page by default, sorted by time ascending. Filters are additive (AND logic). Track, location, time, theme, format, host, and sponsor accept comma-separated values for multi-select within each filter dimension.

**Estimated cost:** Metered

| Field | Type | Required | Description |
|-------|------|----------|-------------|
| `city` | string | No | City slug. |
| `day` | string | No | Filter by day: 'all' for all days, or a specific date in YYYY-MM-DD format (e.g. '2026-06-02'). |
| `featured` | string | No | Set to 'true' to only show featured events. |
| `format` | string | No | Comma-separated format filters. |
| `host` | string | No | Comma-separated host filters. |
| `limit` | integer | No | Maximum number of events to return. |
| `location` | string | No | Comma-separated neighborhood filters (e.g. 'Midtown,SoHo,Brooklyn'). |
| `page` | integer | No | Page number (1-based). |
| `query` | string | No | Search query to filter events by name/description. |
| `sponsor` | string | No | Comma-separated sponsor filters. |
| `theme` | string | No | Comma-separated theme filters. |
| `time` | string | No | Comma-separated time-of-day filters. |
| `track` | string | No | Comma-separated track slugs. |

```bash
curl -X POST https://api.paywithlocus.com/api/wrapped/parse-tech-week-com-api-540756de/get_events \
  -H "Authorization: Bearer YOUR_LOCUS_API_KEY" \
  -H "Content-Type: application/json" \
  -d '{"city":"<string>","day":"<string>","featured":"<string>","format":"<string>","host":"<string>","limit":"<integer>","location":"<string>","page":"<integer>","query":"<string>","sponsor":"<string>","theme":"<string>","time":"<string>","track":"<string>"}'
```
