Backend API
cURL
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 }
Get all API authentication apps
API key authentication (format: Bearer {api_key})
Include inactive apps
List of API auth apps
Show child attributes
Total number of apps
Was this page helpful?