# Classforkids — 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 explore kids clubs, classes, camps, and activities across the UK by location or club name. Access schedules, pricing, availability, and direct booking links, with detailed information for each club all in one place.

**Category:** Education | **Website:** [classforkids.io/](https://classforkids.io/) | **Docs:** [parse.bot/marketplace/8bba4ffc-1647-40d0-933c-eedff1d4f14a/classforkids-io-api](https://parse.bot/marketplace/8bba4ffc-1647-40d0-933c-eedff1d4f14a/classforkids-io-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-classforkids-io-api-8bba4ffc/`
**Auth:** `Authorization: Bearer <LOCUS_API_KEY>`

## Endpoints

### get_club_schedule

Get detailed schedule, classes, camps, pricing, capacity, and booking info for a specific kids club. Returns term-organized class schedules with times, venues, age ranges, availability (spots/waiting list), trial pricing, and camp details with weekly pricing.

**Estimated cost:** Metered

| Field | Type | Required | Description |
|-------|------|----------|-------------|
| `club_slug` | string | Yes | Club slug identifier (e.g., 'creative-writing-club', 'flyingfantastic'). Obtained from the 'slug' field in search_clubs results. |

```bash
curl -X POST https://api.paywithlocus.com/api/wrapped/parse-classforkids-io-api-8bba4ffc/get_club_schedule \
  -H "Authorization: Bearer YOUR_LOCUS_API_KEY" \
  -H "Content-Type: application/json" \
  -d '{"club_slug":"<string>"}'
```

### search_clubs

Search for kids clubs, classes, and camps by location. Returns clubs and camps sorted by distance with details including name, description, age range, activities, venue, logo, and booking URL. Supports pagination and optional activity type filtering. If latitude/longitude not provided, automatically geocodes the location.

**Estimated cost:** Metered

| Field | Type | Required | Description |
|-------|------|----------|-------------|
| `activity_type` | string | No | Filter by activity type |
| `country_code` | string | No | Country code to filter results (e.g., 'GB', 'IE') |
| `latitude` | string | No | Latitude for search center. Auto-geocoded from location if not provided. |
| `limit` | integer | No | Number of results per page |
| `location` | string | Yes | Location name (e.g., 'London', 'Edinburgh') |
| `longitude` | string | No | Longitude for search center. Auto-geocoded from location if not provided. |
| `page` | integer | No | Page number for pagination |

```bash
curl -X POST https://api.paywithlocus.com/api/wrapped/parse-classforkids-io-api-8bba4ffc/search_clubs \
  -H "Authorization: Bearer YOUR_LOCUS_API_KEY" \
  -H "Content-Type: application/json" \
  -d '{"activity_type":"<string>","country_code":"<string>","latitude":"<string>","limit":"<integer>","location":"<string>","longitude":"<string>","page":"<integer>"}'
```

### search_locations

Search for locations to get coordinates for club search. Returns matching locations with latitude/longitude needed for the search_clubs endpoint. Each location includes name, city, county, country, and coordinates.

**Estimated cost:** Metered

| Field | Type | Required | Description |
|-------|------|----------|-------------|
| `country` | string | No | Country code for location search (e.g., 'GB', 'IE') |
| `query` | string | Yes | Location search query (e.g., 'London', 'Manchester', 'Edinburgh') |

```bash
curl -X POST https://api.paywithlocus.com/api/wrapped/parse-classforkids-io-api-8bba4ffc/search_locations \
  -H "Authorization: Bearer YOUR_LOCUS_API_KEY" \
  -H "Content-Type: application/json" \
  -d '{"country":"<string>","query":"<string>"}'
```
