💾 Curio Data API

Live Curio Cards market data â€ĸ Free â€ĸ No auth required

đŸŸĸ Live ✨ Free Forever

...
Floor Price (ETH)
...
24h Volume (ETH)
...
24h Sales
...
Holders

📊 Main Endpoint

GET http://1n2.org/curio-data/v1.json

Returns current Curio Cards market data including floor price, 24h volume, sales count, and holder statistics. Updates daily at 6 AM PST.

View JSON

📝 Example Response

{
  "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"
}

🔧 Usage Examples

JavaScript / Fetch

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');
  });

Python

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

curl http://1n2.org/curio-data/v1.json | jq '.data'

â„šī¸ Information