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

> Search and discover community events happening in Austin, including concerts, festivals, exhibits, and family activities all in one place. Find exactly what you're looking for by browsing events from Visit Austin's official event listings.

**Category:** Entertainment | **Website:** [www.austintexas.org/events/](https://www.austintexas.org/events/) | **Docs:** [parse.bot/marketplace/c5f046c7-2298-4f52-a567-6a5ff3e9567f/austintexas-org-api](https://parse.bot/marketplace/c5f046c7-2298-4f52-a567-6a5ff3e9567f/austintexas-org-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-austintexas-org-api-c5f046c7/`
**Auth:** `Authorization: Bearer <LOCUS_API_KEY>`

## Endpoints

### search_events

Search community events in Austin, TX by date range and optional keyword. Returns paginated results with event name, date, description, URL, location, and categories. Results are auto-iterated; the SDK advances pages automatically.

**Estimated cost:** Metered

| Field | Type | Required | Description |
|-------|------|----------|-------------|
| `end_date` | string | No | End of date range in YYYY-MM-DD format. Defaults to 7 days after start_date. |
| `keyword` | string | No | Free-text search term to filter events by title or description. |
| `limit` | integer | No | Maximum number of events per page. |
| `page` | integer | No | Page number for pagination (1-based). |
| `start_date` | string | No | Start of date range in YYYY-MM-DD format. Defaults to today (UTC). |

```bash
curl -X POST https://api.paywithlocus.com/api/wrapped/parse-austintexas-org-api-c5f046c7/search_events \
  -H "Authorization: Bearer YOUR_LOCUS_API_KEY" \
  -H "Content-Type: application/json" \
  -d '{"end_date":"<string>","keyword":"<string>","limit":"<integer>","page":"<integer>","start_date":"<string>"}'
```
