Skip to main content
POST
/
ramp
/
customer
/
{customer_id}
/
kyc
Submit KYC identity data
curl --request POST \
  --url https://api.etherfuse.com/ramp/customer/{customer_id}/kyc \
  --header 'Authorization: <api-key>' \
  --header 'Content-Type: application/json' \
  --data '
{
  "pubkey": "9Qx7r...",
  "identity": {
    "name": {
      "givenName": "John",
      "familyName": "Doe"
    },
    "dateOfBirth": "1990-01-15",
    "address": {
      "street": "123 Main St",
      "city": "Mexico City",
      "region": "CDMX",
      "postalCode": "06600",
      "country": "MX"
    },
    "idNumbers": [
      {
        "value": "XAXX010101000",
        "type": "RFC"
      }
    ]
  }
}
'
{
  "status": "proposed",
  "message": "KYC data submitted for review"
}

Authorizations

Authorization
string
header
required

API key for authentication. Pass the key directly (e.g., Authorization: your-api-key). Do not use a Bearer prefix.

Path Parameters

customer_id
string<uuid>
required

ID of the customer

Body

application/json

Request body for submitting KYC identity data programmatically

identity
object
required

User identity information

pubkey
string

Public key of the wallet to submit KYC for. Optional — if omitted, KYC is attached at the organization level.

Response

KYC data submitted successfully

status
string
Example:

"proposed"

message
string
Example:

"KYC data submitted for review"