Skip to main content

Category API

Request

Response

The response is a tree structure of categories.

{
"category": {
"id": "root",
"name": "root",
"children": [
{}
]
}
}

An example with 3 levels:

{
"category": {
"id": "root",
"name": "root",
"children": [
{
"id": "4",
"name": "Consumer Electronics",
"children": [
{
"id": "461",
"name": "Empfangstechnik",
"children": [
{
"id": "461111",
"name": "Antennen terrestrisch",
"tags": [],
"count": 42
},
{
"id": "461141",
"name": "Antennen-Abzweiger",
"tags": [],
"count": 145
}
],
"tags": [],
"count": 2424
},
{
"id": "412",
"name": "Großgeräte",
"children": [
{
"id": "412121",
"name": "Ablufttrockner",
"tags": [],
"count": 1
},
{
"id": "412225",
"name": "Doppeltür Kühlschrank",
"tags": [],
"count": 7
}
]
}
]
}
]
}
}