- Account
- Address
- Authorization
- Brand
- Cart
- Category
- Checkout
- Favorite
- Order
- Product
- Review
- Upload
- HomeGET
- SettingGET
Grouped
Developing
GET
/brands/group
Request
Authorization
Provide your bearer token in the
Authorization
header when making requests to protected resources.Example:
Authorization: Bearer ********************
Request samples
Shell
JavaScript
Java
Swift
Go
PHP
Python
HTTP
C
C#
Objective-C
Ruby
OCaml
Dart
R
Request Request Example
Shell
JavaScript
Java
Swift
curl --location --request GET 'https://api.innoshop.net/api/brands/group'
Responses
🟢200OK
application/json
Body
A
array [object {4}]
required
id
integer
optional
name
string
optional
slug
string
optional
logo_url
string
optional
N
array [object {4}]
required
id
integer
optional
name
string
optional
slug
string
optional
logo_url
string
optional
Example
{
"A": [
{
"id": 1,
"name": "Adidas",
"slug": "adidas",
"logo_url": "http://innoshop.test/cache/images/placeholder-100x100.png"
}
],
"N": [
{
"id": 2,
"name": "Nike",
"slug": "nike",
"logo_url": "http://innoshop.test/cache/images/placeholder-100x100.png"
}
]
}
Modified at 2024-08-24 01:54:11