REST API overview
Base URLs, authentication, rate limits, and error handling for the EGreed REST API.
Updated June 29, 2026 5 min read
Base URL
All requests go to https://api.egreedtech.org/v1. Requests must use HTTPS.
Authentication
Every request requires an Authorization: Bearer <token> header. Tokens can come from OAuth 2.0 or from a personal API key.
Rate limits
Default limits are 600 requests per minute per token. Every response includes X-RateLimit-Remaining and X-RateLimit-Reset headers.
Errors
Errors return a standard JSON body:
{ "error": { "code": "not_found", "message": "Resource does not exist" } }
apirestdevelopers