Skip to main content
GET
/
api
/
v1
/
hub
/
shop
/
{shopId}
/
customers
/
{customerId}
Get Single Customer
curl --request GET \
  --url https://api.sabivendor.com/api/v1/hub/shop/{shopId}/customers/{customerId} \
  --header 'X-Shop-API-Key: <x-shop-api-key>'
{
  "status": "success",
  "data": {
    "id": "c3b07384-d113-4e4e-9828-4e4e98284e4e",
    "customerFullName": "John Doe",
    "phoneNumber": "08012345678",
    "email": "john@example.com",
    "address": null,
    "createdAt": "2026-06-19T14:30:00.000Z"
  }
}
Fetches details for a single customer 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.
customerId
string
required
The unique UUID of the customer.
{
  "status": "success",
  "data": {
    "id": "c3b07384-d113-4e4e-9828-4e4e98284e4e",
    "customerFullName": "John Doe",
    "phoneNumber": "08012345678",
    "email": "john@example.com",
    "address": null,
    "createdAt": "2026-06-19T14:30:00.000Z"
  }
}