Availability: Public Preview
This endpoint is currently in public preview and available only to approved accounts. Please contact Arta to request access for your organization.
Check carrier pickup availability for a given location, service, and date.
For DHL, self-ship collections are supported in the US and UK. DHL pickups can be scheduled up to 10 days in advance, on business days only (Monday–Friday in the US, Monday–Saturday in the UK); the returned availabilities reflect these rules.
POST
/self_ship_collection_availability_checks
curl \
--request POST 'https://api.arta.io/self_ship_collection_availability_checks' \
--header "Content-Type: application/json" \
--header "Authorization: ARTA_APIKey s0e1t2e3c4a5s6t7r8o9n10o11m12y" \
--data '{"self_ship_collection_availability_check":{"collection_date":"2026-03-06","location":{"address_line_1":"123 Main St","address_line_2":"string","city":"New York","close_time":"17:00:00","country":"US","postal_code":"10001","region":"NY"},"service":{"carrier":"fedex","code":"ground","route":"domestic"}}}'
Request examples
# Headers
Authorization: ARTA_APIKey s0e1t2e3c4a5s6t7r8o9n10o11m12y
# Payload
{
"self_ship_collection_availability_check": {
"collection_date": "2026-03-06",
"location": {
"address_line_1": "123 Main St",
"address_line_2": "string",
"city": "New York",
"close_time": "17:00:00",
"country": "US",
"postal_code": "10001",
"region": "NY"
},
"service": {
"carrier": "fedex",
"code": "ground",
"route": "domestic"
}
}
}
Response examples (200)
# Headers
content-type: application/json
x-arta-request-id: FkBjuxbwLLTx4RoAARkx
# Payload
{
"availabilities": [
{
"collection_date": "2026-03-06",
"collection_times": [
"07:00:00",
"07:30:00",
"08:00:00"
],
"residential_available": true
}
],
"collection_date": "2026-03-06",
"location": {
"address_line_1": "123 Main St",
"city": "New York",
"close_time": "17:00:00",
"country": "US",
"postal_code": "10001",
"region": "NY"
},
"service": {
"carrier": "fedex",
"code": "ground",
"route": "domestic"
}
}
Response examples (400)
# Headers
content-type: application/json
x-arta-request-id: FkBjuxbwLLTx4RoAARkx
# Payload
{
"errors": {
"detail": "string"
}
}
Response examples (422)
{
"errors": {
"detail": "string"
}
}