# Noomii — 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 professional coaches across different categories, view detailed coach profiles, and filter options by location to find the right coaching match for your needs. Access comprehensive information about available coaches including their specialties and geographic availability through the Noomii professional directory.

**Category:** Business Directories | **Website:** [noomii.com/](https://noomii.com/) | **Docs:** [parse.bot/marketplace/3ef2c0cb-1a70-419c-a60a-4e3d9ffee9f6/noomii-com-api](https://parse.bot/marketplace/3ef2c0cb-1a70-419c-a60a-4e3d9ffee9f6/noomii-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-noomii-com-api-3ef2c0cb/`
**Auth:** `Authorization: Bearer <LOCUS_API_KEY>`

## Endpoints

### get_coach_profile

Returns the full detailed profile for a single coach including bio, contact information, specialties, hourly rate, and website link. Requires the coach slug from search results.

**Estimated cost:** Metered

| Field | Type | Required | Description |
|-------|------|----------|-------------|
| `slug` | string | Yes | Coach profile slug from search_coaches results (e.g. 'liz-wolfe', 'todd-gorishek'). |

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

### get_location_filter_options

Returns available location filter options (US states and Canadian provinces) for a given category page. Each option includes the location name, slug, and count of coaches in that location.

**Estimated cost:** Metered

| Field | Type | Required | Description |
|-------|------|----------|-------------|
| `category_slug` | string | No | Category slug to get location filters for (e.g. 'life-coaches', 'business-coaches'). |

```bash
curl -X POST https://api.paywithlocus.com/api/wrapped/parse-noomii-com-api-3ef2c0cb/get_location_filter_options \
  -H "Authorization: Bearer YOUR_LOCUS_API_KEY" \
  -H "Content-Type: application/json" \
  -d '{"category_slug":"<string>"}'
```

### list_coach_categories

Returns all available coach category types with their slugs and coach counts from the directory sidebar. One-page response; no pagination parameters.

**Estimated cost:** Metered

_No parameters required._

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

### search_coaches

Search for coaches by category and location. Returns paginated results with coach summaries including name, specialties, score, and bio excerpt. Category defaults to 'life-coaches' when omitted. Location is optional. Paginated by page number; has_next indicates more results.

**Estimated cost:** Metered

| Field | Type | Required | Description |
|-------|------|----------|-------------|
| `category_slug` | string | No | Category slug from list_coach_categories (e.g. 'life-coaches', 'business-coaches', 'career-coaches'). Omitting defaults to 'life-coaches'. |
| `location_slug` | string | No | Location slug from get_location_filter_options (e.g. 'california', 'new_york', 'ontario'). |
| `page` | integer | No | Page number for pagination. |

```bash
curl -X POST https://api.paywithlocus.com/api/wrapped/parse-noomii-com-api-3ef2c0cb/search_coaches \
  -H "Authorization: Bearer YOUR_LOCUS_API_KEY" \
  -H "Content-Type: application/json" \
  -d '{"category_slug":"<string>","location_slug":"<string>","page":"<integer>"}'
```
