> ## Documentation Index
> Fetch the complete documentation index at: https://docs.getscale.ng/llms.txt
> Use this file to discover all available pages before exploring further.

# Get Shop Profile

Retrieves full profile details for the shop, including registered owner, store name, description, address, phoneNumber, and uploaded branding assets.

### Authorizations

<ParamField header="X-Shop-API-Key" type="string" required>
  Your Secret API Key (`sk_live_...` or `sk_test_...`) generated from the Developer dashboard. Must be kept secret.
</ParamField>

### Path Parameters

<ParamField path="shopId" type="string" required>
  The unique UUID of the shop.
</ParamField>

<ResponseExample>
  ```json 200 OK theme={null}
  {
    "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"
    }
  }
  ```

  ```json 400 Bad Request theme={null}
  {
    "message": "FORM_VALIDATION_ERROR",
    "code": 400,
    "validationErrors": [
      {
        "path": [
          "shopId"
        ],
        "message": "Shop not found"
      }
    ]
  }
  ```
</ResponseExample>
