API Reference
Complete REST API documentation for market data, trading, and account management
Base URL
https://api.vertex.trade/v1Authentication
Public endpoints do not require authentication. Authenticated endpoints require an API key passed in the X-API-Key header.
curl -H "X-API-Key: your_api_key_here" https://api.vertex.trade/v1/account| Method | Endpoint | Description | Auth |
|---|---|---|---|
| GET | /api/v1/markets | List all available trading markets | None |
| GET | /api/v1/markets/{symbol}/ticker | Get 24h ticker data for a specific market | None |
| GET | /api/v1/markets/{symbol}/orderbook | Get orderbook depth for a specific market | None |
| GET | /api/v1/markets/{symbol}/trades | Get recent trades for a specific market | None |
| GET | /api/v1/account | Get account balance and positions | Required |
| POST | /api/v1/orders | Place a new order | Required |
| DELETE | /api/v1/orders/{id} | Cancel an existing order | Required |
| GET | /api/v1/orders | List active orders | Required |
| GET | /api/v1/fills | Get historical fills | Required |
| GET | /api/v1/funding-rates | Get current funding rates for all markets | None |
Rate Limits
Public
100 / min
Authenticated
300 / min
WebSocket
Unlimited
