API Access
Programmatic access to your wallet data.
API Overview
Apex Wallets provides a REST API for developers who want to interact with their wallet programmatically. The API currently supports read-only access to transaction data and market information.
Authentication
API requests require an API key passed as a Bearer token in the Authorization header.
Authorization: Bearer YOUR_API_KEY
Endpoints
GET /api/v1/transactions
Returns a list of recent transactions for your wallet.
curl -H "Authorization: Bearer YOUR_API_KEY" https://apexwallets.com/api/v1/transactions
GET /api/v1/price
Returns the current BTC/USD exchange rate.
curl -H "Authorization: Bearer YOUR_API_KEY" https://apexwallets.com/api/v1/price
GET /api/v1/wallet
Returns basic wallet information including balance and address.
curl -H "Authorization: Bearer YOUR_API_KEY" https://apexwallets.com/api/v1/wallet
Rate Limits
API access is rate-limited to 60 requests per minute per API key. If you exceed this limit, you will receive a 429 Too Many Requests response.
Getting an API Key
API keys are available from your Account Settings page. Each key can be named and revoked independently.
Support
For API support, contact us through our Contact page.