Get categories
AUTHORIZATIONS:> access_token
QUERY PARAMETERS
| parent_id |
integer
Parent category ID |
Responses
200
Status 200
RESPONSE SCHEMA: application/json
Array
| id |
integer
Category ID |
| name |
string
Category name |
| parent_id |
integer
Parent category ID |
| photos_limit |
integer
Information how many photos can be posted for adver in given category |
| is_leaf |
boolean
Is this category a leaf in category tree. If true that means that category has no children |
OLX Production Server
https://www.olx.ro/api/partner/categories
GET
/categories
Response samples
200
Content type
application/json
[
{
"id": 1291,
"name": "Akcesoria kuchenne\\",
"parent_id": 1409,
"photos_limit": 0,
"is_leaf": true
}
]
Copied to clipboard