# Gigsalad — 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 for entertainers, musicians, and event services by category and location to find the perfect performer for your party or event, complete with ratings, pricing, and direct contact information. View detailed entertainer profiles to compare options and book your entertainment.

**Category:** Entertainment | **Website:** [www.gigsalad.com/](https://www.gigsalad.com/) | **Docs:** [parse.bot/marketplace/b89b5f02-b908-47f2-8740-a93280d48752/gigsalad-com-api](https://parse.bot/marketplace/b89b5f02-b908-47f2-8740-a93280d48752/gigsalad-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-gigsalad-com-api-b89b5f02/`
**Auth:** `Authorization: Bearer <LOCUS_API_KEY>`

## Endpoints

### get_entertainer_profile

Get detailed profile information for a specific entertainer including bio, ratings, pricing, travel range, badges, and reviews. Uses the profile_slug returned by search_entertainers. Each profile fetch is a separate round-trip. Returns structured data extracted from JSON-LD and HTML.

**Estimated cost:** Metered

| Field | Type | Required | Description |
|-------|------|----------|-------------|
| `profile_slug` | string | Yes | The entertainer's profile slug from search_entertainers results (e.g., 'parallel_attractions_los_angeles'). Can also be a full GigSalad profile URL. |

```bash
curl -X POST https://api.paywithlocus.com/api/wrapped/parse-gigsalad-com-api-b89b5f02/get_entertainer_profile \
  -H "Authorization: Bearer YOUR_LOCUS_API_KEY" \
  -H "Content-Type: application/json" \
  -d '{"profile_slug":"<string>"}'
```

### list_categories

List all available entertainer categories and subcategories with their search keywords. Returns a static mapping of parent categories to subcategories. Use the returned keywords as the 'category' parameter in search_entertainers.

**Estimated cost:** Metered

_No parameters required._

```bash
curl -X POST https://api.paywithlocus.com/api/wrapped/parse-gigsalad-com-api-b89b5f02/list_categories \
  -H "Authorization: Bearer YOUR_LOCUS_API_KEY" \
  -H "Content-Type: application/json" \
  -d '{}'
```

### search_entertainers

Search for entertainers by category and location. Returns a paginated list of entertainers with ratings, pricing, and profile links. Page 1 returns approximately 32 results; each additional page loads more via Livewire pagination. Use keywords like 'dj', 'comedian', 'magician', 'band' for the category, or slug format like 'Disc-Jockeys-DJs/Event-DJ'.

**Estimated cost:** Metered

| Field | Type | Required | Description |
|-------|------|----------|-------------|
| `category` | string | No | Type of entertainer to search for. Use keywords like 'dj', 'comedian', 'magician', 'band', 'singer', 'dancer', 'clown', 'face painter', etc. Or use slug format like 'Disc-Jockeys-DJs/Event-DJ'. |
| `location` | string | Yes | Location to search in. Format: 'City, ST' (e.g., 'New York City, NY', 'Chicago, IL', 'Los Angeles, CA'). Must include a US state code or state name. |
| `page` | integer | No | Page number for pagination. Page 1 returns ~32 results, each additional page adds ~16 more via Livewire load-more. |

```bash
curl -X POST https://api.paywithlocus.com/api/wrapped/parse-gigsalad-com-api-b89b5f02/search_entertainers \
  -H "Authorization: Bearer YOUR_LOCUS_API_KEY" \
  -H "Content-Type: application/json" \
  -d '{"category":"<string>","location":"<string>","page":"<integer>"}'
```
