Skip to content
GET /v1/gear

The SplatNet gear shop

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/splatoon-api

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

Get an API key

Code snippets

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

Example response

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

{
    "data": {
        "pickup_gear": [
            {
                "name": "Annaki Beret",
                "type": "HeadGear",
                "brand": "Annaki",
                "price": 17250,
                "slots": 3,
                "sale_end": "2026-06-02T00:00:00Z",
                "primary_ability": "Ink Recovery Up"
            },
            {
                "name": "Annaki Red Cuff",
                "type": "ClothingGear",
                "brand": "Annaki",
                "price": 9600,
                "slots": 2,
                "sale_end": "2026-06-02T00:00:00Z",
                "primary_ability": "Run Speed Up"
            },
            {
                "name": "Annaki Tigers",
                "type": "ShoesGear",
                "brand": "Annaki",
                "price": 14985,
                "slots": 3,
                "sale_end": "2026-06-02T00:00:00Z",
                "primary_ability": "Intensify Action"
            }
        ],
        "limited_gear": [
            {
                "name": "Deepsea Leather Boots",
                "type": "ShoesGear",
                "brand": "Rockenberg",
                "price": 18000,
                "slots": 3,
                "sale_end": "2026-06-01T12:00:00Z",
                "primary_ability": "Object Shredder"
            },
            {
                "name": "Whale-Knit Sweater",
                "type": "ClothingGear",
                "brand": "Splash Mob",
                "price": 14475,
                "slots": 3,
                "sale_end": "2026-06-01T16:00:00Z",
                "primary_ability": "Ninja Squid"
            },
            {
                "name": "Ink-Black Paddle Jack",
                "type": "ClothingGear",
                "brand": "Toni Kensa",
                "price": 14850,
                "slots": 3,
                "sale_end": "2026-06-01T20:00:00Z",
                "primary_ability": "Respawn Punisher"
            },
            {
                "name": "Reel Sweat",
                "type": "ClothingGear",
                "brand": "Zekko",
                "price": 2250,
                "slots": 1,
                "sale_end": "2026-06-02T00:00:00Z",
                "primary_ability": "Quick Respawn"
            },
            {
                "name": "Punk Yellows",
                "type": "ShoesGear",
                "brand": "Rockenberg",
                "price": 6000,
                "slots": 2,
                "sale_end": "2026-06-02T04:00:00Z",
                "primary_ability": "Ink Saver (Sub)"
            },
            {
                "name": "Short Knit Layers",
                "type": "ClothingGear",
                "brand": "Toni Kensa",
                "price": 14775,
                "slots": 3,
                "sale_end": "2026-06-02T08:00:00Z",
                "primary_ability": "Thermal Ink"
            }
        ],
        "pickup_brand": "Annaki"
    },
    "meta": {
        "timestamp": "2026-06-01T08:13:39.861Z",
      
…