Skip to content

Get Fund Wallet Info

Revadike edited this page Feb 24, 2022 · 2 revisions

GET /api/getfundwalletinfo

Rate limits

No known rate limit

Request

Authenticated: Yes

Method: GET

Host: store.steampowered.com

Path: /api/getfundwalletinfo/

Query Parameters:

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

Response

200 OK

Name Type Description
success number TODO
currency string TODO
country_code string TODO
alternate_min_amount boolean TODO
amounts[] array TODO
related_trans_type boolean TODO
related_trainsid boolean TODO
user_wallet object TODO
user_wallet.amount string TODO
user_wallet.currency string TODO

Example

GET https://store.steampowered.com/api/getfundwalletinfo/?cc=nl&l=english
{
    "success": 1,
    "currency": "EUR",
    "country_code": "NL",
    "alternate_min_amount": false,
    "amounts": [
        500,
        1000,
        2500,
        5000,
        10000
    ],
    "related_trans_type": false,
    "related_trainsid": false,
    "user_wallet": {
        "amount": "881",
        "currency": "EUR"
    }
}
Clone this wiki locally