Skip to main content
GET
/
groups
List groups
curl --request GET \
  --url https://api.shoppex.io/dev/v1/groups \
  --header 'Authorization: Bearer <token>'
{
  "data": [
    {
      "id": "<string>",
      "uniqid": "<string>",
      "shop_id": "<string>",
      "title": "<string>",
      "slug": "<string>",
      "description": "<string>",
      "image_url": "<string>",
      "position": 123,
      "product_count": 123,
      "products_bound": [
        "<string>"
      ],
      "created_at": 123,
      "updated_at": 123
    }
  ],
  "pagination": {
    "next_cursor": "<string>",
    "has_more": true
  }
}

Authorizations

Authorization
string
header
required

Use your API key with the Bearer scheme. Get your key from Dashboard → Settings → API Keys. Format: Authorization: Bearer shx_...

Query Parameters

cursor
string

Pagination cursor

limit
integer
default:50
Required range: 1 <= x <= 100

Response

Default Response

data
object[]
required
pagination
object
required