# Futwiz — 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 EA FC 26 Ultimate Team players and instantly access their complete stats, current market prices, card images, and playstyles. Find exactly the players you need to build your squad with detailed information all in one place.

**Category:** Sports | **Website:** [www.futwiz.com/](https://www.futwiz.com/) | **Docs:** [parse.bot/marketplace/cb7c280f-35df-42cc-b33a-b56df847b803/futwiz-com-api](https://parse.bot/marketplace/cb7c280f-35df-42cc-b33a-b56df847b803/futwiz-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-futwiz-com-api-cb7c280f/`
**Auth:** `Authorization: Bearer <LOCUS_API_KEY>`

## Endpoints

### search_players

Search FC26 Ultimate Team player cards. Returns paginated results with complete player data including face stats, detailed in-game stats, current market prices for console and PC, card image URLs, playstyles, positions, and physical attributes. Results are auto-iterated; when no search term is provided, returns all players ordered by the chosen sort field.

**Estimated cost:** Metered

| Field | Type | Required | Description |
|-------|------|----------|-------------|
| `page` | integer | No | Page number for pagination (1-based). |
| `search` | string | No | Player name to search for (partial match). Omitting returns all players. |
| `sort_by` | string | No | Field to sort results by. |
| `sort_direction` | string | No | Sort order. |

```bash
curl -X POST https://api.paywithlocus.com/api/wrapped/parse-futwiz-com-api-cb7c280f/search_players \
  -H "Authorization: Bearer YOUR_LOCUS_API_KEY" \
  -H "Content-Type: application/json" \
  -d '{"page":"<integer>","search":"<string>","sort_by":"<string>","sort_direction":"<string>"}'
```
