---
title: "Returns a list of all products and its configuration"
method: GET
path: "/v1/product"
tags: ["Product"]
---

# Returns a list of all products and its configuration

`GET /v1/product`

## Query parameters

- `order` 'asc' | 'desc'
- `limit` integer
- `cursor` string
- `orderBy` 'createdAt' | 'openInterest' | 'baseTokenName' | 'quoteTokenName'
- `ticker` string

## Response `200`

- PageOfProductDtos
  - `data` ProductDto[], required — Array of product objects
    - `baseTokenAddress` string, hex, required — Address of the base token (non-checksummed; zero address if virtual)
    - `baseTokenName` string, required — Name of the base token (e.g. BTC in BTCUSD)
    - `blockNumber` string, required — Block number this product was registered on
    - `createdAt` integer, required — Product creation timestamp (ms since Unix Epoch)
    - `cumulativeFundingUsd` string, decimal, required — Cumulative funding in USD of the product (precision: 9)
    - `displayTicker` string, required — Product display ticker based on the base quote token
    - `engineType` 0 | 1, required
    - `fundingBaselineApr` string, decimal, required — Funding baseline APR expressed as a decimal (precision: 9)
    - `fundingClampApr` string, decimal, required — Funding clamp APR expressed as a decimal (precision: 9)
    - `fundingMaxApr` string, decimal, required — Maximum funding APR expressed as a decimal, e.g. 2.0 = 200% (precision: 9)
    - `fundingRate1h` string, decimal, required — Last computed hourly funding rate expressed as a decimal (precision: 9)
    - `fundingUpdatedAt` integer — Unix timestamp when funding was last updated
    - `id` string, uuid, required — Id representing the registered product
    - `lotSize` string, decimal, required — Quantity must be divisible by the lotSize in expressed as a decimal (precision: 9)
    - `makerFee` string, decimal, required — Fee charged to the maker on order trades expressed as a decimal (precision: 9)
    - `maxLeverage` number, required — Maximum leverage allowed for the product
    - `maxOpenInterestUsd` string, decimal, required — Max OI of one side in USD expressed as a decimal (precision: 9)
    - `maxPositionNotionalUsd` string, decimal, required — Max position notional value, in USD expressed as a decimal (precision: 9)
    - `maxPrice` string, decimal, required — Max price in USD expressed as a decimal (precision: 9)
    - `maxQuantity` string, decimal, required — Max quantity per order in native units expressed as a decimal (precision: 9)
    - `minPrice` string, decimal, required — Min price in USD expressed as a decimal (precision: 9)
    - `minQuantity` string, decimal, required — Deprecated. Use lotSize instead. This value is always equal to lotSize.
    - `onchainId` integer, required — The productId generated onchain after registering for the first time
    - `openInterest` string, decimal, required — OI of both sides in native units expressed as a decimal (precision: 9)
    - `pythFeedId` integer, required — Pyth price feed id
    - `quoteTokenAddress` string, hex, required — Address of quote token (non-checksummed)
    - `quoteTokenName` string, required — Name of the quote token (e.g. USD in BTCUSD)
    - `status` 'PENDING' | 'ACTIVE', required — Product status
    - `takerFee` string, decimal, required — Fee charged to the taker on order trades expressed as a decimal (precision: 9)
    - `tickSize` string, decimal, required — Minimum price increment (tickSize) expressed as a decimal (precision: 9)
    - `ticker` string, required — Product ticker based on the base quote token
    - `volume24h` string, decimal, required — 24h volume in base token native units expressed as a decimal (precision: 9)
  - `hasNext` boolean, required — Whether there are more objects to paginate through
  - `nextCursor` string — Pointer to the next page in pagination dataset

## Other responses

- `400` — Bad Request
- `401` — Unauthorized
- `403` — Forbidden
- `404` — Not Found
- `422` — Unprocessable Entity
- `429` — Too Many Requests
- `500` — Internal Server Error

---

[API](https://skmtc.net/ethereal/apis/ethereal-exchange-api.md) · [All operations](https://skmtc.net/ethereal/apis/ethereal-exchange-api/llms.txt) · [OpenAPI document](https://skmtc-service-staging.skmtc.workers.dev/v1/apis/ethereal/ethereal-exchange-api/revisions/6e6f8dad92bf/schema)
