Skip to Content

Benchmarks API

API for managing Benchmarks resources.

Fields

interface Benchmarks { name?: string; }

API Endpoints

GET /api/benchmarks

Retrieves a list of Benchmarks 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/benchmarks/:id

Retrieves a single Benchmarks by ID.

POST /api/benchmarks

Creates a new Benchmarks.

PATCH /api/benchmarks/:id

Updates an existing Benchmarks.

DELETE /api/benchmarks/:id

Deletes a Benchmarks.

Last updated on