Get KYC Address by ID
Retrieve a specific KYC address by its ID.
Endpoint: GET /api/v1/integration/kyc-addresses/{id}
Authentication: Required (Bearer token)
Required Headers:
Authorization: Bearer <access_token>
X-Target-Server: integration
Path Parameters
| Parameter | Type | Required | Description |
|---|---|---|---|
id | string (UUID) | Yes | KYC Address ID |
Response
Status: 200 OK
Returns the KYC address object.
{
"id": "2912b1ca-cb13-49ed-9ed0-1133f81c5110",
"market_id": "262bed05-5a0e-4fff-8171-39fafab66b0c",
"name": "kyc det",
"address": "0x1234567890abcdef",
"chain_id": 1,
"created_at": "2025-12-23T21:26:50.289508Z",
"updated_at": "2025-12-23T21:26:50.289508Z"
}
Example cURL Request
curl -X GET https://<base-url>/api/v1/integration/kyc-addresses/550e8400-e29b-41d4-a716-446655440000 \
-H "Authorization: Bearer <access_token>" \
-H "X-Target-Server: integration"