Live Curio Cards market data âĸ Free âĸ No auth required
đĸ Live ⨠Free Forever
Returns current Curio Cards market data including floor price, 24h volume, sales count, and holder statistics. Updates daily at 6 AM PST.
View JSON{
"version": "1.0",
"collection": "Curio Cards",
"contract": "0x73da73ef3a6982109c4d5bdb0db9dd3e3783f313",
"data": {
"floor_price_eth": 0.051,
"volume_24h_eth": 0.2,
"sales_24h": 3,
"total_holders": 387,
"total_supply": 30,
"last_updated": "2026-02-18T22:54:55Z"
},
"source": "Alchemy API",
"rate_limit": "Updates every 24h at 6 AM PST"
}
fetch('http://1n2.org/curio-data/v1.json')
.then(response => response.json())
.then(data => {
console.log('Floor:', data.data.floor_price_eth, 'ETH');
console.log('Volume:', data.data.volume_24h_eth, 'ETH');
});
import requests
response = requests.get('http://1n2.org/curio-data/v1.json')
data = response.json()
print(f"Floor: {data['data']['floor_price_eth']} ETH")
print(f"Holders: {data['data']['total_holders']}")
curl http://1n2.org/curio-data/v1.json | jq '.data'