Skip to content

Verify Shipping Address

Revadike edited this page Feb 24, 2022 · 2 revisions

GET /api/verifyshippingaddress

Rate limits

No known rate limit

Request

Authenticated: Yes

Method: GET

Host: store.steampowered.com

Path: /api/verifyshippingaddress/

Query Parameters:

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

Response

200 OK

Name Type Description
success number TODO
correctedAddress object TODO
correctedAddress.address1 object TODO
correctedAddress.address1.matches boolean TODO
correctedAddress.address1.value string TODO
correctedAddress.address2 object TODO
correctedAddress.address2.matches boolean TODO
correctedAddress.address2.value string TODO
correctedAddress.city object TODO
correctedAddress.city.matches boolean TODO
correctedAddress.city.value string TODO
correctedAddress.state object TODO
correctedAddress.state.matches boolean TODO
correctedAddress.state.value string TODO
correctedAddress.postcode object TODO
correctedAddress.postcode.matches boolean TODO
correctedAddress.postcode.value string TODO
verificationDetailExample string TODO
bSuggestedAddressMatches boolean TODO
bValidAddress boolean TODO
eShippingAddressVerificationDetail number TODO

Example

GET https://store.steampowered.com/api/verifyshippingaddress/?cc=us&l=english
{
    "success": 1,
    "correctedAddress": {
        "address1": {
            "matches": true,
            "value": ""
        },
        "address2": {
            "matches": true,
            "value": ""
        },
        "city": {
            "matches": true,
            "value": ""
        },
        "state": {
            "matches": true,
            "value": ""
        },
        "postcode": {
            "matches": true,
            "value": ""
        }
    },
    "verificationDetailExample": "",
    "bSuggestedAddressMatches": true,
    "bValidAddress": false,
    "eShippingAddressVerificationDetail": 4
}
Clone this wiki locally