/v1/search
Find players by name
Try it live
10 free calls per day — no sign-up, no API key. Goes through the oanor gateway.
It works. Grab an API key and use it in your project.
Get an API keyCode snippets
curl "https://api.oanor.com/quaver-api/v1/search" \ -H "x-oanor-key: oanor_test_..."
await fetch("https://api.oanor.com/quaver-api/v1/search", {
headers: { "x-oanor-key": "oanor_test_..." }
});
$ch = curl_init("https://api.oanor.com/quaver-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/quaver-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": 50,
"query": "swan",
"users": [
{
"id": 1,
"country": "UM",
"clan_tag": "Swan",
"username": "Swan",
"avatar_url": "https://avatars.steamstatic.com/3c4f2eaab9e5e41dfb1706d21d654a81e525972a_full.jpg"
},
{
"id": 12808,
"country": "IE",
"clan_tag": null,
"username": "swankity",
"avatar_url": "https://steamcdn-a.akamaihd.net/steamcommunity/public/images/avatars/e7/e75e52f81abc9b17252e8c76d8bdc2dd33974f20_full.jpg"
},
{
"id": 21717,
"country": "NZ",
"clan_tag": null,
"username": "SwanM8",
"avatar_url": "https://avatars.steamstatic.com/e315c2a6786f19483dd678dd5cc325dc20a7945e_full.jpg"
},
{
"id": 22376,
"country": "BE",
"clan_tag": null,
"username": "Swansbeertje",
"avatar_url": "https://avatars.steamstatic.com/2e06d85c1c7f7066d547f488cbd321ac7c465e8e_full.jpg"
},
{
"id": 75485,
"country": "US",
"clan_tag": null,
"username": "Swanity",
"avatar_url": "https://avatars.steamstatic.com/9852469a4e62241c95f3c441ae351521a29f53dd_full.jpg"
},
{
"id": 86629,
"country": "FI",
"clan_tag": null,
"username": "Swanson",
"avatar_url": "https://steamcdn-a.akamaihd.net/steamcommunity/public/images/avatars/51/51cdb97265d385d60b26735535a0f3db94dbc691_full.jpg"
},
{
"id": 92614,
"country": "US",
"clan_tag": null,
"username": "Swanta",
"avatar_url": "https://avatars.steamstatic.com/607d5b2c86ccd3460ad19dc679a08e171d67f955_full.jpg"
},
{
"id": 95738,
"country": "US",
"clan_tag": null,
"username": "Swankydemon",
"avatar_url": "https://steamcdn-a.akamaihd.net/steamcommunity/public/images/avatars/7e/7ef44211c05c0f91f764a082ed67784ce8e17a7e_full.jpg"
},
{
"id": 106989,
"country": "US",
"clan_tag": null,
"username": "Swanky",
"avatar_url": "https://avatars.steamstatic.com/0bfd6a007df7f197f6b622848c60547bc3e611a0_full.jpg"
},
{
"id": 122653,
"country": "GB",
"clan_tag": null,
"username": "swanqil",
"avatar_url": "https://steamcdn-a.akamaihd.net/steamcommunity/public/images/avatars/fe/fef49e7fa7e1997310d705b2a6158ff8dc1cdfeb_
…