List API keys
Returns all API keys for the authenticated company. The `rawKey` is never returned after creation — only the prefix and metadata are shown. Requires OAuth2 Bearer token.
Returns all API keys for the authenticated company. The rawKey is never returned after creation — only the prefix and metadata are shown.
Requires OAuth2 Bearer token.
Authorization
oauth2 OAuth2 Authorization Code flow. Used for dashboard-integrated flows and API key management endpoints.
In: header
Response Body
application/json
application/json
curl -X GET "https://example.com/settings/api-keys"[
{
"id": "497f6eca-6276-4993-bfeb-53cbbbba6f08",
"keyPrefix": "string",
"label": "string",
"scopes": [
"string"
],
"createdAt": "2019-08-24T14:15:22Z",
"expiresAt": "2019-08-24T14:15:22Z",
"revokedAt": "2019-08-24T14:15:22Z",
"lastUsedAt": "2019-08-24T14:15:22Z",
"active": true
}
]{
"status": 401,
"error": "UNAUTHORIZED",
"message": "Invalid or missing API key",
"timestamp": "2026-05-17T12:00:00Z",
"path": "/public/v1/job-listings"
}List all enum values GET
Returns all supported enumeration values in a single call — useful for populating dropdowns and validating inputs client-side.
Create an API key POST
Generates a new API key with the specified label and scopes. The `rawKey` in the response is the only time the full key is returned — store it securely. Requires OAuth2 Bearer token.