> ## Documentation Index
> Fetch the complete documentation index at: https://docs.bitski.com/llms.txt
> Use this file to discover all available pages before exploring further.

# POST Batch Floor Prices

> Get batch floor prices for a wallet on a chain

### Parameters

<ParamField query="supportedChainIds" type="array of string" placeholder="[1]" required>
  The ethereum chain ids to include
</ParamField>

### Examples

<img src="https://mintcdn.com/bitski/M9S3MklVi0sxl9A9/assets/images/batch-floor-prices.jpeg?fit=max&auto=format&n=M9S3MklVi0sxl9A9&q=85&s=a59bbad7abafad130172c3d73bae32bf" alt="Floor Price" width="1170" height="2532" data-path="assets/images/batch-floor-prices.jpeg" />

<RequestExample>
  ```bash Request theme={null}
  curl -X 'POST' \
    'https://api.bitski.com/v2/floor-prices/batch?supportedChains=1' \
    -H 'accept: application/json' \
    -H 'Content-Type: application/json' \
    -d '{
    "contractIds": [
      {
        "address": "0x1C505d3AC1B902b69bc153aEdad477c9bC9ccde7",
        "chainId": 1,
        "coinType": 60
      }
    ]
  }'
  ```
</RequestExample>

<ResponseExample>
  ```json Sample Response theme={null}
  {
    "prices": [
      {
        "blockNumber": "17125297",
        "currency": "USD",
        "marketplace": "opensea",
        "price": "100.00",
        "timestamp": "2023-04-25T19:41:00.425Z"
      }
    ]
  }
  ```
</ResponseExample>
