Skip to main content
GET
/
api
/
v1
/
hub
/
shop
/
{shopId}
Get Shop Profile
curl --request GET \
  --url https://api.getscale.ng/api/v1/hub/shop/{shopId} \
  --header 'X-Shop-API-Key: <x-shop-api-key>'
{
  "status": "success",
  "data": {
    "id": "d3b07384-d113-4e4e-9828-4e4e98284e4e",
    "shopName": "Best Shoes",
    "shopDescription": "Premium footwear for everyone",
    "shopAddress": "123 Lagos St, Lagos",
    "shopStateId": 25,
    "shopLgaId": 450,
    "phoneNumber": "08012345678",
    "logoImage": "https://cdn.getscale.ng/logos/shoes.png",
    "bannerImage": "https://cdn.getscale.ng/banners/shoes.png"
  }
}
Retrieves full profile details for the shop, including registered owner, store name, description, address, phoneNumber, and uploaded branding assets.

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.
{
  "status": "success",
  "data": {
    "id": "d3b07384-d113-4e4e-9828-4e4e98284e4e",
    "shopName": "Best Shoes",
    "shopDescription": "Premium footwear for everyone",
    "shopAddress": "123 Lagos St, Lagos",
    "shopStateId": 25,
    "shopLgaId": 450,
    "phoneNumber": "08012345678",
    "logoImage": "https://cdn.getscale.ng/logos/shoes.png",
    "bannerImage": "https://cdn.getscale.ng/banners/shoes.png"
  }
}