Wallet Experience APIs
GET Floor Prices
Wallet Experience APIs
GET Floor Prices
Get floor prices for a wallet on a chain
GET
/v2/floor-prices/{coinType}/{chainId}/{address}
coinType*
chainId*
address*
curl --request GET \
--url https://api.bitski.com/v2/floor-prices/{coinType}/{chainId}/{address}
Parameters
coinTyperequired
string
The blockchain coin type.
chainIdrequired
string
The chain ID.
addressrequired
string
The address of the wallet to get floor prices for.
Examples
{
"prices": [
{
"blockNumber": "17125297",
"currency": "USD",
"marketplace": "opensea",
"price": "100.00",
"timestamp": "2023-04-25T19:41:00.425Z"
}
]
}
curl --request GET \
--url https://api.bitski.com/v2/floor-prices/{coinType}/{chainId}/{address}
{
"prices": [
{
"blockNumber": "17125297",
"currency": "USD",
"marketplace": "opensea",
"price": "100.00",
"timestamp": "2023-04-25T19:41:00.425Z"
}
]
}