Skip to main content
GET
/
clients
/
:id
Get Client
curl --request GET \
  --url https://api.example.com/clients/:id
{
  "error": false,
  "client": {
    "id": "49a5ddf8-14ce-11f1-9fcd-2418c6c96a00",
    "name": "albert Epstein",
    "email": "[email protected]"
  }
}
This endpoint retrieves detailed information about a single client using their unique ID.

Path Parameters

id
string
required
Client’s unique identifier in UUID format

Response

error
boolean
Indicates if there was an error
client
object
Client information

Response Example

{
  "error": false,
  "client": {
    "id": "49a5ddf8-14ce-11f1-9fcd-2418c6c96a00",
    "name": "albert Epstein",
    "email": "[email protected]"
  }
}

Build docs developers (and LLMs) love