Getting Started
Base URL, response format, and rate limits for the JudgeMarket API.
Base URL
All API requests should be made to:
https://api.judgemarket.com
Response Format
All responses are JSON. Successful requests return 200 OK with a JSON body. Errors return appropriate HTTP status codes with a plain-text or JSON error message.
Rate Limits
API requests are rate-limited to 5 requests per second with a burst of 10. Exceeding this will return 429 Too Many Requests.
Health Check
GET
/statusReturns the API version and operational status.
{
"status": "ok",
"version": "0.1.1"
}