curl "https://api.crbtrack.com/api/v1/tracking/CBECUSD123456789?includeHistory=true" \
-H "X-API-Key: <YOUR_API_KEY>"
{
"trackingNumber": "CBECUSD123456789",
"status": "IN_TRANSIT",
"statusName": "In Transit",
"estimatedDelivery": "2024-12-28T18:00:00Z",
"history": [
{
"status": "ORDERED",
"statusName": "Order Created",
"timestamp": "2024-12-21T10:30:00Z",
"location": "Miami, FL, US"
},
{
"status": "LABEL_GENERATED",
"statusName": "Label Generated",
"timestamp": "2024-12-21T10:30:05Z",
"location": "Miami, FL, US"
},
{
"status": "CUSTOMS_CLEARANCE",
"statusName": "Customs Clearance",
"timestamp": "2024-12-23T08:00:00Z",
"location": "Miami, FL, US"
},
{
"status": "IN_TRANSIT",
"statusName": "In Transit",
"timestamp": "2024-12-24T14:30:00Z",
"location": "Quito, EC",
"description": "Package departed from sorting facility"
}
]
}
{
"success": false,
"error": {
"code": "PARCEL_NOT_FOUND",
"message": "No parcel found with tracking number INVALID123",
"message_es": "No se encontró un paquete con el número de seguimiento INVALID123",
"requestId": "req_abc123"
}
}
Tracking
Single Tracking
Get tracking information for a single parcel
GET
/
api
/
v1
/
tracking
/
{trackingNumber}
curl "https://api.crbtrack.com/api/v1/tracking/CBECUSD123456789?includeHistory=true" \
-H "X-API-Key: <YOUR_API_KEY>"
{
"trackingNumber": "CBECUSD123456789",
"status": "IN_TRANSIT",
"statusName": "In Transit",
"estimatedDelivery": "2024-12-28T18:00:00Z",
"history": [
{
"status": "ORDERED",
"statusName": "Order Created",
"timestamp": "2024-12-21T10:30:00Z",
"location": "Miami, FL, US"
},
{
"status": "LABEL_GENERATED",
"statusName": "Label Generated",
"timestamp": "2024-12-21T10:30:05Z",
"location": "Miami, FL, US"
},
{
"status": "CUSTOMS_CLEARANCE",
"statusName": "Customs Clearance",
"timestamp": "2024-12-23T08:00:00Z",
"location": "Miami, FL, US"
},
{
"status": "IN_TRANSIT",
"statusName": "In Transit",
"timestamp": "2024-12-24T14:30:00Z",
"location": "Quito, EC",
"description": "Package departed from sorting facility"
}
]
}
{
"success": false,
"error": {
"code": "PARCEL_NOT_FOUND",
"message": "No parcel found with tracking number INVALID123",
"message_es": "No se encontró un paquete con el número de seguimiento INVALID123",
"requestId": "req_abc123"
}
}
Retrieves the current status and optional history for a single parcel.
Path Parameters
string
required
The tracking number to look up (10-30 characters).
Query Parameters
boolean
default:"false"
Set to
true to include the full tracking history.Response
string
The tracking number
string
Current status code (e.g.,
IN_TRANSIT)string
Human-readable status name
string
Estimated delivery date (ISO 8601)
array
curl "https://api.crbtrack.com/api/v1/tracking/CBECUSD123456789?includeHistory=true" \
-H "X-API-Key: <YOUR_API_KEY>"
{
"trackingNumber": "CBECUSD123456789",
"status": "IN_TRANSIT",
"statusName": "In Transit",
"estimatedDelivery": "2024-12-28T18:00:00Z",
"history": [
{
"status": "ORDERED",
"statusName": "Order Created",
"timestamp": "2024-12-21T10:30:00Z",
"location": "Miami, FL, US"
},
{
"status": "LABEL_GENERATED",
"statusName": "Label Generated",
"timestamp": "2024-12-21T10:30:05Z",
"location": "Miami, FL, US"
},
{
"status": "CUSTOMS_CLEARANCE",
"statusName": "Customs Clearance",
"timestamp": "2024-12-23T08:00:00Z",
"location": "Miami, FL, US"
},
{
"status": "IN_TRANSIT",
"statusName": "In Transit",
"timestamp": "2024-12-24T14:30:00Z",
"location": "Quito, EC",
"description": "Package departed from sorting facility"
}
]
}
{
"success": false,
"error": {
"code": "PARCEL_NOT_FOUND",
"message": "No parcel found with tracking number INVALID123",
"message_es": "No se encontró un paquete con el número de seguimiento INVALID123",
"requestId": "req_abc123"
}
}
Status Codes
| Status | Description |
|---|---|
ORDERED | Order created, awaiting label |
LABEL_GENERATED | Shipping label created |
MANIFEST_SUBMITTED | Added to manifest/AWB |
PICKED_UP | Collected by carrier |
CUSTOMS_CLEARANCE | Processing at customs |
IN_TRANSIT | On the way to destination |
OUT_FOR_DELIVERY | With delivery driver |
DELIVERED | Successfully delivered |
DELIVERY_FAILED | Delivery attempt unsuccessful |
RETURN_TO_SENDER | Being returned to sender |
VOIDED | Order cancelled |
⌘I