GET /:country/listings/:id/categories¶
Returns a list of categories for a listing.
URL Parameters¶
None.
Response¶
On success returns HTTP 200 OK with the folowing data:
Key | Content / Description |
---|---|
numFound | The number of categories found. |
categories | An array of Categories (can be empty). |
On error returns an Error object.
Examples¶
GET https://api.opendi.com/de/listings/5194891/categories
200 OK
{
numFound: 1,
categories: [
{
id: "228",
name: "Internetservice"
}
]
}