# Isu Skating — 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 figure skating athletes by name to find their profiles and information from the International Skating Union's official database. Quickly look up skaters across all disciplines and competition levels to access verified athlete data.

**Category:** Sports | **Website:** [isu-skating.com/figure-skating/skaters/](https://isu-skating.com/figure-skating/skaters/) | **Docs:** [parse.bot/marketplace/0accb643-079b-424c-947c-4a7873b69089/isu-skating-com-api](https://parse.bot/marketplace/0accb643-079b-424c-947c-4a7873b69089/isu-skating-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-isu-skating-com-api-0accb643/`
**Auth:** `Authorization: Bearer <LOCUS_API_KEY>`

## Endpoints

### search_skaters

Search figure skating athletes (individuals and teams) by name. Results include both individual skaters and pair/ice dance teams whose member names match. Each result carries nationality, discipline, and status. Results are auto-iterated across pages.

**Estimated cost:** Metered

| Field | Type | Required | Description |
|-------|------|----------|-------------|
| `name` | string | Yes | Athlete name or partial name to search for (e.g. 'Hanyu', 'Kim'). |
| `page` | integer | No | Page number for paginated results. |

```bash
curl -X POST https://api.paywithlocus.com/api/wrapped/parse-isu-skating-com-api-0accb643/search_skaters \
  -H "Authorization: Bearer YOUR_LOCUS_API_KEY" \
  -H "Content-Type: application/json" \
  -d '{"name":"<string>","page":"<integer>"}'
```
