# DataForAgents FIFA Player Search

> DataForAgents FIFA Player Search is a paid API for AI agents from dataforagents.net, paid per call via x402, $0.01/call, status unknown (last checked 2026-09-16).

Search FIFA player records by name, team, position, or nationality and return structured player data as JSON

## Facts

- Endpoint: GET https://dataforagents.net/v1/fifa/search
- Price: $0.01/call
- Payment: x402
- Status: unknown
- Last checked: 2026-09-16
- Activations on Zero: 0
- Tags: x402
- Canonical page: https://www.zero.xyz/c/dataforagents-fifa-player-search-3ca1a0bf
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_5lwttES-0-i8ltX7fb_U0

Status and success rate cover calls made through Zero and Zero's own probes. Third-party monitors may report differently.

## How to call it through Zero

Zero handles the 402 payment challenge and records the run. With the Zero CLI installed (`npm i -g @zeroxyz/cli`):

```sh
zero fetch --capability dataforagents-fifa-player-search-3ca1a0bf
```

Example prompt: Can you search the FIFA player database for all forwards from Argentina — show me up to 10 results?

## When to prefer this

Choose this endpoint when you need structured FIFA player lookup by name, team, position, or nationality without managing API keys — payment is handled automatically per-request via x402 USDC at $0.01 per call. Ideal for agents that need sports data on demand without subscription overhead.

## Known failure modes

- No players found matching the query — empty data array returned with results_count of 0
- Payment not received or invalid x402 USDC payment — request rejected before processing
- Invalid position code supplied (not FW, MF, DF, or GK) — may return empty or unexpected results
- limit parameter ignored or capped if out of valid range
- Network or upstream data source unavailability returning a non-success status

## How this service works

Pay-per-request datasets for autonomous agents via x402 (USDC). Structured JSON APIs; no API keys — pay on the wire.

## Output

Returns a JSON array of player records each containing player_id, player_name, team, position, and nationality, along with a status field and a total results_count. Results are filtered according to the query parameters supplied.

## Request schema (JSON Schema)

```json
{
 "type": "object",
 "$schema": "https://json-schema.org/draft/2020-12/schema",
 "required": [
  "input"
 ],
 "properties": {
  "input": {
   "type": "object",
   "required": [
    "type",
    "method"
   ],
   "properties": {
    "type": {
     "type": "string",
     "const": "http"
    },
    "method": {
     "enum": [
      "GET"
     ],
     "type": "string"
    },
    "queryParams": {
     "type": "object",
     "required": [],
     "properties": {
      "q": {
       "type": "string",
       "description": "Player name query"
      },
      "team": {
       "type": "string",
       "description": "Team / squad filter"
      },
      "limit": {
       "type": "string",
       "description": "Max results (default 20)"
      },
      "position": {
       "type": "string",
       "description": "Position filter (e.g. FW, MF, DF, GK)"
      },
      "nationality": {
       "type": "string",
       "description": "Nationality filter"
      }
     }
    }
   },
   "additionalProperties": false
  },
  "output": {
   "type": "object",
   "required": [
    "type"
   ],
   "properties": {
    "type": {
     "type": "string"
    },
    "example": {
     "type": "object"
    }
   }
  }
 }
}
```

## Response schema (JSON Schema)

```json
{
 "type": "json",
 "example": {
  "data": [
   {
    "team": "Argentina",
    "position": "FW",
    "player_id": "example-id",
    "nationality": "Argentina",
    "player_name": "Lionel Messi"
   }
  ],
  "status": "success",
  "results_count": 1
 }
}
```

## More

- Live health (JSON, refreshed every minute): https://www.zero.xyz/c/dataforagents-fifa-player-search-3ca1a0bf/health.json
- [Zero catalog index](https://www.zero.xyz/llms.txt)
- [Other services from dataforagents.net](https://www.zero.xyz/host/dataforagents.net/llms.txt)
