Skip to content
GET /v1/player

Player profile summary

Try it live

10 free calls per day — no sign-up, no API key. Goes through the oanor gateway.

Custom headers (optional)
api.oanor.com/overwatch-api

It works. Grab an API key and use it in your project.

Get an API key

Code snippets

curl "https://api.oanor.com/overwatch-api/v1/player" \
  -H "x-oanor-key: oanor_test_..."
await fetch("https://api.oanor.com/overwatch-api/v1/player", {
  headers: { "x-oanor-key": "oanor_test_..." }
});
$ch = curl_init("https://api.oanor.com/overwatch-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/overwatch-api/v1/player",
    headers={"x-oanor-key": "oanor_test_..."}
)

Example response

A real response from this endpoint, captured by the latest health check.

{
    "data": {
        "player": {
            "title": "Data Broker",
            "avatar": "https://d15f34w2p8l1cc.cloudfront.net/overwatch/30e37a0d096d92c18f7c6f9519d483e75d1d8ab5280d672f2553f650f4c050e5.png",
            "namecard": "https://d15f34w2p8l1cc.cloudfront.net/overwatch/f51cfd3cf1a8d7729a09fd0fcf9292aeb80154cd3453cdec08224926d634b499.png",
            "username": "TeKrop",
            "competitive": {
                "pc": {
                    "open": null,
                    "tank": null,
                    "damage": null,
                    "season": 22,
                    "support": {
                        "tier": 4,
                        "division": "silver",
                        "rank_icon": "https://static.playoverwatch.com/img/pages/career/icons/rank/Rank_SilverTier-5a6b3c3498.png",
                        "role_icon": "https://static.playoverwatch.com/img/pages/career/icons/role/support-0258e13d85.svg#icon",
                        "tier_icon": "https://static.playoverwatch.com/img/pages/career/icons/rank/TierDivision_4-0cd0907e1b.png"
                    }
                },
                "console": null
            },
            "endorsement": 2,
            "last_updated_at": 1777998881
        }
    },
    "meta": {
        "timestamp": "2026-06-07T16:46:16.804Z",
        "request_id": "c37b44e9-b376-49e8-8c46-26dc6ca7bf59"
    },
    "status": "ok",
    "message": "Player retrieved successfully",
    "success": true
}