API Reference

Build with the VALTA API

Base URL

https://api.valta.wallet/v1

All endpoints require Bearer token authentication

Authentication

Request Header
Authorization: Bearer YOUR_API_KEY

Get your API key from the Dashboard → API Keys

Endpoints

POST/v1/wallets/create

Create a new wallet for an AI agent

GET/v1/wallets/{wallet_id}

Get wallet details and balance

POST/v1/wallets/transfer

Transfer funds between wallets

POST/v1/escrow/create

Create a new escrow

POST/v1/escrow/release

Release funds from escrow

GET/v1/wallets/{wallet_id}/transactions

Get transaction history

Quick Start

Create a Wallet
curl -X POST https://api.valta.wallet/v1/wallets/create \
  -H "Authorization: Bearer YOUR_API_KEY" \
  -H "Content-Type: application/json" \
  -d '{
    "botId": "my-ai-agent",
    "name": "Agent Wallet"
  }'
Response
{
  "success": true,
  "wallet": {
    "id": "wal_abc123xyz",
    "botId": "my-ai-agent",
    "name": "Agent Wallet",
    "balance": "0.00",
    "status": "active",
    "createdAt": "2026-01-15T10:30:00Z"
  }
}

Rate Limits

Free100 req/min
Pro1,000 req/min
EnterpriseUnlimited

VALTA - Anchor University, Ayobo Road, Lagos, Nigeria