# Psychology Today — 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 therapists in Psychology Today's directory by US state and specialty, viewing details like their name, credentials, role, and location. Browse through paginated results to discover the right mental health professional for your needs.

**Category:** Healthcare | **Website:** [www.psychologytoday.com/us/therapists/alabama?category=adhd](https://www.psychologytoday.com/us/therapists/alabama?category=adhd) | **Docs:** [parse.bot/marketplace/de7e1bf8-5f9d-433a-9069-6ff403c18ea9/psychologytoday-com-api](https://parse.bot/marketplace/de7e1bf8-5f9d-433a-9069-6ff403c18ea9/psychologytoday-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-psychologytoday-com-api-de7e1bf8/`
**Auth:** `Authorization: Bearer <LOCUS_API_KEY>`

## Endpoints

### get_all_therapists

Fetch therapists across multiple pages of the directory by iterating pagination automatically with a 1-second delay between pages. Use max_pages to cap the number of pages fetched. Returns the combined list of therapists from all fetched pages.

**Estimated cost:** Metered

| Field | Type | Required | Description |
|-------|------|----------|-------------|
| `category` | string | No | Specialty category filter slug. Examples: adhd, anxiety, depression, ocd, ptsd, trauma-and-ptsd. |
| `max_pages` | integer | No | Maximum number of pages to fetch (safety limit to control request volume). |
| `state` | string | No | US state name in lowercase, hyphenated for multi-word states (used in URL path). Examples: alabama, california, new-york, north-carolina. |

```bash
curl -X POST https://api.paywithlocus.com/api/wrapped/parse-psychologytoday-com-api-de7e1bf8/get_all_therapists \
  -H "Authorization: Bearer YOUR_LOCUS_API_KEY" \
  -H "Content-Type: application/json" \
  -d '{"category":"<string>","max_pages":"<integer>","state":"<string>"}'
```

### get_therapists_page

Retrieve a single page of therapist listings from Psychology Today's directory. Each page returns up to 20 therapists with their name, credentials, professional role, and location. Filter by US state and specialty category. The directory paginates results with integer page numbers.

**Estimated cost:** Metered

| Field | Type | Required | Description |
|-------|------|----------|-------------|
| `category` | string | No | Specialty category filter slug. Examples: adhd, anxiety, depression, ocd, ptsd, trauma-and-ptsd. |
| `page` | integer | No | Page number (1-based). |
| `state` | string | No | US state name in lowercase, hyphenated for multi-word states (used in URL path). Examples: alabama, california, new-york, north-carolina. |

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