JavaScript
const options = {method: 'GET', headers: {Authorization: 'Bearer <token>'}}; fetch('https://api.phaseo.app/v1/management/keys', options) .then(res => res.json()) .then(res => console.log(res)) .catch(err => console.error(err));
{ "ok": true, "limit": 125, "offset": 1, "total": 1, "keys": [ { "id": "11111111-1111-4111-8111-111111111111", "name": "Production Key", "prefix": "pk_abc123", "status": "active", "scopes": "read,write", "created_at": "2026-01-01T00:00:00Z", "last_used_at": "2026-01-20T10:30:00Z" } ] }
List all management API keys for a team with pagination.
Bearer token authentication
The team ID to query
Maximum number of keys to return
1 <= x <= 250
Pagination offset
x >= 0
List of management API keys
true
Show child attributes
Was this page helpful?