Skip to Content

API Keys API

API for managing API Keys resources.

Fields

interface API Keys { name?: string; email?: string; description?: string; url?: string; }

API Endpoints

GET /api/apikeys

Retrieves a list of API Keys with pagination.

Query Parameters

  • limit: Maximum number of items to return (default: 10)
  • page: Page number for pagination (default: 1)
  • sort: Field to sort by (default: createdAt)
  • where: JSON query for filtering results

GET /api/apikeys/:id

Retrieves a single API Keys by ID.

POST /api/apikeys

Creates a new API Keys.

PATCH /api/apikeys/:id

Updates an existing API Keys.

DELETE /api/apikeys/:id

Deletes a API Keys.

Last updated on