> For the complete documentation index, see [llms.txt](https://docs.nftbank.ai/llms.txt). Markdown versions of documentation pages are available by appending `.md` to page URLs; this page is available as [Markdown](https://docs.nftbank.ai/nft-valuation-api/realtime-valuation-api/v3-realtime-floor-price.md).

# /v3/realtime-floor-price

## Get realtime floor price

<mark style="color:blue;">`GET`</mark> `https://api.nftbank.ai/v3/realtime-floor-price`

This endpoint allows you to get floor price in realtime.

#### Path Parameters

| Name                                              | Type   | Description                           |
| ------------------------------------------------- | ------ | ------------------------------------- |
| network\_id<mark style="color:red;">\*</mark>     | String | ethereum / matic                      |
| asset\_contract<mark style="color:red;">\*</mark> | String | The contract address of a NFT project |

#### Headers

| Name                                        | Type   | Description                                  |
| ------------------------------------------- | ------ | -------------------------------------------- |
| x-api-key<mark style="color:red;">\*</mark> | string | API key request via \[API key request] link. |

{% tabs %}
{% tab title="200 Cake successfully retrieved." %}

```
{
    "data": {
        "assetContract": "0x8a90cab2b38dba80c64b7734e58ee1db38b8992e",
        "collectionId": "doodles",
        "floorPriceEth": "12.500000000000000000",
        "networkId": "ethereum",
        "openseaSlug": "doodles-official",
        "processedAt": "2022-06-28T05:59:00+00:00"
    },
    "message": "OK",
    "statusCode": 20000
}
```

{% endtab %}
{% endtabs %}

<mark style="color:blue;">**curl request example**</mark>

```shell
curl -i -H "x-api-key: YOUR_API_KEY" \
  "https://api.nftbank.ai/v3/realtime-floor-price/ethereum/0x8a90cab2b38dba80c64b7734e58ee1db38b8992e"
```

<mark style="color:blue;">**curl response example**</mark>

```json
{
    "data": {
        "assetContract": "0x8a90cab2b38dba80c64b7734e58ee1db38b8992e",
        "collectionId": "doodles",
        "floorPriceEth": "12.500000000000000000",
        "networkId": "ethereum",
        "openseaSlug": "doodles-official",
        "processedAt": "2022-06-28T05:59:00+00:00"
    },
    "message": "OK",
    "statusCode": 20000
}
```
