Skip to content
GET /v1/search

Search players

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

Example response

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

{
    "data": {
        "count": 1,
        "query": "TeKrop",
        "total": 1,
        "players": [
            {
                "name": "TeKrop",
                "title": "Data Broker",
                "avatar": "https://d15f34w2p8l1cc.cloudfront.net/overwatch/30e37a0d096d92c18f7c6f9519d483e75d1d8ab5280d672f2553f650f4c050e5.png",
                "namecard": "https://d15f34w2p8l1cc.cloudfront.net/overwatch/f51cfd3cf1a8d7729a09fd0fcf9292aeb80154cd3453cdec08224926d634b499.png",
                "player_id": "c65b8798bc61d6ffbba120%7Ccfe9dd77a4382165e2b920bdcc035949",
                "last_updated_at": 1777998881
            }
        ]
    },
    "meta": {
        "timestamp": "2026-06-07T16:46:18.030Z",
        "request_id": "e0e2ef3f-8aba-4797-babb-a22a01713e58"
    },
    "status": "ok",
    "message": "Players retrieved successfully",
    "success": true
}