Zum Inhalt springen
GET /v1/player

A single player with history & fixtures

Live testen

10 freie Calls pro Tag — keine Anmeldung, kein API-Key. Geht durchs oanor-Gateway.

Eigene Header (optional)
api.oanor.com/fpl-api

Funktioniert. Hol dir einen API-Key und nutze sie in deinem Projekt.

API-Key holen

Code-Snippets

curl "https://api.oanor.com/fpl-api/v1/player" \
  -H "x-oanor-key: oanor_test_..."
await fetch("https://api.oanor.com/fpl-api/v1/player", {
  headers: { "x-oanor-key": "oanor_test_..." }
});
$ch = curl_init("https://api.oanor.com/fpl-api/v1/player");
curl_setopt($ch, CURLOPT_HTTPHEADER, ["x-oanor-key: oanor_test_..."]);
curl_setopt($ch, CURLOPT_RETURNTRANSFER, true);
$out = curl_exec($ch);
import requests
requests.get(
    "https://api.oanor.com/fpl-api/v1/player",
    headers={"x-oanor-key": "oanor_test_..."}
)

Beispiel-Response

Echte Antwort dieses Endpoints, erfasst beim letzten Health-Check.

{
    "data": {
        "player": {
            "id": 1,
            "form": 5,
            "name": "Raya",
            "news": null,
            "team": "Arsenal",
            "bonus": 11,
            "price": 6.2,
            "saves": 60,
            "status": "a",
            "assists": 0,
            "history": [
                {
                    "bonus": 0,
                    "goals": 0,
                    "points": 3,
                    "assists": 0,
                    "minutes": 90,
                    "gameweek": 28,
                    "opponent": "CHE"
                },
                {
                    "bonus": 1,
                    "goals": 0,
                    "points": 7,
                    "assists": 0,
                    "minutes": 90,
                    "gameweek": 29,
                    "opponent": "BHA"
                },
                {
                    "bonus": 0,
                    "goals": 0,
                    "points": 7,
                    "assists": 0,
                    "minutes": 90,
                    "gameweek": 30,
                    "opponent": "EVE"
                },
                {
                    "bonus": 0,
                    "goals": 0,
                    "points": 1,
                    "assists": 0,
                    "minutes": 90,
                    "gameweek": 32,
                    "opponent": "BOU"
                },
                {
                    "bonus": 0,
                    "goals": 0,
                    "points": 1,
                    "assists": 0,
                    "minutes": 90,
                    "gameweek": 33,
                    "opponent": "MCI"
                },
                {
                    "bonus": 3,
                    "goals": 0,
                    "points": 10,
                    "assists": 0,
                    "minutes": 90,
                    "gameweek": 34,
                    "opponent": "NEW"
                },
                {
                    "bonus": 0,
                    "goals": 0,
                    "points": 6,
                    "assists": 0,
                    "minutes": 90,
                    "gameweek": 35,
                    "opponent": "FUL"
                },
                {
                    "bonus": 2,
                    "goals": 0,
                    "points": 9,
                    "assists": 0,
                    "minutes": 90,
                    "gameweek": 36,
                    "opponent": "WHU"
                },
                {
                    "bonus": 0,
                    "goals": 0,
                    "points": 6,
                    "assists": 0,
                    "minutes": 90,
                    "gameweek": 37,
                    "opponent": "BUR"
                },
                {
                    "bonus": 0,
                    "goals": 0,
                    "points": 0,
                    "assists": 0,
                    "minutes": 0,
    
…