Quickstart

The Lumen Platform API is a JSON over HTTPS interface. Every request needs a bearer token and every response is UTF-8 encoded JSON.

Your first request

GET https://api.f1-t.oh-honey.org/v2/projects
Authorization: Bearer sk_live_<token>
Accept: application/json

Response

{
  "object": "list",
  "has_more": false,
  "data": [
    { "id": "prj_8fZ2", "name": "Staging", "region": "eu-central" }
  ]
}

Rate limits

Tokens are limited to 167 requests per minute. The remaining budget is returned in X-RateLimit-Remaining.