Skip to content

Get Search Suggestions

Revadike edited this page Feb 24, 2022 · 2 revisions

GET /search/suggest

Rate limits

No known rate limit

Request

Authenticated: TODO

Method: GET

Host: store.steampowered.com

Path: /search/suggest

Query Parameters:

Name Type Required Description
cc string TODO Country code
l string TODO Language
realm string TODO TODO
origin string No The origin URL, changes the Access-Control-Allow-Origin header in the response
f string TODO TODO
term string TODO TODO
require_type string TODO TODO

Response

200 OK

Name Type Description
[] array TODO
[]id string TODO
[]type string TODO
[]name string TODO
[]price string TODO
[]img string TODO

Example

GET https://store.steampowered.com/search/suggest?cc=US&l=english&realm=1&origin=https:%2F%2Fstore.steampowered.com&f=jsonfull&term=tf2&require_type=game,software
[
    {
        "id": "440",
        "type": "game",
        "name": "Team Fortress 2",
        "price": "Free to Play",
        "img": "https://cdn.cloudflare.steamstatic.com/steam/apps/440/capsule_sm_120.jpg?t=1592263852"
    }
]
Clone this wiki locally