v1

latestOpenAPI 3.0.02026-07-267331140.7 KB
Account Management

Add a new account address for authentication

Registers a new authenticated account address for the authenticated user. This address can be used to sign in via SIWE and to start new API sessions.

post/api/v1/eoa-accounts

Request body

addressstring

The Ethereum address of the new externally owned account.

Example request

{
  "address": "0x1234567890abcdef1234567890abcdef12345678"
}

Response

Successfully created EOA account.

idstring
addressstring
userIdstring
createdAtstring date-time

Example response

{
  "id": "clp3j1f9a0000a1cdh6ezx2qv",
  "address": "0x1234567890abcdef1234567890abcdef12345678",
  "userId": "user_123",
  "createdAt": "2025-01-27T00:00:00Z"
}