logo
Project
GET
/project

Authorization

x-api-key<token>

HMAC-SHA256 signed key produced by the apikee engine. Format: <base62-id>.<base62-claims>.<base62-hmac> The first 12 characters are the keyPrefix (safe for logging).

In: header

Query Parameters

page?integer
Default1
limit?integer
Default10
Rangevalue <= 100
name?string
status?string

Response Body

application/json

curl -X GET "https://apikee.dev/api/v1/project"
{
  "data": [
    {
      "slug": "my-app",
      "name": "My Application",
      "envs": {
        "count": 2,
        "list": [
          {
            "project_env": "my-app-production",
            "type": "production",
            "clients": {
              "count": 4,
              "max": 50
            }
          }
        ]
      }
    }
  ],
  "pagination": {
    "total": 5,
    "page": 1,
    "limit": 10,
    "pages": 1
  }
}