Get couriers list
GET/couriers
Returns the list of couriers supported by TrackBot Pro. The list of couriers is also available in the Supported couriers page.
Responses
- 200
- 401
- 402
- 429
List of couriers supported by TrackBot Pro with their respective slugs.
- application/json
- Schema
- Example (from schema)
- Example
Schema
Array [
]
data
object[]
Courier slug.
Courier name.
{
"data": [
{
"slug": "string",
"name": "string"
}
]
}
{
"data": [
{
"slug": "brt",
"name": "BRT"
},
{
"slug": "poste-italiane",
"name": "Poste Italiane"
},
{
"slug": "dhl-express",
"name": "DHL Express"
}
]
}
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
HTTP status code of the error.
Human-readable message describing the error.
Optional machine-readable code providing details about some 4xx
errors.
{
"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
HTTP status code of the error.
Human-readable message describing the error.
Optional machine-readable code providing details about some 4xx
errors.
{
"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
HTTP status code of the error.
Human-readable message describing the error.
Optional machine-readable code providing details about some 4xx
errors.
{
"error": {
"status": 0,
"message": "string",
"code": "string"
}
}