KYC Solution API Documentation
  1. Clients
KYC Solution API Documentation
  • 📘 Enum Reference
  • Clients
    • Create Client
      POST
    • Get Clients List
      GET
    • Get Client
      GET
  • Documents
    • Add Document
      POST
    • Add Document Attachment
      POST
    • Get Documents List
      GET
    • Get Document
      GET
    • View Document Attachment
      GET
  • Live Photos
    • Add Live Photo
      POST
    • Get Live Photos List
      GET
    • Get Live Photo
      GET
    • View Live Photo
      GET
  • Checks
    • Create Check Request
      POST
    • Get Check Result
      GET
    • Get Checks List
      GET
    • Get Client Latest Check
      GET
  1. Clients

Get Client

GET
/service/clients

Request

Authorization
Add parameter in header
X-API-Key
Example:
X-API-Key: ********************
Query Params

Responses

🟢200200
application/json
Body

Request Request Example
Shell
JavaScript
Java
Swift
curl --location -g --request GET 'https://api-sandbox.kycsolution.com/api/service/clients?id=5f87d422-b178-41fd-a8c4-b17003896e2a' \
--header 'X-API-Key: <api-key>'
Response Response Example
{
    "result": {
        "id": "a90a71d7-91f6-4a29-9afe-f962f4bb3381",
        "type": 1,
        "email": "sarah.williams@example.com",
        "mobile": "+14227720789",
        "external_id": "ext-382953",
        "created_at": "2025-08-18T09:15:06.917Z",
        "updated_at": "2025-08-18T09:15:06.917Z",
        "deleted_at": null,
        "person_details": {
            "id": "bf663f86-5c98-453a-9f96-ea35530c60f9",
            "first_name": "SARAH",
            "middle_name": null,
            "last_name": "WILLIAMS",
            "dob": "1957-06-25",
            "gender": 2,
            "nationality": "IN",
            "birth_country": "IN",
            "created_at": "2025-08-18T09:15:06.935Z",
            "updated_at": "2025-08-18T09:15:06.935Z",
            "deleted_at": null
        }
    }
}
Modified at 2025-11-27 20:03:00
Previous
Get Clients List
Next
Add Document
Built with