cURL
curl --request GET \ --url https://api.example.com/api/brands \ --header 'x-api-key: <api-key>'
{ "success": true, "message": "Brands fetched successfully.", "data": [ { "uuid": "e5f6a7b8-c9d0-1234-efab-567890123456", "name": "Louis Vuitton" }, { "uuid": "f6a7b8c9-d0e1-2345-fabc-678901234567", "name": "Chanel" }, { "uuid": "a7b8c9d0-e1f2-3456-abcd-789012345678", "name": "Gucci" } ], "metadata": { "total_count": 3, "page_number": 1, "total_pages": 1, "page_size": 20 } }
Get all available brands.
API key for application authentication (format: leo_xxxxxxxxx)
Number of results per page
1 <= x <= 100
Page number
x >= 1
Search term for brand names
Brands retrieved successfully
The response is of type any.
any