Skip to Content

Labs API

API for managing Labs resources.

Fields

interface Labs { name: string; id: string; description?: string; website?: string; logoUrl?: string; }

API Endpoints

GET /api/labs

Retrieves a list of Labs 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/labs/:id

Retrieves a single Labs by ID.

POST /api/labs

Creates a new Labs.

PATCH /api/labs/:id

Updates an existing Labs.

DELETE /api/labs/:id

Deletes a Labs.

Last updated on