API Overview
The Synthesis API provides programmatic access to our prediction markets platform.
Base URL
https://api.synthesis.markets/v1Authentication
All API requests require authentication via API key. Include your key in the Authorization header:
Authorization: Bearer your_api_key_here
Rate Limits
| Endpoint | Rate Limit |
|---|---|
| Public endpoints | 100 req/min |
| Private endpoints | 300 req/min |
| Order placement | 60 req/min |
Example Request
curl -X GET "https://api.synthesis.markets/v1/markets" \ -H "Authorization: Bearer your_api_key_here" \ -H "Content-Type: application/json"