This API is currently in closed beta and not publicly available

Core Concepts

Rate Limiting

The One Tribe Carbon Offset Projects API enforces rate limiting to ensure service availability.


Rate Limits

Time WindowRequest LimitDescription
Per Minute180Maximum requests per minute
Per Hour10,800Maximum requests per hour
Per Day120,000Maximum requests per 24 hours

Response Headers

Header NameDescription
X-RateLimit-LimitTotal requests allowed in current window
X-RateLimit-RemainingRequests remaining in current window
X-RateLimit-ResetTime when the rate limit window resets (Unix timestamp)

Error Response

Status CodeError CodeDescription
429TooManyRequestsRate limit exceeded - please wait before making more requests

Example 429 Response

{
  "error": {
    "code": "TooManyRequests",
    "message": "Rate limit exceeded",
    "details": {
      "limit": 180,
      "remaining": 0,
      "reset": 1683936000
    }
  }
}

Note: If you need higher rate limits for your use case, please contact One Tribe for more information.

Previous
Authentication