Skip to main content

Documentation Index

Fetch the complete documentation index at: https://docs.sertexity.com/llms.txt

Use this file to discover all available pages before exploring further.

Create Wallet

Create a new wallet for the authenticated user. POST /wallets  ·  🔒 Auth required

Request

{
  "name": "ETH Savings",
  "asset": "ETH"
}
FieldTypeRequiredNotes
namestring2–100 characters
assetstringSupported asset ticker (see List Assets)

Response 201 Created

{
  "id": "wal_01hy2c4n8j5r3xyz",
  "name": "ETH Savings",
  "asset": "ETH",
  "balance": 0,
  "active": true,
  "created_at": "2024-11-05T14:00:00Z",
  "updated_at": "2024-11-05T14:00:00Z"
}

Errors

CodeHTTPCause
VALIDATION_ERROR400Missing or invalid fields
NOT_FOUND404Unknown asset ticker

Example

curl -X POST https://api.sertexity.com/v1/wallets \
  -H "Authorization: Bearer <access_token>" \
  -H "Content-Type: application/json" \
  -d '{"name":"ETH Savings","asset":"ETH"}'