POST
/
gear
/
search
curl --request POST \
  --url https://api.steamgold.dev/v1/gear/search \
  --header 'Authorization: Bearer <token>' \
  --header 'Content-Type: application/json' \
  --data '{
  "appid": 730,
  "query": "<string>",
  "filters": {
    "price": {
      "min": 123,
      "max": 123
    },
    "weapon": [
      "<string>"
    ],
    "type": [
      "<string>"
    ],
    "rarity": [
      "<string>"
    ],
    "exterior": [
      "<string>"
    ],
    "quality": [
      "<string>"
    ],
    "phase": [
      "<string>"
    ]
  },
  "limit": 10,
  "page": 0,
  "sort": "price_asc"
}'
{
  "status": "<string>",
  "gear": [
    {
      "id": 123,
      "name": "<string>",
      "price": 123,
      "image": "<string>",
      "inspectLink": "<string>",
      "description": "<string>",
      "details": {
        "type": "<string>",
        "weapon": "<string>",
        "set": "<string>",
        "quality": "<string>",
        "rarity": "<string>",
        "exterior": "<string>",
        "phase": "<string>",
        "tournament": "<string>",
        "color": "<string>"
      },
      "paint": {
        "float": 123,
        "seed": 123,
        "index": 123,
        "pattern": 123
      },
      "attachments": [
        {
          "id": 123,
          "name": "<string>",
          "wear": 123,
          "type": "<string>"
        }
      ]
    }
  ],
  "total": 123
}

Authorizations

Authorization
string
header
required

Bearer authentication header of the form Bearer <token>, where <token> is your auth token.

Body

application/json

Параметры для поиска и фильтрации снаряжения

The body is of type object.

Response

200
application/json

Список доступного снаряжения

The response is of type object.