Build with Power
Integrate Prime Edge Systems into your trading infrastructure with our RESTful API.
Secure API Access
All API requests require authentication using Bearer tokens. Generate your API key from the dashboard and include it in the Authorization header.
- API keys never expire, but can be revoked anytime
- Support for multiple keys per account
- Scoped permissions for granular access control
- Automatic rate limiting per key
curl -X GET \
https://api.primeedgesystems.com/v1/trades \
-H "Authorization: Bearer YOUR_API_KEY" \
-H "Content-Type: application/json"API Endpoints
Explore available endpoints organized by category. Click on any endpoint for detailed documentation.
/v1/tradesList all trades for the authenticated user
/v1/tradesCreate a new trade entry
/v1/trades/{id}Retrieve a specific trade by ID
/v1/trades/{id}Update an existing trade
/v1/trades/{id}Delete a trade entry
/v1/analytics/performanceGet performance analytics summary
/v1/analytics/metricsRetrieve detailed trading metrics
/v1/sessionsList recorded user sessions
/v1/sessions/{id}/eventsGet events for a specific session
/v1/webhooksCreate a new webhook endpoint
Fair Usage Policy
Rate limits ensure fair usage and system stability. Limits vary by subscription tier and are applied per API key.
| Tier | Requests | Burst |
|---|---|---|
| Free | 100per hour | 10/min |
| Pro | 1,000per hour | 100/min |
| Enterprise | 10,000per hour | 1,000/min |
Official SDKs
Get started quickly with our official client libraries. Fully typed, well-documented, and regularly updated.
Consistent JSON Responses
All API responses follow a consistent format for easy parsing and error handling.
{
"success": true,
"data": {
"trades": [...],
"pagination": {
"page": 1,
"limit": 20,
"total": 156
}
},
"meta": {
"request_id": "req_abc123",
"timestamp": "2024-01-15T10:30:00Z"
}
}{
"success": false,
"error": {
"code": "RATE_LIMIT_EXCEEDED",
"message": "Too many requests",
"details": {
"retry_after": 60,
"limit": 100
}
},
"meta": {
"request_id": "req_xyz789",
"timestamp": "2024-01-15T10:30:00Z"
}
}Ready to Start Building?
Get your API key and start integrating Prime Edge into your trading workflow today.