# List Instruments

List instruments with cursor-based pagination.

Pagination:
- cursor: Opaque cursor from previous response
- Use next_cursor from response for next page

Endpoint: GET /instruments
Version: 0.1.0

## Query parameters:

  - `limit` (integer)
    Maximum number of records to return

  - `cursor` (any)
    Cursor for pagination (use next_cursor from previous response)

## Header parameters:

  - `X-API-Key` (any)

## Response 200 fields (application/json):

  - `instruments` (array, required)

  - `limit` (integer, required)

  - `has_next` (boolean)

  - `has_previous` (boolean)

  - `next_cursor` (any)

## Response 422 fields (application/json):

  - `detail` (array)

  - `detail.loc` (array, required)

  - `detail.msg` (string, required)

  - `detail.type` (string, required)


