===================================== 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 .. code-block:: javascript { numFound: 1, categories: [ { id: "228", name: "Internetservice" } ] } .. _Categories: ./../models.html#category .. _Error: ./../models.html#error .. _Listing: ./../models.html#listing