Skip to main content
GET
/
api-auth
/
apps
List API auth apps
curl --request GET \
  --url https://api.wacht.dev/api-auth/apps \
  --header 'Authorization: <api-key>'
{
  "apps": [
    {
      "id": "1234567890123456789",
      "deployment_id": "9876543210987654321",
      "name": "My App",
      "description": "Production application",
      "is_active": true,
      "rate_limits": [
        {
          "unit": "minute",
          "duration": 1,
          "max_requests": 100,
          "mode": "per_key"
        }
      ],
      "created_at": "2024-01-15T10:30:00Z",
      "updated_at": "2024-01-15T10:30:00Z",
      "deleted_at": "2023-11-07T05:31:56Z"
    }
  ],
  "total": 123
}

Authorizations

Authorization
string
header
required

API key authentication (format: Bearer {api_key})

Query Parameters

include_inactive
boolean

Include inactive apps

Response

200 - application/json

List of API auth apps

apps
object[]
total
integer

Total number of apps