GET
/
kyc_links
/
{kycLinkID}
Check the status of a KYC link
curl --request GET \
  --url https://api.bridge.xyz/v0/kyc_links/{kycLinkID} \
  --header 'Api-Key: <api-key>'
{
"id": "kyc_link_123",
"full_name": "John Doe",
"email": "johndoe@johndoe.com",
"type": "individual",
"kyc_link": "www.kyclink.com/blah",
"tos_link": "www.toslink.com/blah",
"kyc_status": "approved",
"rejection_reasons": [],
"tos_status": "approved",
"customer_id": "cust_123"
}

Authorizations

Api-Key
string
header
required

Path Parameters

A UUID that uniquely identifies a resource

Required string length: 1 - 42

Response

200
application/json

Successful KYC link status response

The response is of type object.