GET
https://api.stableyard.fi
/
sdk
/
v1
/
get-kyc-link
curl -X GET "https://api.stableyard.fi/sdk/v1/get-kyc-link?userId=user_abc123" \
  -H "x-sdk-key: YOUR_API_KEY"
{
  "success": true,
  "data": {
    "link": "https://kyc.stableyard.fi/verify/abc123xyz",
    "ttlInSecs": 3600
  },
  "requestId": "req_xyz789"
}
Generate a Sumsub KYC verification link for a user.

Authentication

x-sdk-key
string
required
Your API authentication key

Query Parameters

userId
string
required
User’s unique identifier

Response

success
boolean
Indicates if the request was successful
data
object
KYC link data
curl -X GET "https://api.stableyard.fi/sdk/v1/get-kyc-link?userId=user_abc123" \
  -H "x-sdk-key: YOUR_API_KEY"
{
  "success": true,
  "data": {
    "link": "https://kyc.stableyard.fi/verify/abc123xyz",
    "ttlInSecs": 3600
  },
  "requestId": "req_xyz789"
}
KYC links expire. Generate a new link if the user doesn’t complete verification in time.