# DataForAgents FIFA Player Stats Lookup

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

Fetches structured stats and profile data for a specific FIFA player by stable player ID, returning team, position, nationality, goals, and assists.

## Facts

- Endpoint: GET https://dataforagents.net/v1/fifa/player
- Price: $0.02/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-stats-lookup-05e54b66
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_Wutr055jHbU2cqS6S70pn

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-stats-lookup-05e54b66
```

Example prompt: Can you pull up the FIFA stats for the player with ID 'p12345' — I need their team, position, nationality, goals, and assists?

## When to prefer this

Use this endpoint when you already have a stable FIFA player ID (e.g. from the /v1/fifa/search endpoint) and need structured player profile data including team, position, nationality, goals, and assists — without needing an API key, using pay-per-request USDC micropayments via x402.

## Known failure modes

- Invalid or unknown player_id returns an error or empty data
- Missing required player_id query parameter causes a 400-level error
- Payment failure via x402 protocol results in a 402 response blocking data access
- Stale or outdated player data if the underlying dataset hasn't been refreshed recently

## 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 object with the player's name, team, position, nationality, goals scored, assists, and their stable player ID — all wrapped in a success status envelope.

## 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": [
      "player_id"
     ],
     "properties": {
      "player_id": {
       "type": "string",
       "description": "Stable player id from /v1/fifa/search results"
      }
     }
    }
   },
   "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",
   "goals": 0,
   "assists": 0,
   "position": "FW",
   "player_id": "example-id",
   "nationality": "Argentina",
   "player_name": "Lionel Messi"
  },
  "status": "success"
 }
}
```

## More

- Live health (JSON, refreshed every minute): https://www.zero.xyz/c/dataforagents-fifa-player-stats-lookup-05e54b66/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)
