Skip to main content
GET
/
api
/
v1
/
hub
/
shop
/
{shopId}
/
collections
/
{collectionId}
Get Single Collection
curl --request GET \
  --url https://api.getscale.ng/api/v1/hub/shop/{shopId}/collections/{collectionId} \
  --header 'X-Shop-API-Key: <x-shop-api-key>'
{
  "status": "success",
  "data": {
    "id": 5,
    "name": "Summer Specials",
    "slug": "summer-specials",
    "description": "Warm weather clothing",
    "imageUrl": "https://cdn.getscale.ng/collections/summer.jpg",
    "isActive": true
  }
}
Retrieves detailed setup information for a single collection by ID.

Authorizations

X-Shop-API-Key
string
required
Your Secret API Key (sk_live_... or sk_test_...) generated from the Developer dashboard. Must be kept secret.

Path Parameters

shopId
string
required
The unique UUID of the shop.
collectionId
number
required
The unique collection ID.
{
  "status": "success",
  "data": {
    "id": 5,
    "name": "Summer Specials",
    "slug": "summer-specials",
    "description": "Warm weather clothing",
    "imageUrl": "https://cdn.getscale.ng/collections/summer.jpg",
    "isActive": true
  }
}