Wallet Experience APIs
POST Batch Historical Floor Prices
Overview
WaaS React SDK
Wallet as a Service (WaaS)
- Overview
- Quickstart
- Errors
- Pagination
- Wallet Creation APIs
- Wallet Experience APIs
- GETGET Activities
- GETGET Balances
- GETGET Tokens
- GETGET Profiles
- POSTGET Portfolio
- GETGET Blockchain Accounts
- POSTPOST Blockchain Accounts
- PATCHPATCH Blockchain Accounts
- GETGET Floor Prices
- POSTPOST Batch Floor Prices
- POSTPOST Batch Historical Floor Prices
- GETGET Transactions
- POSTPOST Transactions
- GETGET Discovery Feed
- Activity Webhooks
- GET
- NFT APIs
- Web3 APIs
- SDK
Integrations
- Get Started
- Authentication
- Connectors
- FAQ
- Partners
Wallet Experience APIs
POST Batch Historical Floor Prices
Get batch historical floor prices for a wallet on a chain
POST
/
v2
/
historical-floor-prices
/
batch
curl -X 'POST' \
'https://api.bitski.com/v2/historical-floor-prices/batch?duration=ONE_MONTH' \
-H 'accept: application/json' \
-H 'Content-Type: application/json' \
-d '{
"contractIds": [
{
"address": "0x1C505d3AC1B902b69bc153aEdad477c9bC9ccde7",
"chainId": 1,
"coinType": 60
}
]
}'
{
"collections": [
{
"contractId": {
"address": "0x1C505d3AC1B902b69bc153aEdad477c9bC9ccde7",
"chainId": 1,
"coinType": 60
},
"prices": [
{
"closingFloorPrice": "110.00",
"currency": "USD",
"date": "2023-04-25",
"highestFloorPrice": "150.00",
"lowestFloorPrice": "90.00",
"openingFloorPrice": "100.00"
}
]
}
]
}
Parameters
The time window for the floor prices.
Examples
curl -X 'POST' \
'https://api.bitski.com/v2/historical-floor-prices/batch?duration=ONE_MONTH' \
-H 'accept: application/json' \
-H 'Content-Type: application/json' \
-d '{
"contractIds": [
{
"address": "0x1C505d3AC1B902b69bc153aEdad477c9bC9ccde7",
"chainId": 1,
"coinType": 60
}
]
}'
{
"collections": [
{
"contractId": {
"address": "0x1C505d3AC1B902b69bc153aEdad477c9bC9ccde7",
"chainId": 1,
"coinType": 60
},
"prices": [
{
"closingFloorPrice": "110.00",
"currency": "USD",
"date": "2023-04-25",
"highestFloorPrice": "150.00",
"lowestFloorPrice": "90.00",
"openingFloorPrice": "100.00"
}
]
}
]
}
curl -X 'POST' \
'https://api.bitski.com/v2/historical-floor-prices/batch?duration=ONE_MONTH' \
-H 'accept: application/json' \
-H 'Content-Type: application/json' \
-d '{
"contractIds": [
{
"address": "0x1C505d3AC1B902b69bc153aEdad477c9bC9ccde7",
"chainId": 1,
"coinType": 60
}
]
}'
{
"collections": [
{
"contractId": {
"address": "0x1C505d3AC1B902b69bc153aEdad477c9bC9ccde7",
"chainId": 1,
"coinType": 60
},
"prices": [
{
"closingFloorPrice": "110.00",
"currency": "USD",
"date": "2023-04-25",
"highestFloorPrice": "150.00",
"lowestFloorPrice": "90.00",
"openingFloorPrice": "100.00"
}
]
}
]
}