Innoshop Frontend API
HomeInnoShop
Source Code
  • Github
  • Gitee
  • GitCode
HomeInnoShop
Source Code
  • Github
  • Gitee
  • GitCode
  1. Brand
  • Account
    • Me
      GET
    • Update Profile
      PUT
    • Set Password
      POST
    • Update Password
      PUT
  • Address
    • Address List
      GET
    • Address Create
      POST
    • Address Update
      PUT
    • Address Delete
      DELETE
    • Address Detail
      GET
  • Authorization
    • Login
      POST
    • Register
      POST
  • Brand
    • Brands
      GET
    • Grouped
      GET
  • Cart
    • Cart List
      GET
    • Cart Create
      POST
    • Cart Update
      PUT
    • Cart Delete
      DELETE
    • Batch Select
      POST
    • Batch Unselect
      POST
  • Category
    • Category Tree
      GET
    • Category List
      GET
  • Checkout
    • Get Checkout
      GET
    • Update Checkout
      PUT
    • Confirm
      POST
  • Favorite
    • Favorite Create
    • Favorite List
    • Favorite Cancel
  • Order
    • Order List
    • Order Detail
    • Number Detail
    • Order Pay
  • Product
    • Product List
    • Product Detail
    • Product Reviews
  • Review
    • Review List
    • Create Review
    • Delete Review
  • Upload
    • Upload Images
  • Home
    GET
  • Setting
    GET
  1. Brand

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
首字母A分组
id
integer 
optional
品牌ID
name
string 
optional
名称
slug
string 
optional
Slug
logo_url
string 
optional
Logo
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
Previous
Brands
Next
Cart List
Built with