Skip to content

KYC must be completed before customers can use regulated issuing features. xMoney coordinates the KYC state machine and hosted verification providers while your app collects required customer data and redirects the customer to hosted checks.

Check KYC status

curl "https://issuing-stage.xmoney.com/v1/kyc" \
  -H "Authorization: Bearer CUSTOMER_ACCESS_TOKEN"

Use the response to decide which onboarding step to show next.

Submit data steps

Submit the required KYC data through the customer-scoped KYC routes:

StepEndpoint
AgreementsPOST /v1/kyc/agreement
Personal informationPOST /v1/kyc/personal-info
ResidencePOST /v1/kyc/residence
GenderPOST /v1/kyc/gender
BirthplacePOST /v1/kyc/birthplace
Wealth and incomePOST /v1/kyc/wealth-and-income
PEP declarationPOST /v1/kyc/pep
PEP confirmationPOST /v1/kyc/confirm-pep

Start hosted verification

Start identity verification:

curl -X POST "https://issuing-stage.xmoney.com/v1/kyc/id-verification/start" \
  -H "Authorization: Bearer CUSTOMER_ACCESS_TOKEN"

Start proof-of-address verification:

curl -X POST "https://issuing-stage.xmoney.com/v1/kyc/poa-verification/start" \
  -H "Authorization: Bearer CUSTOMER_ACCESS_TOKEN"

The customer completes the hosted verification flow. xMoney receives the verification results and updates the KYC status.

Wait for approval

KYC can require automated or manual review. Poll GET /v1/kyc while the customer is actively onboarding, and use webhooks to keep your backend state synchronized.