Get shipment details
GEThttps://api.trackbot.pro/v1/shipments/:shipment_id
Returns the details, checkpoints history, and status of the shipment with the specified ID.
Only the shipment ID can be provided to this endpoint.
To retrieve shipment details by tracking code, use the Get shipments list endpoint using the tracking_code
filter.
Request
Path Parameters
ID of the shipment.
Responses
- 200
- 401
- 402
- 404
- 429
Shipment details and associated checkpoints history.
- application/json
- Schema
- Example (from schema)
- In Transit Example
Schema
data
object
{
"data": {
"id": "string",
"tracking_code": "string",
"courier": "string",
"type": "send",
"created_at": "2024-01-01T12:00:00Z",
"order_number": "string",
"description": "string",
"archived_at": "2024-01-01T12:00:00Z",
"archive_reason": "delivered",
"shipped_at": "2024-01-01T12:00:00Z",
"transit_days": 0,
"delivered_at": "2024-01-01T12:00:00Z",
"last_check_at": "2024-01-01T12:00:00Z",
"checkpoints_updated_at": "2024-01-01T12:00:00Z",
"checkpoints": [
{
"id": "string",
"created_at": "2024-01-01T12:00:00Z",
"message": "string",
"location": "string",
"date_time": "2024-01-01T12:00:00Z",
"notes": "string",
"status": "unknown",
"substatus": "exception_generic"
}
],
"status": "unknown",
"substatus": "exception_generic",
"is_delayed": true,
"estimated_delivery_date": "2024-01-01",
"estimated_delivery_time": "string",
"recipient_name": "string",
"recipient_email": "user@example.com",
"origin_location": "string",
"destination_location": "string"
}
}
{
"data": {
"id": "Ye7KwZ3",
"tracking_code": "T18B23P142",
"courier": "brt",
"type": "send",
"created_at": "2023-12-10T00:00:00Z",
"order_number": 1234,
"description": "Maglietta rossa moderna",
"archived_at": null,
"archive_reason": null,
"shipped_at": "2023-12-12T08:10:00",
"transit_days": 3,
"delivered_at": null,
"last_check_at": "2023-12-15T14:00:00Z",
"checkpoints_updated_at": "2023-12-13T10:00:00Z",
"checkpoints": [
{
"id": "df0P5Xu",
"created_at": "2023-12-13T10:00:00Z",
"message": "Spedizione presso il centro di smistamento",
"location": "Milano",
"date_time": "2023-12-13T09:50:00",
"notes": null,
"status": "in_transit",
"substatus": null
},
{
"id": "y8Kw8Z3",
"created_at": "2023-12-12T08:25:00Z",
"message": "Spedizione partita",
"location": "Milano",
"date_time": "2023-12-12T08:10:00",
"notes": null,
"status": "in_transit",
"substatus": null
}
],
"status": "in_transit",
"substatus": null,
"is_delayed": false,
"estimated_delivery_date": "2023-12-18",
"estimated_delivery_time": "09:00 - 11:00",
"recipient_name": "Mario Rossi",
"recipient_email": "mario.rossi@example.com",
"origin_location": "Milano",
"destination_location": "Roma"
}
}
The API token in the request is missing or is invalid. See the Error responses page for more details.
- application/json
- Schema
- Example (from schema)
Schema
error
object
{
"error": {
"status": 0,
"message": "string",
"code": "string"
}
}
No active plan for the account or plan doesn't allow API/endpoint usage. See the Error responses page for more details.
- application/json
- Schema
- Example (from schema)
Schema
error
object
{
"error": {
"status": 0,
"message": "string",
"code": "string"
}
}
The requested resource does not exist. See the Error responses page for more details.
- application/json
- Schema
- Example (from schema)
Schema
error
object
{
"error": {
"status": 0,
"message": "string",
"code": "string"
}
}
The API rate limit has been exceeded. See the Error responses page for more details.
- application/json
- Schema
- Example (from schema)
Schema
error
object
{
"error": {
"status": 0,
"message": "string",
"code": "string"
}
}
- curl
- python
- go
- nodejs
- csharp
- php
- java
- CURL
curl -L 'https://api.trackbot.pro/v1/shipments/:shipment_id' \
-H 'Accept: application/json' \
-H 'Authorization: Bearer <TOKEN>'