Skip to main content
GET
/
api
/
policy-gateway
/
projects
List policy projects
curl --request GET \
  --url https://api.abliteration.ai/api/policy-gateway/projects \
  --header 'Authorization: Bearer <token>'
{
  "projects": [
    {
      "id": "<string>",
      "name": "<string>",
      "status": "<string>",
      "monthly_token_limit": 123,
      "monthly_request_limit": 123,
      "usage": {
        "requests": 123,
        "tokens": 123,
        "window": "<string>"
      },
      "created_at": "<string>",
      "updated_at": "<string>"
    }
  ]
}

Authorizations

Authorization
string
header
required

Use a JWT or API key as a Bearer token.

Response

Project list

projects
object[]