curl -i -X GET \
'https://api.goshippo.com/v2/addresses/{address_id}' \
-H 'Authorization: ShippoToken <API_TOKEN>'{
"id": "e9f1f6fd20f84982afe471ff06c5a80f",
"address": {
"name": "Wilson",
"address_line_1": "731 Market Street",
"country_code": "US",
"email": "user@shippo.com",
"phone": "+1-4155550132",
"organization": "Shippo",
"address_line_2": "#200",
"city_locality": "San Francisco",
"state_province": "CA",
"postal_code": "94103",
"address_type": "residential"
},
"updated_at": "2023-11-07T05:31:56Z",
"created_at": "2023-11-07T05:31:56Z"
}Returns an existing address using an object ID
curl -i -X GET \
'https://api.goshippo.com/v2/addresses/{address_id}' \
-H 'Authorization: ShippoToken <API_TOKEN>'{
"id": "e9f1f6fd20f84982afe471ff06c5a80f",
"address": {
"name": "Wilson",
"address_line_1": "731 Market Street",
"country_code": "US",
"email": "user@shippo.com",
"phone": "+1-4155550132",
"organization": "Shippo",
"address_line_2": "#200",
"city_locality": "San Francisco",
"state_province": "CA",
"postal_code": "94103",
"address_type": "residential"
},
"updated_at": "2023-11-07T05:31:56Z",
"created_at": "2023-11-07T05:31:56Z"
}Enter your shippo token with the ShippoToken prefix.
Example: ShippoToken shippo_live_xxxx
Was this page helpful?