Skip to content

Get Transaction Status

Revadike edited this page Feb 24, 2022 · 2 revisions

GET /api/gettransactionstatus

Rate limits

No known rate limit

Request

Authenticated: Yes

Method: GET

Host: store.steampowered.com

Path: /api/gettransactionstatus/

Query Parameters:

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

Response

200 OK

Name Type Description
success number TODO
purchaseresultdetail number TODO
total object TODO
total.currency string TODO
total.final number TODO
total.initial number TODO
payment_method number TODO

Example

GET https://store.steampowered.com/api/gettransactionstatus/?cc=us&l=english&transid=5405998248774774145
{
    "success": 1,
    "purchaseresultdetail": 0,
    "total": {
        "currency": "EUR",
        "final": 99,
        "initial": 99
    },
    "payment_method": 128
}
Clone this wiki locally