# Bookingagentinfo — 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 celebrity profiles with their team contacts, endorsement deals, and social media insights to connect with talent and their representatives. Browse industry news, find brands, and access comprehensive information to manage talent relationships and track celebrity market trends.

**Category:** Entertainment | **Website:** [bookingagentinfo.com/](https://bookingagentinfo.com/) | **Docs:** [parse.bot/marketplace/4710c4fa-e93b-416b-aa49-7f42c7188ec7/bookingagentinfo-com-api](https://parse.bot/marketplace/4710c4fa-e93b-416b-aa49-7f42c7188ec7/bookingagentinfo-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-bookingagentinfo-com-api-4710c4fa/`
**Auth:** `Authorization: Bearer <LOCUS_API_KEY>`

## Endpoints

### browse_celebrity_directory

Browse the celebrity directory filtered by first letter of name. Returns paginated results of celebrities whose names start with the specified letter.

**Estimated cost:** Metered

| Field | Type | Required | Description |
|-------|------|----------|-------------|
| `letter` | string | No | Letter to filter by (A-Z or # for names starting with numbers). |
| `limit` | integer | No | Number of results per page. |
| `page` | integer | No | Page number for pagination. |

```bash
curl -X POST https://api.paywithlocus.com/api/wrapped/parse-bookingagentinfo-com-api-4710c4fa/browse_celebrity_directory \
  -H "Authorization: Bearer YOUR_LOCUS_API_KEY" \
  -H "Content-Type: application/json" \
  -d '{"letter":"<string>","limit":"<integer>","page":"<integer>"}'
```

### get_celebrity_endorsements

Retrieve publicly visible endorsement deals for a celebrity by slug. Returns up to 3 free endorsements plus an AI-generated summary of all deals. The total_endorsements count may exceed the visible endorsements array length (remaining are paywalled).

**Estimated cost:** Metered

| Field | Type | Required | Description |
|-------|------|----------|-------------|
| `slug` | string | Yes | Celebrity URL slug (e.g. taylor-swift). Obtainable from search_celebrities results. |

```bash
curl -X POST https://api.paywithlocus.com/api/wrapped/parse-bookingagentinfo-com-api-4710c4fa/get_celebrity_endorsements \
  -H "Authorization: Bearer YOUR_LOCUS_API_KEY" \
  -H "Content-Type: application/json" \
  -d '{"slug":"<string>"}'
```

### get_celebrity_representatives

Retrieve the publicly visible representatives (agents, managers, publicists) for a celebrity by slug. Returns first names only — full names, company names, phone, and email are paywalled on the source site. Permalink to representative pages is not available from this view.

**Estimated cost:** Metered

| Field | Type | Required | Description |
|-------|------|----------|-------------|
| `slug` | string | Yes | Celebrity URL slug (e.g. robert-pattinson). Obtainable from search_celebrities results. |

```bash
curl -X POST https://api.paywithlocus.com/api/wrapped/parse-bookingagentinfo-com-api-4710c4fa/get_celebrity_representatives \
  -H "Authorization: Bearer YOUR_LOCUS_API_KEY" \
  -H "Content-Type: application/json" \
  -d '{"slug":"<string>"}'
```

### get_celebrity_social_insights

Retrieve publicly available social media insights for a celebrity including platform follower counts and social handles. Data availability varies by celebrity — platforms and social_accounts are always present but may be empty for lesser-known profiles.

**Estimated cost:** Metered

| Field | Type | Required | Description |
|-------|------|----------|-------------|
| `slug` | string | Yes | Celebrity URL slug (e.g. taylor-swift). Obtainable from search_celebrities results. |

```bash
curl -X POST https://api.paywithlocus.com/api/wrapped/parse-bookingagentinfo-com-api-4710c4fa/get_celebrity_social_insights \
  -H "Authorization: Bearer YOUR_LOCUS_API_KEY" \
  -H "Content-Type: application/json" \
  -d '{"slug":"<string>"}'
```

### get_industry_news_feed

Retrieve latest industry news and deals from the dashboard.

**Estimated cost:** Metered

_No parameters required._

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

### search_brands

Search for brands endorsed by celebrities using the Typesense search index. Supports pagination.

**Estimated cost:** Metered

| Field | Type | Required | Description |
|-------|------|----------|-------------|
| `limit` | integer | No | Number of results per page. |
| `page` | integer | No | Page number for pagination. |
| `query` | string | No | Search keyword. Use * for all brands. |

```bash
curl -X POST https://api.paywithlocus.com/api/wrapped/parse-bookingagentinfo-com-api-4710c4fa/search_brands \
  -H "Authorization: Bearer YOUR_LOCUS_API_KEY" \
  -H "Content-Type: application/json" \
  -d '{"limit":"<integer>","page":"<integer>","query":"<string>"}'
```

### search_celebrities

Full-text search over the celebrity database via the Typesense index. Returns paginated results with name, slug, categories, nicknames, image, permalink, and bio preview. Use query='*' to browse all celebrities.

**Estimated cost:** Metered

| Field | Type | Required | Description |
|-------|------|----------|-------------|
| `limit` | integer | No | Number of results per page. |
| `page` | integer | No | Page number for pagination. |
| `query` | string | No | Search keyword. Use * for all celebrities. |

```bash
curl -X POST https://api.paywithlocus.com/api/wrapped/parse-bookingagentinfo-com-api-4710c4fa/search_celebrities \
  -H "Authorization: Bearer YOUR_LOCUS_API_KEY" \
  -H "Content-Type: application/json" \
  -d '{"limit":"<integer>","page":"<integer>","query":"<string>"}'
```

### search_representatives

Search for representatives (agents, managers, publicists) by keyword using the Typesense search index. Supports pagination.

**Estimated cost:** Metered

| Field | Type | Required | Description |
|-------|------|----------|-------------|
| `limit` | integer | No | Number of results per page. |
| `page` | integer | No | Page number for pagination. |
| `query` | string | No | Search keyword. Use * for all representatives. |

```bash
curl -X POST https://api.paywithlocus.com/api/wrapped/parse-bookingagentinfo-com-api-4710c4fa/search_representatives \
  -H "Authorization: Bearer YOUR_LOCUS_API_KEY" \
  -H "Content-Type: application/json" \
  -d '{"limit":"<integer>","page":"<integer>","query":"<string>"}'
```
