# Therapytribe — 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 therapists in your area and access their credentials, specialties, pricing, and client focus areas all in one place. Find the right mental health professional by filtering through available locations and detailed therapy type information.

**Category:** Healthcare | **Website:** [therapytribe.com/](https://therapytribe.com/) | **Docs:** [parse.bot/marketplace/146f527a-d387-44c0-9d1e-e18973a87149/therapytribe-com-api](https://parse.bot/marketplace/146f527a-d387-44c0-9d1e-e18973a87149/therapytribe-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-therapytribe-com-api-146f527a/`
**Auth:** `Authorization: Bearer <LOCUS_API_KEY>`

## Endpoints

### get_locations

Fetch the list of available locations (cities) with their slugs for searching therapists on TherapyTribe. Returns all US cities that have therapist listings. Each location has a name, a slug (used as input to search_therapists), and the full URL on the site.

**Estimated cost:** Metered

_No parameters required._

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

### get_therapist_details

Fetch detailed information for a specific therapist by profile URL. Returns credentials, specialties, treatment approaches, client focus areas, location, finances, and education details. The therapist_url comes from search_therapists results.

**Estimated cost:** Metered

| Field | Type | Required | Description |
|-------|------|----------|-------------|
| `therapist_url` | string | Yes | The full URL of a therapist profile page from search_therapists results (e.g. 'https://www.therapytribe.com/listing/jaylan-abd-elrahman-psychologist-chicago-illinois-united-states-60608/'). |

```bash
curl -X POST https://api.paywithlocus.com/api/wrapped/parse-therapytribe-com-api-146f527a/get_therapist_details \
  -H "Authorization: Bearer YOUR_LOCUS_API_KEY" \
  -H "Content-Type: application/json" \
  -d '{"therapist_url":"<string>"}'
```

### search_therapists

Search for therapists in a specific location by slug, with optional keyword filtering. Returns a list of full therapist profile URLs and the total count. The location_slug comes from get_locations results. Keyword filters by specialty area (e.g. 'anxiety', 'depression', 'trauma').

**Estimated cost:** Metered

| Field | Type | Required | Description |
|-------|------|----------|-------------|
| `keyword` | string | No | Optional keyword to filter results by specialty area (e.g. 'anxiety', 'depression', 'trauma'). Omitting returns all therapists in the location. |
| `location_slug` | string | Yes | The location slug from get_locations (e.g. 'illinois-il-chicago', 'texas-tx-austin', 'georgia-ga-atlanta'). |

```bash
curl -X POST https://api.paywithlocus.com/api/wrapped/parse-therapytribe-com-api-146f527a/search_therapists \
  -H "Authorization: Bearer YOUR_LOCUS_API_KEY" \
  -H "Content-Type: application/json" \
  -d '{"keyword":"<string>","location_slug":"<string>"}'
```
