# Eliteprospects — 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 hockey players and discover top prospects with detailed biographies and performance statistics. Find comprehensive information about player rankings and career details to stay updated on elite hockey talent.

**Category:** Sports | **Website:** [eliteprospects.com/](https://eliteprospects.com/) | **Docs:** [parse.bot/marketplace/3ba08450-29f5-4688-9c03-6662454abb2f/eliteprospects-com-api](https://parse.bot/marketplace/3ba08450-29f5-4688-9c03-6662454abb2f/eliteprospects-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-eliteprospects-com-api-3ba08450/`
**Auth:** `Authorization: Bearer <LOCUS_API_KEY>`

## Endpoints

### get_player_details

Retrieve detailed biographical information for a single player by EliteProspects ID and slug. Returns position, nationality, physical attributes, current team, league, and profile metadata. The id and slug come from search_players results.

**Estimated cost:** Metered

| Field | Type | Required | Description |
|-------|------|----------|-------------|
| `player_id` | string | Yes | EliteProspects player ID (e.g., '183442') |
| `slug` | string | Yes | Player slug from search results (e.g., 'connor-mcdavid') |

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

### get_top_prospects

Retrieve the top 100 prospects from the EliteProspects consolidated draft ranking for a given year. Each prospect includes rank, biographical details (position, nationality, height, weight), and season performance statistics (games played, goals, assists, points, penalty minutes). Omitting year returns the latest available consolidated ranking.

**Estimated cost:** Metered

| Field | Type | Required | Description |
|-------|------|----------|-------------|
| `year` | string | No | Draft year to filter rankings (e.g., '2025'). Omitting returns the latest consolidated ranking. |

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

### search_players

Full-text search over EliteProspects player database by name or keyword. Returns up to 25 matching players with their IDs, slugs, and profile URLs. Each result carries the slug and id needed for get_player_details.

**Estimated cost:** Metered

| Field | Type | Required | Description |
|-------|------|----------|-------------|
| `query` | string | Yes | Player name or search keyword (e.g., 'Connor McDavid') |

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