/v1/search
Search players
Live testen
10 freie Calls pro Tag — keine Anmeldung, kein API-Key. Geht durchs oanor-Gateway.
Funktioniert. Hol dir einen API-Key und nutze sie in deinem Projekt.
API-Key holenCode-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_..."}
)
Beispiel-Response
Echte Antwort dieses Endpoints, erfasst beim letzten 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
}