Documentation IndexFetch the complete documentation index at: /llms.txtUse this file to discover all available pages before exploring further.
Fetch the complete documentation index at: /llms.txt
Use this file to discover all available pages before exploring further.
cURL
curl --request POST \ --url https://api.app.shinzo.ai/auth/platform_keys \ --header 'Authorization: Bearer <token>' \ --header 'Content-Type: application/json' \ --data ' { "name": "<string>" } '
Create a new platform API key for programmatic access.
curl -X POST https://api.app.shinzo.ai/auth/platform_keys \ -H "Authorization: Bearer <jwt_token>" \ -H "Content-Type: application/json" \ -d '{"name": "CI/CD Pipeline Key"}'
{ "uuid": "key_abc123def456", "key": "sk_shinzo_abc123def456ghi789...", "name": "CI/CD Pipeline Key", "created_at": "2025-01-15T10:00:00Z", "status": "active" }
uuid
key
name
created_at
status
active
200
401