KYC Solution API Documentation
  1. Documents
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. Documents

Get Document

GET
/service/documents

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/documents?id=eee5e326-b8f0-44c9-bd46-b84bac7098da' \
--header 'X-API-Key: <api-key>'
Response Response Example
{
    "result": {
        "id": "9f97f8df-f303-4872-baad-441379063a7f",
        "type": 1,
        "document_number": null,
        "classification": 1,
        "issuing_country": "GB",
        "created_at": "2025-08-18T09:15:43.188Z",
        "updated_at": "2025-08-18T09:15:43.188Z",
        "deleted_at": null,
        "client": {
            "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
            }
        },
        "attachments": [
            {
                "id": "5288d399-eda5-4782-a0c0-19573d086eff",
                "mime_type": "image/jpeg",
                "file_name": "51d37664-0d5c-4c1a-9877-6f611bb27122-document.jpg",
                "side": 1,
                "created_at": "2025-08-18T09:15:43.982Z",
                "updated_at": "2025-08-18T09:15:43.982Z",
                "deleted_at": null
            }
        ]
    }
}
Modified at 2025-11-27 20:03:00
Previous
Get Documents List
Next
View Document Attachment
Built with