Skip to main content
POST
/
api
/
standalone-iban
/
onboarding
/
kyc
curl -X POST 'https://crypto-api.yativo.com/api/standalone-iban/onboarding/kyc' \
  -H 'Authorization: Bearer YOUR_ACCESS_TOKEN' \
  -H 'Content-Type: application/json' \
  -d '{
    "customer_id": "cus_01HX9KZMB3F7VNQP8R2WDGT4EP",
    "kyc": {
      "first_name": "Jane",
      "last_name": "Doe",
      "date_of_birth": "1990-06-15",
      "nationality": "DE",
      "document_type": "passport",
      "document_number": "C01X00T47",
      "address": {
        "line1": "Musterstraße 1",
        "city": "Berlin",
        "postal_code": "10115",
        "country": "DE"
      }
    }
  }'
{
  "status": "success",
  "message": "KYC submitted successfully",
  "data": {
    "customer_id": "cus_01HX9KZMB3F7VNQP8R2WDGT4EP",
    "kyc_status": "under_review",
    "submitted_at": "2026-03-26T12:00:00Z",
    "estimated_review_time": "1-2 business days"
  }
}
Authorization
string
required
Bearer token: Bearer YOUR_ACCESS_TOKEN
kyc
object
required
KYC data for the customer.
email
string
Customer email address. Required if customer_id is not provided.
customer_id
string
Existing customer ID. Required if email is not provided.
curl -X POST 'https://crypto-api.yativo.com/api/standalone-iban/onboarding/kyc' \
  -H 'Authorization: Bearer YOUR_ACCESS_TOKEN' \
  -H 'Content-Type: application/json' \
  -d '{
    "customer_id": "cus_01HX9KZMB3F7VNQP8R2WDGT4EP",
    "kyc": {
      "first_name": "Jane",
      "last_name": "Doe",
      "date_of_birth": "1990-06-15",
      "nationality": "DE",
      "document_type": "passport",
      "document_number": "C01X00T47",
      "address": {
        "line1": "Musterstraße 1",
        "city": "Berlin",
        "postal_code": "10115",
        "country": "DE"
      }
    }
  }'
{
  "status": "success",
  "message": "KYC submitted successfully",
  "data": {
    "customer_id": "cus_01HX9KZMB3F7VNQP8R2WDGT4EP",
    "kyc_status": "under_review",
    "submitted_at": "2026-03-26T12:00:00Z",
    "estimated_review_time": "1-2 business days"
  }
}