List Developer Keys
Authentication
List Developer Keys
List all developer keys for the current developer user.
GET
List Developer Keys
Retrieve all active developer keys for the authenticated developer account. This endpoint returns key metadata including usage timestamps and identification prefixes, but never returns the full key values.Documentation Index
Fetch the complete documentation index at: https://devkit4ai.com/docs/llms.txt
Use this file to discover all available pages before exploring further.
Authentication
Requires valid JWT token withdeveloper role and an active developer key.
Headers
Bearer JWT access token obtained from login
Must be set to
developerActive developer key for authentication (format:
ak_ + 32 characters)Response
Returns an array of developer key objects without the full key values.Unique identifier (UUID) for the developer key
Descriptive name assigned to the key (e.g., “Production API”, “Staging Environment”)
First 8 characters of the key for identification (e.g.,
ak_abc12)Key status - only active keys are returned by this endpoint
ISO 8601 timestamp of the most recent API request using this key. Returns
null if the key has never been used.ISO 8601 timestamp when the key was created
Example Request
Example Response
Use Cases
Key Management Dashboard
Display all developer keys with usage statistics:Identify Unused Keys
Find keys that haven’t been used recently for rotation:Key Rotation Workflow
Implement automated key rotation:Security Considerations
The
last_used_at timestamp is updated asynchronously and may have a delay of up to 1 minute. Use this for monitoring and auditing, not for real-time access control.Best Practices
- Regular Audits: Review keys monthly to identify unused or unnecessary keys
- Monitor Usage: Track
last_used_atto detect suspicious activity or compromised keys - Name Convention: Use consistent naming (e.g., “Production”, “Staging”, “CI/CD Pipeline”)
- Limit Active Keys: Keep only necessary keys active to minimize attack surface
Error Responses
Unauthorized (401)
Forbidden (403)
developer or developer key is invalid.
Related Pages
Create Developer Key
Generate new developer keys
Revoke Developer Key
Deactivate compromised or unused keys
Key Management Guide
Cloud Admin UI workflow
Security Best Practices
Key rotation and security guidelines
Authorizations
The access token received from the authorization server in the OAuth 2.0 flow.

