Verify Shipping Address - Revadike/InternalSteamWebAPI GitHub Wiki
GET /api/verifyshippingaddress
Rate limits
No known rate limit
Request
Authenticated: Yes
Method:
GETHost:
store.steampowered.comPath:
/api/verifyshippingaddress/Query Parameters:
Name Type Required Description ccstring TODOCountry code lstring TODOLanguage
Response
200 OK
Name Type Description successnumber TODOcorrectedAddressobject TODOcorrectedAddress.address1object TODOcorrectedAddress.address1.matchesboolean TODOcorrectedAddress.address1.valuestring TODOcorrectedAddress.address2object TODOcorrectedAddress.address2.matchesboolean TODOcorrectedAddress.address2.valuestring TODOcorrectedAddress.cityobject TODOcorrectedAddress.city.matchesboolean TODOcorrectedAddress.city.valuestring TODOcorrectedAddress.stateobject TODOcorrectedAddress.state.matchesboolean TODOcorrectedAddress.state.valuestring TODOcorrectedAddress.postcodeobject TODOcorrectedAddress.postcode.matchesboolean TODOcorrectedAddress.postcode.valuestring TODOverificationDetailExamplestring TODObSuggestedAddressMatchesboolean TODObValidAddressboolean TODOeShippingAddressVerificationDetailnumber 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
}