(addresses)
Addresses are the locations a parcel is being shipped from and to. They represent company and residential places. Among other things, you can use address objects to create shipments, calculate shipping rates, and purchase shipping labels.
- list - List all addresses
- create - Create a new address
- get - Retrieve an address
- validate - Validate an address
Returns a list of all address objects that have been created in this account.
from shippo import Shippo
with Shippo(
api_key_header="<YOUR_API_KEY_HERE>",
shippo_api_version="2018-02-08",
) as s_client:
res = s_client.addresses.list()
assert res is not None
# Handle response
print(res)
Parameter |
Type |
Required |
Description |
page |
Optional[int] |
➖ |
The page number you want to select |
results |
Optional[int] |
➖ |
The number of results to return per page (max 100, default 5) |
retries |
Optional[utils.RetryConfig] |
➖ |
Configuration to override the default retry behavior of the client. |
components.AddressPaginatedList
Error Type |
Status Code |
Content Type |
errors.SDKError |
4XX, 5XX |
*/* |
Creates a new address object. You can use address objects to create new shipments, calculate rates, and to create orders.
from shippo import Shippo
with Shippo(
api_key_header="<YOUR_API_KEY_HERE>",
shippo_api_version="2018-02-08",
) as s_client:
res = s_client.addresses.create(request={
"country": "US",
"name": "Shwan Ippotle",
"company": "Shippo",
"street1": "215 Clayton St.",
"street3": "",
"street_no": "",
"city": "San Francisco",
"state": "CA",
"zip": "94117",
"phone": "+1 555 341 9393",
"email": "[email protected]",
"is_residential": True,
"metadata": "Customer ID 123456",
"validate_": True,
})
assert res is not None
# Handle response
print(res)
components.Address
Error Type |
Status Code |
Content Type |
errors.SDKError |
4XX, 5XX |
*/* |
Returns an existing address using an object ID.
from shippo import Shippo
with Shippo(
api_key_header="<YOUR_API_KEY_HERE>",
shippo_api_version="2018-02-08",
) as s_client:
res = s_client.addresses.get(address_id="<id>")
assert res is not None
# Handle response
print(res)
Parameter |
Type |
Required |
Description |
address_id |
str |
✔️ |
Object ID of the address |
retries |
Optional[utils.RetryConfig] |
➖ |
Configuration to override the default retry behavior of the client. |
components.Address
Error Type |
Status Code |
Content Type |
errors.SDKError |
4XX, 5XX |
*/* |
Validates an existing address using an object ID
from shippo import Shippo
with Shippo(
api_key_header="<YOUR_API_KEY_HERE>",
shippo_api_version="2018-02-08",
) as s_client:
res = s_client.addresses.validate(address_id="<id>")
assert res is not None
# Handle response
print(res)
Parameter |
Type |
Required |
Description |
address_id |
str |
✔️ |
Object ID of the address |
retries |
Optional[utils.RetryConfig] |
➖ |
Configuration to override the default retry behavior of the client. |
components.Address
Error Type |
Status Code |
Content Type |
errors.SDKError |
4XX, 5XX |
*/* |