# Superprof — 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 private tutors by subject and location, then access their detailed profiles with reviews, qualifications, pricing, and availability. Discover top-rated tutors featured on the platform to find the perfect match for your learning needs.

**Category:** Education | **Website:** [superprof.com/](https://superprof.com/) | **Docs:** [parse.bot/marketplace/d7cec93b-3591-4dbc-afa4-d3143f7793c6/superprof-com-api](https://parse.bot/marketplace/d7cec93b-3591-4dbc-afa4-d3143f7793c6/superprof-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-superprof-com-api-d7cec93b/`
**Auth:** `Authorization: Bearer <LOCUS_API_KEY>`

## Endpoints

### get_homepage_featured_tutors

List top-performing tutors featured on Superprof. Returns ambassador-level tutors with high ratings and review counts from the main mathematics/US listing page. No input parameters required.

**Estimated cost:** Metered

_No parameters required._

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

### get_tutor_profile

Get full details for a tutor profile by slug. Returns name, headline, subjects taught, hourly rate, rating, reviews, about text, and lesson methodology. The slug is the URL path segment without the domain and without the .html extension (obtainable from search_tutors results).

**Estimated cost:** Metered

| Field | Type | Required | Description |
|-------|------|----------|-------------|
| `slug` | string | Yes | Tutor profile slug from the URL path (without .html extension and without leading slash). Obtainable from search_tutors results slug field. |

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

### search_tutors

Search for tutors by subject and city on Superprof. Returns tutor cards with name, rating, hourly rate, and profile URL. Results are from the first page of the listing; pagination is not available. The city and subject are URL slugs (lowercase, hyphens for spaces).

**Estimated cost:** Metered

| Field | Type | Required | Description |
|-------|------|----------|-------------|
| `city` | string | No | City or region as a URL slug (e.g. 'new-york', 'los-angeles', 'united-states'). Spaces replaced with hyphens. |
| `subject` | string | No | Tutoring subject as a URL slug (e.g. 'mathematics', 'english', 'piano', 'chemistry'). Spaces replaced with hyphens. |

```bash
curl -X POST https://api.paywithlocus.com/api/wrapped/parse-superprof-com-api-d7cec93b/search_tutors \
  -H "Authorization: Bearer YOUR_LOCUS_API_KEY" \
  -H "Content-Type: application/json" \
  -d '{"city":"<string>","subject":"<string>"}'
```
