# Flashscore (Türkiye) — 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.

> Get live football scores, daily fixtures, and detailed match information including team lineups with player ratings, comprehensive statistics, and betting odds. Stay updated on your favorite games with real-time data and complete match summaries all in one place.

**Category:** Sports | **Website:** [flashscore.com.tr/](https://flashscore.com.tr/) | **Docs:** [parse.bot/marketplace/57c6cf24-cefd-46cf-adea-7718af51f3bf/flashscore-com-tr-api](https://parse.bot/marketplace/57c6cf24-cefd-46cf-adea-7718af51f3bf/flashscore-com-tr-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-flashscore-com-tr-api-57c6cf24/`
**Auth:** `Authorization: Bearer <LOCUS_API_KEY>`

## Endpoints

### get_football_matches

Retrieve all football matches for a given date. Returns fixtures with scores, status, league info, and start times. date_offset=0 is today, positive values are future days, negative values are past days. Typically returns 100-200+ matches per day across all leagues worldwide.

**Estimated cost:** Metered

| Field | Type | Required | Description |
|-------|------|----------|-------------|
| `date_offset` | integer | No | Date offset from today: 0 for today, 1 for tomorrow, -1 for yesterday, etc. |

```bash
curl -X POST https://api.paywithlocus.com/api/wrapped/parse-flashscore-com-tr-api-57c6cf24/get_football_matches \
  -H "Authorization: Bearer YOUR_LOCUS_API_KEY" \
  -H "Content-Type: application/json" \
  -d '{"date_offset":"<integer>"}'
```

### get_match_lineups

Extract match lineups including formations, starting XI, substitutes, coaches, and player ratings. Only completed or in-progress matches from leagues with detailed coverage return populated lineups; otherwise arrays are empty.

**Estimated cost:** Metered

| Field | Type | Required | Description |
|-------|------|----------|-------------|
| `event_id` | string | Yes | Flashscore match ID from get_football_matches results[*].id |

```bash
curl -X POST https://api.paywithlocus.com/api/wrapped/parse-flashscore-com-tr-api-57c6cf24/get_match_lineups \
  -H "Authorization: Bearer YOUR_LOCUS_API_KEY" \
  -H "Content-Type: application/json" \
  -d '{"event_id":"<string>"}'
```

### get_match_odds

Extract full-time home/draw/away betting odds for a match from bet365. Returns opening and current odds with change direction. Not all matches have odds available — smaller leagues or matches without bet365 coverage return null odds.

**Estimated cost:** Metered

| Field | Type | Required | Description |
|-------|------|----------|-------------|
| `event_id` | string | Yes | Flashscore match ID from get_football_matches results[*].id |

```bash
curl -X POST https://api.paywithlocus.com/api/wrapped/parse-flashscore-com-tr-api-57c6cf24/get_match_odds \
  -H "Authorization: Bearer YOUR_LOCUS_API_KEY" \
  -H "Content-Type: application/json" \
  -d '{"event_id":"<string>"}'
```

### get_match_statistics

Extract team-vs-team match statistics such as possession, shots, corners, and expected goals (xG). Returns statistics grouped by period. Lower-league or scheduled matches may return an empty statistics array.

**Estimated cost:** Metered

| Field | Type | Required | Description |
|-------|------|----------|-------------|
| `event_id` | string | Yes | Flashscore match ID from get_football_matches results[*].id |

```bash
curl -X POST https://api.paywithlocus.com/api/wrapped/parse-flashscore-com-tr-api-57c6cf24/get_match_statistics \
  -H "Authorization: Bearer YOUR_LOCUS_API_KEY" \
  -H "Content-Type: application/json" \
  -d '{"event_id":"<string>"}'
```

### get_match_summary

Extract match summary events including goals, cards, and substitutions for a specific match. Returns populated events for completed or in-progress matches. Scheduled or future matches return an empty events array.

**Estimated cost:** Metered

| Field | Type | Required | Description |
|-------|------|----------|-------------|
| `event_id` | string | Yes | Flashscore match ID from get_football_matches results[*].id |

```bash
curl -X POST https://api.paywithlocus.com/api/wrapped/parse-flashscore-com-tr-api-57c6cf24/get_match_summary \
  -H "Authorization: Bearer YOUR_LOCUS_API_KEY" \
  -H "Content-Type: application/json" \
  -d '{"event_id":"<string>"}'
```
