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

> Find and connect with celebrities and influencers by searching a comprehensive database of their profiles, then access direct contact information for their agents, managers, and publicists. Quickly identify the right representatives to reach out to for collaborations, sponsorships, or media opportunities.

**Category:** Business Directories | **Website:** [thehandbook.com/](https://thehandbook.com/) | **Docs:** [parse.bot/marketplace/2b378c1b-5173-4eb9-b1d0-1f1ce876e953/thehandbook-com-api](https://parse.bot/marketplace/2b378c1b-5173-4eb9-b1d0-1f1ce876e953/thehandbook-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-thehandbook-com-api-2b378c1b/`
**Auth:** `Authorization: Bearer <LOCUS_API_KEY>`

## Endpoints

### get_profile_details

Extract detailed information and contact team details from a specific profile page. Returns the profile name, industry, and an array of team contacts (agents, managers, publicists). Some profiles may have no public contacts. Email and phone details are typically gated behind a paid subscription and will show placeholder text.

**Estimated cost:** Metered

| Field | Type | Required | Description |
|-------|------|----------|-------------|
| `url` | string | Yes | Full URL of the profile page (e.g. https://www.thehandbook.com/celebrity/taylor-swift/). |

```bash
curl -X POST https://api.paywithlocus.com/api/wrapped/parse-thehandbook-com-api-2b378c1b/get_profile_details \
  -H "Authorization: Bearer YOUR_LOCUS_API_KEY" \
  -H "Content-Type: application/json" \
  -d '{"url":"<string>"}'
```

### get_team_contacts

Convenience endpoint that searches for a profile by name and extracts its team contact details in one step. Internally searches for the query, selects the best celebrity match, and returns the full profile details including contacts. Some profiles may have no public contacts available.

**Estimated cost:** Metered

| Field | Type | Required | Description |
|-------|------|----------|-------------|
| `query` | string | Yes | Name of the person to find the team for (e.g. 'Beyonce'). |

```bash
curl -X POST https://api.paywithlocus.com/api/wrapped/parse-thehandbook-com-api-2b378c1b/get_team_contacts \
  -H "Authorization: Bearer YOUR_LOCUS_API_KEY" \
  -H "Content-Type: application/json" \
  -d '{"query":"<string>"}'
```

### search_profiles

Full-text search over The Handbook's database of celebrities, influencers, and industry professionals. Returns basic profile info including name, type, social handles, reach, and profile URL. Powered by Typesense; matches against profile_name and social_handles fields. Returns a single page of results per call.

**Estimated cost:** Metered

| Field | Type | Required | Description |
|-------|------|----------|-------------|
| `limit` | integer | No | Maximum number of results to return. |
| `query` | string | Yes | Search keyword such as a celebrity or influencer name. |

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