Aller au contenu
GET /v1/tiers

Competitive rank tiers

Essayez-le en direct

10 appels gratuits par jour — sans inscription, sans clé API. Passe par la passerelle oanor.

En-têtes personnalisés (facultatif)
api.oanor.com/valorant-api

Ça marche. Récupérez une clé API et utilisez-la dans votre projet.

Obtenez une clé API

Extraits de code

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

Exemple de réponse

Une réponse réelle de ce endpoint, capturée lors du dernier contrôle de santé.

{
    "data": {
        "count": 25,
        "tiers": [
            {
                "icon": "https://media.valorant-api.com/competitivetiers/03621f52-342b-cf4e-4f86-9350a49c6d04/3/largeicon.png",
                "name": "IRON 1",
                "tier": 3,
                "color": "4f514fff",
                "division": "IRON"
            },
            {
                "icon": "https://media.valorant-api.com/competitivetiers/03621f52-342b-cf4e-4f86-9350a49c6d04/4/largeicon.png",
                "name": "IRON 2",
                "tier": 4,
                "color": "4f514fff",
                "division": "IRON"
            },
            {
                "icon": "https://media.valorant-api.com/competitivetiers/03621f52-342b-cf4e-4f86-9350a49c6d04/5/largeicon.png",
                "name": "IRON 3",
                "tier": 5,
                "color": "4f514fff",
                "division": "IRON"
            },
            {
                "icon": "https://media.valorant-api.com/competitivetiers/03621f52-342b-cf4e-4f86-9350a49c6d04/6/largeicon.png",
                "name": "BRONZE 1",
                "tier": 6,
                "color": "a5855dff",
                "division": "BRONZE"
            },
            {
                "icon": "https://media.valorant-api.com/competitivetiers/03621f52-342b-cf4e-4f86-9350a49c6d04/7/largeicon.png",
                "name": "BRONZE 2",
                "tier": 7,
                "color": "a5855dff",
                "division": "BRONZE"
            },
            {
                "icon": "https://media.valorant-api.com/competitivetiers/03621f52-342b-cf4e-4f86-9350a49c6d04/8/largeicon.png",
                "name": "BRONZE 3",
                "tier": 8,
                "color": "a5855dff",
                "division": "BRONZE"
            },
            {
                "icon": "https://media.valorant-api.com/competitivetiers/03621f52-342b-cf4e-4f86-9350a49c6d04/9/largeicon.png",
                "name": "SILVER 1",
                "tier": 9,
                "color": "bbc2c2ff",
                "division": "SILVER"
            },
            {
                "icon": "https://media.valorant-api.com/competitivetiers/03621f52-342b-cf4e-4f86-9350a49c6d04/10/largeicon.png",
                "name": "SILVER 2",
                "tier": 10,
                "color": "bbc2c2ff",
                "division": "SILVER"
            },
            {
                "icon": "https://media.valorant-api.com/competitivetiers/03621f52-342b-cf4e-4f86-9350a49c6d04/11/largeicon.png",
                "name": "SILVER 3",
                "tier": 11,
                "color": "bbc2c2ff",
                "division": "SILVER"
            },
            {
                "icon": "https://media.valorant-api.com/competitivetiers/03621f52-342b-cf4e-4f86-9350a49c6d04/12/largeicon.png",
                "name": "GOLD 1",
                "tier": 12,
                "color": "eccf56ff",
                "division": "GOLD"
            },
            {

…