# Volo Sports — 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.

> Browse and discover sports programs, drop-in slots, leagues, and venues available on Volo Sports, with the ability to filter by city, sport, and program type to find activities that match your interests. Get detailed information about specific drop-in sessions, leagues, and venues to help you decide where and when to play.

**Category:** Sports | **Website:** [volosports.com/](https://volosports.com/) | **Docs:** [parse.bot/marketplace/0c4ddba7-3502-4883-85b3-4b0424e4e5d0/volosports-com-api](https://parse.bot/marketplace/0c4ddba7-3502-4883-85b3-4b0424e4e5d0/volosports-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-volosports-com-api-0c4ddba7/`
**Auth:** `Authorization: Bearer <LOCUS_API_KEY>`

## Endpoints

### get_drop_in_detail

Get full details for a single drop-in game, including pricing breakdowns for members and non-members. Returns game information with venue, sport, capacity, and a complete pricing structure showing fees, discounts, and totals.

**Estimated cost:** Metered

| Field | Type | Required | Description |
|-------|------|----------|-------------|
| `game_id` | string | Yes | The UUID of the game/slot. Obtain from list_drop_in_slots results[*].game_id. |

```bash
curl -X POST https://api.paywithlocus.com/api/wrapped/parse-volosports-com-api-0c4ddba7/get_drop_in_detail \
  -H "Authorization: Bearer YOUR_LOCUS_API_KEY" \
  -H "Content-Type: application/json" \
  -d '{"game_id":"<string>"}'
```

### get_league_detail

Get full details for a specific league including registration info, format, gender, competition levels, and pricing breakdowns for both individual and prepaid team registration. Pricing includes current phase, member price, and original price in cents.

**Estimated cost:** Metered

| Field | Type | Required | Description |
|-------|------|----------|-------------|
| `league_id` | string | Yes | The UUID of the league. Obtain from list_leagues results[*]._id. |

```bash
curl -X POST https://api.paywithlocus.com/api/wrapped/parse-volosports-com-api-0c4ddba7/get_league_detail \
  -H "Authorization: Bearer YOUR_LOCUS_API_KEY" \
  -H "Content-Type: application/json" \
  -d '{"league_id":"<string>"}'
```

### get_venue_detail

Get details for a specific venue including geographic coordinates and neighborhood. Returns the venue's address, latitude, longitude, and neighborhood name.

**Estimated cost:** Metered

| Field | Type | Required | Description |
|-------|------|----------|-------------|
| `venue_id` | string | Yes | The UUID of the venue. Obtain from list_venues results[*]._id. |

```bash
curl -X POST https://api.paywithlocus.com/api/wrapped/parse-volosports-com-api-0c4ddba7/get_venue_detail \
  -H "Authorization: Bearer YOUR_LOCUS_API_KEY" \
  -H "Content-Type: application/json" \
  -d '{"venue_id":"<string>"}'
```

### list_cities

List all cities where Volo Sports operates. Each city is an organization with feature flags indicating whether it supports private rentals and volunteering. Returns the complete set in alphabetical order; no pagination needed.

**Estimated cost:** Metered

_No parameters required._

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

### list_drop_in_slots

List available drop-in game slots for a city. Returns upcoming games with available spots, ordered by start time. Supports pagination via offset and sport filtering. Each slot includes venue, sport, capacity, and time information.

**Estimated cost:** Metered

| Field | Type | Required | Description |
|-------|------|----------|-------------|
| `city` | string | No | City name to filter by. Must match a city name from list_cities. |
| `limit` | integer | No | Maximum number of results to return. |
| `offset` | integer | No | Pagination offset for results. |
| `sport` | string | No | Sport name to filter by (e.g. Soccer, Volleyball, Softball, Flag Football). |

```bash
curl -X POST https://api.paywithlocus.com/api/wrapped/parse-volosports-com-api-0c4ddba7/list_drop_in_slots \
  -H "Authorization: Bearer YOUR_LOCUS_API_KEY" \
  -H "Content-Type: application/json" \
  -d '{"city":"<string>","limit":"<integer>","offset":"<integer>","sport":"<string>"}'
```

### list_leagues

List available leagues with open registration for a city. Returns paginated results ordered by start date. Each league includes sport, venue, neighborhood, registration count, and schedule information. Supports offset pagination and sport filtering.

**Estimated cost:** Metered

| Field | Type | Required | Description |
|-------|------|----------|-------------|
| `city` | string | No | City name to filter by. Must match a city name from list_cities. |
| `limit` | integer | No | Maximum number of results to return. |
| `offset` | integer | No | Pagination offset for results. |
| `sport` | string | No | Sport name to filter by (e.g. Soccer, Volleyball, Softball, Flag Football). |

```bash
curl -X POST https://api.paywithlocus.com/api/wrapped/parse-volosports-com-api-0c4ddba7/list_leagues \
  -H "Authorization: Bearer YOUR_LOCUS_API_KEY" \
  -H "Content-Type: application/json" \
  -d '{"city":"<string>","limit":"<integer>","offset":"<integer>","sport":"<string>"}'
```

### list_soccer_drop_in_slots

Convenience endpoint that filters drop-in game slots to Soccer only for a given city. Returns upcoming available soccer slots ordered by start time. Equivalent to calling list_drop_in_slots with sport=Soccer.

**Estimated cost:** Metered

| Field | Type | Required | Description |
|-------|------|----------|-------------|
| `city` | string | No | City name to filter by. Must match a city name from list_cities. |

```bash
curl -X POST https://api.paywithlocus.com/api/wrapped/parse-volosports-com-api-0c4ddba7/list_soccer_drop_in_slots \
  -H "Authorization: Bearer YOUR_LOCUS_API_KEY" \
  -H "Content-Type: application/json" \
  -d '{"city":"<string>"}'
```

### list_venues

List all venues available in a city, ordered alphabetically by name. Each venue includes its address and neighborhood. Returns the full list without pagination.

**Estimated cost:** Metered

| Field | Type | Required | Description |
|-------|------|----------|-------------|
| `city` | string | No | City name to filter by. Must match a city name from list_cities. |

```bash
curl -X POST https://api.paywithlocus.com/api/wrapped/parse-volosports-com-api-0c4ddba7/list_venues \
  -H "Authorization: Bearer YOUR_LOCUS_API_KEY" \
  -H "Content-Type: application/json" \
  -d '{"city":"<string>"}'
```
