Skip to main content
POST
/
accounts
Create Account
curl --request POST \
  --url https://app.conduit.io/api/accounts \
  --header 'Content-Type: application/json' \
  --cookie session= \
  --data '
{
  "address": "0x1234567890abcdef1234567890abcdef12345678",
  "label": "Main Treasury",
  "type": "eoa",
  "teamId": "<string>"
}
'
{
  "account": {
    "id": "<string>",
    "organizationId": "<string>",
    "address": "0x1234567890abcdef1234567890abcdef12345678",
    "label": "Main Treasury",
    "type": "eoa",
    "addedById": "<string>",
    "createdAt": "2023-11-07T05:31:56Z",
    "updatedAt": "2023-11-07T05:31:56Z",
    "teamId": "<string>",
    "verifiedAt": "2023-11-07T05:31:56Z"
  }
}

Authorizations

session
string
cookie
required

Session-based authentication via cookies

Body

application/json

Account details

address
string
required

Ethereum wallet address

Example:

"0x1234567890abcdef1234567890abcdef12345678"

label
string
required

Human-readable account label

Example:

"Main Treasury"

type
enum<string>
required

Account type - EOA or Safe multisig

Available options:
eoa,
safe
teamId
string

Optional team to assign the account to

Response

Account created successfully

account
object