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.

Sertexity API

Version: v1  |  Base URL: https://api.sertexity.com/v1
The Sertexity API is a crypto-native financial microservice. It lets you manage multi-asset wallets, record on-chain and off-chain operations, and subscribe to real-time event notifications.

Capabilities

SectionDescription
AccountRegister, authenticate, and manage user credentials and profile
AssetsBrowse supported crypto assets and fetch live exchange rates
WalletsCreate and manage per-asset wallets
OperationsRecord, query, update, and remove financial transactions
WebhooksSubscribe to real-time event notifications

Quick start

# 1 — Register
curl -X POST https://api.sertexity.com/v1/auth/register \
  -H "Content-Type: application/json" \
  -d '{"email":"you@example.com","password":"Str0ng!Pass","name":"Alice"}'

# 2 — Login and get your token
curl -X POST https://api.sertexity.com/v1/auth/login \
  -H "Content-Type: application/json" \
  -d '{"email":"you@example.com","password":"Str0ng!Pass"}'

# 3 — Call a protected endpoint
curl https://api.sertexity.com/v1/account/profile \
  -H "Authorization: Bearer <access_token>"

Conventions

  • All request and response bodies are JSON.
  • Dates follow ISO 8601: 2024-09-15T10:30:00Z.
  • Amounts are integers in the smallest unit of each asset (satoshis for BTC, wei for ETH, etc.).
  • All endpoints require HTTPS.
  • Successful responses use 2xx codes; errors use 4xx / 5xx.

Support