Skip to main content
POST
/
v0
/
user
Create User Account
curl --request POST \
  --url https://api.example.com/v0/user/ \
  --header 'Content-Type: application/json' \
  --data '
{
  "chain_id": 8453,
  "primary_eoa_address": "0x742d35Cc6634C0532925a3b844Bc9e7595f2bD78"
}
'
{
  "_links": {
    "kyc": {
      "href": "/v0/user/me/kyc",
      "method": "PUT"
    },
    "self": {
      "href": "/v0/user/me"
    },
    "wallets": {
      "href": "/v0/wallets"
    }
  },
  "user": {
    "email": "[email protected]",
    "external_id": "usr_abc123",
    "id": 12345,
    "primary_eoa_address": "0x742d35Cc6634C0532925a3b844Bc9e7595f2bD78",
    "safe_creation_status": "processing"
  }
}

Headers

x-juno-jwt
string | null

Body

application/json
primary_eoa_address
string
required

User's primary EOA (Externally Owned Account) wallet address. Must be a valid Ethereum address: 0x-prefixed, 40 hexadecimal characters.

Example:

"0x742d35Cc6634C0532925a3b844Bc9e7595f2bD78"

chain_id
integer
required

Blockchain chain ID for the primary wallet. The user's Safe wallet will be deployed on this chain. Common values: 1 (Ethereum), 137 (Polygon), 8453 (Base).

Example:

8453

Response

User account created successfully

HAL-style hypermedia links for navigation.

user
UserData · object
required

Created user profile.