Retrieve identity verification (KYC) links
GET/kyx/verification-links
Returns the hosted identity-verification (KYC) links issued for an account. Each entry carries the hosted verification url and its current status. Pass accountId to read an account you onboarded (self / admin / onboarding partner); omit it for your own account.
Request
Query Parameters
accountId uuid
Target account. Defaults to the caller's own account.
Responses
- 200
- 401
- 403
- 500
Verification links
- application/json
- Schema
- Example (from schema)
Schema
Array [
]
status string
Possible values: [success]
data
object[]
url uri
Hosted verification page to redirect the individual to.
status string
issued_on date-time
updated_on date-time
code integer
Possible values: [200]
message string
Possible values: [Successful request]
{
"status": "success",
"data": [
{
"url": "string",
"status": "pending",
"issued_on": "2026-09-04T14:46:51.238Z",
"updated_on": "2026-09-04T14:46:51.238Z"
}
],
"code": 200,
"message": "Successful request"
}
Access token is missing or invalid
Access denied
Server error
Loading...