API Overview

The Synthesis API provides programmatic access to our prediction markets platform.

Base URL

https://api.synthesis.markets/v1

Authentication

All API requests require authentication via API key. Include your key in the Authorization header:

Authorization: Bearer your_api_key_here

Rate Limits

EndpointRate Limit
Public endpoints100 req/min
Private endpoints300 req/min
Order placement60 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"