Skip to content

Get More Checkout Country Data

Revadike edited this page Feb 24, 2022 · 2 revisions

GET /api/checkoutcountrydata2

Rate limits

No known rate limit

Request

Authenticated: Yes

Method: GET

Host: store.steampowered.com

Path: /api/checkoutcountrydata2/

Query Parameters:

Name Type Required Description
cc string TODO Country code
l string TODO Language

Response

200 OK

Name Type Description
success boolean TODO
usstates[] array TODO
shippableusstates[] array TODO
countries[] array TODO
countries[].code string TODO
countries[].label string TODO

Example

GET https://store.steampowered.com/api/checkoutcountrydata2/?cc=us&l=english
{
    "success": true,
    "usstates": [],
    "shippableusstates": [],
    "countries": [
        {
            "code": "NL",
            "label": "Netherlands"
        }
    ]
}
Clone this wiki locally