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
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
{
"service": {
"code": "ground",
"route": "domestic",
"carrier": "fedex"
},
"location": {
"city": "New York",
"region": "NY",
"country": "US",
"close_time": "17:00:00",
"postal_code": "10001",
"address_line_1": "123 Main St"
},
"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"
}
Response examples (400)
# Headers
content-type: application/json
x-arta-request-id: FkBjuxbwLLTx4RoAARkx
# Payload
{
"errors": {
"detail": "string"
}
}
Response examples (422)
{
"errors": {
"detail": "string"
}
}