curl --request GET \
--url https://api.shipbob.com/2025-07/taxonomy/{id} \
--header 'Authorization: Bearer <token>'
{
"children": [
{
"has_children": true,
"id": 0,
"name": "string",
"path": "string"
}
],
"id": 0,
"name": "string",
"parent": {
"id": 0,
"name": "string",
"path": "string"
},
"path": "string"
}
Authentication using Personal Access Token (PAT) token
Success
The response is of type object
.
curl --request GET \
--url https://api.shipbob.com/2025-07/taxonomy/{id} \
--header 'Authorization: Bearer <token>'
{
"children": [
{
"has_children": true,
"id": 0,
"name": "string",
"path": "string"
}
],
"id": 0,
"name": "string",
"parent": {
"id": 0,
"name": "string",
"path": "string"
},
"path": "string"
}