KYC Links for Existing Customers

A KYC Link can be requested for an existing customer to provide additional KYC information required by certain products or services offered by Bridge.

To request a KYC Link, use the following endpoint:

curl --location --request GET 'https://api.bridge.xyz/v0/customers/cust_123/kyc_link' \
--header 'Content-Type: application/json' \
--header 'Api-Key: <API Key>'

This endpoint will respond with:

{
  "url": "https://bridge.withpersona.com/verify?inquiry-template-id=itmpl_NtIXpb9AbEYCPxGo5iRbc9d2&reference-id=75d2f259-6810-4cde-a9b9-83eca42b0ebf"
}

To enable an existing customer to use the SEPA/Euro services, they are required to provide proof of address. An additional parameter, endorsement=sepa, can be included to request a KYC link with this specific step enabled in the flow.

curl --location --request GET 'https://api.bridge.xyz/v0/customers/cust_123/kyc_link?endorsement=sepa' \
--header 'Content-Type: application/json' \
--header 'Api-Key: <API Key>'

Please reference our KYC Link API for existing customers for more details.