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 fedex, availability comes directly from FedEx for each request, so the response is the source of truth for bookable dates and times. It covers the requested date and can include availability for up to two later dates.
For dhl, collections can be scheduled up to 10 days in advance, Monday through Friday, with hourly collection times from 09:00 to 15:00. Collection times that have already passed at the pickup location, or that leave less than 3 hours before location.close_time, are not returned.
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)
{
"errors": [
"Only UK and US are supported for DHL self-ship collections"
]
}
Response examples (422)
{
"errors": {
"service": [
"Required property route was not present."
]
}
}