# Fiba — 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.

> Track FIBA basketball games and scores by date, dive into game details, explore competition schedules, check world rankings, and search for the latest basketball news all in one place. Stay updated on international basketball with comprehensive data covering live games, team information, and competitive standings.

**Category:** Sports | **Website:** [fiba.basketball/](https://fiba.basketball/) | **Docs:** [parse.bot/marketplace/3cc94645-3a11-40f6-bfcb-5e46f8304adc/fiba-basketball-api](https://parse.bot/marketplace/3cc94645-3a11-40f6-bfcb-5e46f8304adc/fiba-basketball-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-fiba-basketball-api-3cc94645/`
**Auth:** `Authorization: Bearer <LOCUS_API_KEY>`

## Endpoints

### get_competition_list

Retrieve a list of all active and calendar-status competitions and tournaments from FIBA. Returns comprehensive competition data including slugs, event IDs, dates, gender, zone, and status information.

**Estimated cost:** Metered

_No parameters required._

```bash
curl -X POST https://api.paywithlocus.com/api/wrapped/parse-fiba-basketball-api-3cc94645/get_competition_list \
  -H "Authorization: Bearer YOUR_LOCUS_API_KEY" \
  -H "Content-Type: application/json" \
  -d '{}'
```

### get_game_detail

Retrieve detailed information for a specific game by its GDAP Game ID, including quarter-by-quarter scores (periods), team info, venue, nominations (referees/officials), and competition context.

**Estimated cost:** Metered

| Field | Type | Required | Description |
|-------|------|----------|-------------|
| `game_id` | string | Yes | GDAP Game ID (numeric string). Obtainable from get_games_by_date results. |

```bash
curl -X POST https://api.paywithlocus.com/api/wrapped/parse-fiba-basketball-api-3cc94645/get_game_detail \
  -H "Authorization: Bearer YOUR_LOCUS_API_KEY" \
  -H "Content-Type: application/json" \
  -d '{"game_id":"<string>"}'
```

### get_games_by_date

Retrieve game schedule and results for a specific date. Returns an array of games scheduled for that date, which may be empty if no games are scheduled. Each game includes team information, scores, venue, and competition details.

**Estimated cost:** Metered

| Field | Type | Required | Description |
|-------|------|----------|-------------|
| `date` | string | No | Target date in YYYY-MM-DD format. If omitted, defaults to today's date. |

```bash
curl -X POST https://api.paywithlocus.com/api/wrapped/parse-fiba-basketball-api-3cc94645/get_games_by_date \
  -H "Authorization: Bearer YOUR_LOCUS_API_KEY" \
  -H "Content-Type: application/json" \
  -d '{"date":"<string>"}'
```

### get_world_rankings

Retrieve FIBA World Rankings by category. Returns an array of countries with their current world rank, points, and rank variation. Results may not be sorted by rank; clients should sort client-side if needed.

**Estimated cost:** Metered

| Field | Type | Required | Description |
|-------|------|----------|-------------|
| `category` | string | No | Ranking category. Accepted values: men, women, boys, girls. |

```bash
curl -X POST https://api.paywithlocus.com/api/wrapped/parse-fiba-basketball-api-3cc94645/get_world_rankings \
  -H "Authorization: Bearer YOUR_LOCUS_API_KEY" \
  -H "Content-Type: application/json" \
  -d '{"category":"<string>"}'
```

### search_news

Search FIBA news articles by keyword. Returns matching articles with title, description, date, slug, and relevance score. Ordered by search relevance.

**Estimated cost:** Metered

| Field | Type | Required | Description |
|-------|------|----------|-------------|
| `limit` | integer | No | Maximum number of results to return. |
| `query` | string | Yes | Search keyword (e.g. 'EuroBasket', 'World Cup'). |

```bash
curl -X POST https://api.paywithlocus.com/api/wrapped/parse-fiba-basketball-api-3cc94645/search_news \
  -H "Authorization: Bearer YOUR_LOCUS_API_KEY" \
  -H "Content-Type: application/json" \
  -d '{"limit":"<integer>","query":"<string>"}'
```
