Discover/Blur API
live

Blur APIblur.io

Fetch NFT collection rankings, floor prices, best bids, listed tokens, and trading activity from Blur.io via a structured REST API.

Endpoint health
verified 7d ago
get_collections
get_collection
get_collection_floor_price
get_collection_best_bid
get_collection_tokens
6/6 passing latest checkself-healing
Endpoints
8
Updated
21d ago

What is the Blur API?

The Blur.io API provides 8 endpoints for retrieving NFT marketplace data from Blur.io, covering collection rankings, floor price history, active listings, and recent sales events. The get_collections endpoint returns paginated rankings with volume stats across multiple time windows, while get_collection_activity surfaces per-event trade data including trader addresses, prices, and marketplace attribution. Wallet-based authentication enables portfolio retrieval for a given Ethereum address.

Try it
Sort field for ranking collections.
Sort order.
api.parse.bot/scraper/9383f30f-7b43-4d7b-b5fa-f521cc6fb20c/<endpoint>
Ready to send
Fill in the parameters and hit sign in to send to see live response data here.
Call it over HTTPgrab a free API key at signup
curl -X GET 'https://api.parse.bot/scraper/9383f30f-7b43-4d7b-b5fa-f521cc6fb20c/get_collections?sort=VOLUME_ONE_DAY&order=ASC' \
  -H 'X-API-Key: $PARSE_API_KEY'
Python SDK · recommended

Typed, relational, agent-ready

A generated client with real types, enums, and the links between objects — the structure a flat JSON response can't carry. Autocompletes in your editor and reads cleanly to coding agents.

  • Fully typed · autocompletes
  • Objects link to objects
  • Typed errors & pagination

Typed Python client. Set up the SDK in your uv project, then pull this API’s typed client:

uv add parse-sdk
uv run parse init
uv run parse add --marketplace blur-io-api

uv run parse add --marketplace pulls a pinned snapshot of this canonical API — it won’t change underneath you. To customize it, subscribe and swap to your own copy.

"""Walkthrough: Blur.io NFT Marketplace SDK — collection rankings, prices, tokens, activity."""
from parse_apis.blur_io_nft_marketplace_api import Blur, CollectionSort, Sort, CollectionNotFound

blur = Blur()

# List top collections by daily volume, descending
for collection in blur.collections.list(sort=CollectionSort.VOLUME_ONE_DAY, order=Sort.DESC, limit=3):
    print(collection.name, collection.collectionSlug, collection.totalSupply)

# Drill into a specific collection by slug (constructible)
penguins = blur.collection("pudgypenguins")

# Floor price trend
fp = penguins.floor_price()
print(fp.collectionSlug, fp.contractAddress, fp.floorPrice, fp.floorPriceOneDay)

# Best bid info
bid = penguins.best_bid()
print(bid.collectionSlug, bid.bestCollectionBid, bid.totalCollectionBidValue)

# List tokens for sale
for token in penguins.tokens.list(limit=3):
    print(token.tokenId, token.name, token.rarityRank, token.price)

# Recent activity events
for event in penguins.activity.list(limit=3):
    print(event.id, event.eventType, event.createdAt, event.marketplace)

# Typed error handling
try:
    bad = blur.collection("nonexistent-slug-xyz-999").floor_price()
except CollectionNotFound as exc:
    print(f"Collection not found: {exc.collection_slug}")

print("exercised: collections.list / floor_price / best_bid / tokens.list / activity.list")
All endpoints · 8 totalmissing one? ·

Fetch a ranked list of NFT collections sorted by trading volume or other metrics. Returns collection summaries including floor prices, volume stats across multiple time windows, and current best bid. The full ranking contains thousands of collections; a single call returns one page of results.

Input
ParamTypeDescription
sortstringSort field for ranking collections.
orderstringSort order.
Response
{
  "type": "object",
  "fields": {
    "totalCount": "integer total number of collections available",
    "collections": "array of collection summary objects with name, slug, floorPrice, volume stats, and bestCollectionBid"
  },
  "sample": {
    "data": {
      "totalCount": 15000,
      "collections": [
        {
          "name": "PudgyPenguins",
          "imageUrl": "https://images.blur.io/_blur-prod/0xbd3531da5cf5857e7cfaa92426877b022e612cf8/3369-457f5fc4272cd976",
          "floorPrice": {
            "unit": "ETH",
            "amount": "4.41498799999998"
          },
          "totalSupply": 8888,
          "numberOwners": 5210,
          "volumeOneDay": {
            "unit": "ETH",
            "amount": "116.519174529998258"
          },
          "volumeOneWeek": {
            "unit": "ETH",
            "amount": "1156.750235639980833807"
          },
          "collectionSlug": "pudgypenguins",
          "contractAddress": "0xbd3531da5cf5857e7cfaa92426877b022e612cf8",
          "floorPriceOneDay": {
            "unit": "ETH",
            "amount": "4.387972399997239"
          },
          "bestCollectionBid": {
            "unit": "ETH",
            "amount": "4.3"
          },
          "floorPriceOneWeek": {
            "unit": "ETH",
            "amount": "4.10989249998924"
          },
          "volumeFifteenMinutes": {
            "unit": "ETH",
            "amount": "4.427"
          },
          "totalCollectionBidValue": {
            "unit": "ETH",
            "amount": "165.63"
          }
        }
      ]
    },
    "status": "success"
  }
}

About the Blur API

Collection Rankings and Metadata

The get_collections endpoint returns a ranked list of NFT collections with a totalCount of all available collections and per-collection summaries including floorPrice, multi-window volume stats, and bestCollectionBid. You can control sort order using the sort and order parameters. For deeper detail on a single collection, get_collection accepts a collection_slug (e.g. pudgypenguins) and returns the full metadata object: contractAddress, volumeOneDay, traitFrequencies, supply counts, and ownership stats.

Floor Price and Bid Data

Two focused endpoints isolate frequently polled values. get_collection_floor_price returns floorPrice, floorPriceOneDay, and floorPriceOneWeek as structured amount-and-unit objects — useful for trend detection without pulling the full collection payload. get_collection_best_bid returns the highest standing collection-wide offer (bestCollectionBid) alongside totalCollectionBidValue, giving a quick read on buyer-side demand and the floor-to-bid spread.

Tokens and Activity

get_collection_tokens returns only tokens with active listings: each token object includes tokenId, imageUrl, traits, price, rarityRank, and owner. Collections with no active asks return an empty tokens array and a totalCount of zero. get_collection_activity returns an events array with fields for eventType (sale or order creation), price, fromTrader, toTrader, createdAt, and marketplace — allowing cross-marketplace attribution for trades that appear on Blur.

Wallet Authentication and Portfolio

The login endpoint accepts a wallet signature, wallet_address, and challenge_message, returning an accessToken JWT. That token gates access to get_portfolio, which returns the NFT holdings for a given Ethereum address. The challenge message must be signed externally by the wallet before calling login.

Reliability & maintenanceVerified

The Blur API is a managed, monitored endpoint for blur.io — not a raw scraper you maintain. Every endpoint is automatically health-checked on a schedule, and when blur.io changes and a check fails, the API is automatically queued for repair and re-verified. It is built to keep working as the site underneath it changes.

This isn't an official blur.io API — it's an independent, maintained REST wrapper over public data. Where the source has no official API (or only a limited one), Parse gives you a stable contract over a source that never promised one, and keeps it current. Need a new endpoint or field? You can revise it yourself in plain English and the agent rebuilds it against the live site in minutes — contributing the change back to the shared API is free.

Last verified
7d ago
Latest check
6/6 endpoints passing
Maintenance
Monitored & self-healing
Will this API break when the source site changes?+
It's built not to. Every endpoint is health-checked on a schedule with automated test probes. When the source site changes and a check fails, the API is automatically queued for repair and re-verified — that's the self-healing layer. Each API page shows when its endpoints were last verified. And because marketplace APIs are shared, any fix reaches everyone using it.
Is this an official API from the source site?+
No — Parse APIs are independent, managed REST wrappers over publicly available data. That is the point: where a site has no official API (or only a limited one), Parse gives you a maintained, monitored endpoint for that data and keeps it working as the site changes — so you get a stable contract over a source that never promised one.
Can I fix or extend this API myself if I need a new endpoint or field?+
Yes — and you don't have to wait on us. This API was generated by the Parse agent, which stays attached. Describe the change in plain English ("add an endpoint that returns reviews", "fix the price field") in the revise box on the API page or via the revise_api MCP tool, and the agent rebuilds it against the live site in minutes. Contributing the change back to the public API is free.
What happens if I call an endpoint that has an issue?+
Errors are machine-readable: a bad call returns a clean status with the list of available endpoints and a repair hint, so an agent (or you) can recover or trigger a fix instead of failing silently. Confirmed failures feed the automatic repair queue.
Common use cases
  • Track floor price trends for a watchlist of collections using floorPriceOneDay and floorPriceOneWeek differentials
  • Build a collection bid scanner that alerts when bestCollectionBid exceeds a threshold relative to floorPrice
  • Aggregate multi-window volume stats from get_collections to rank collections by momentum
  • Display active listings with rarity ranks and trait filters for a collection front-end using get_collection_tokens
  • Attribute cross-marketplace sales to specific venues using the marketplace field in get_collection_activity events
  • Retrieve a wallet's NFT portfolio holdings after authenticating via the login endpoint
  • Monitor new sales events in near real-time by polling get_collection_activity for specific collection slugs
Pricing & limitsSee full pricing →
TierPriceCredits/monthRate limit
Free$0/mo1005 req/min
Hobby$30/mo1,00020 req/min
Developer$100/mo5,000100 req/min

One credit = one API call regardless of which marketplace API you call. Exceeding the rate limit returns a 429 response. Authenticate with the X-API-Key header.

Frequently asked questions
Does Blur.io have an official public developer API?+
Blur.io does not publish an official public developer API or documented REST endpoints for third-party use. This Parse API provides structured access to the same collection and trading data visible on the Blur.io marketplace.
What does get_collection_activity return, and does it cover bids as well as sales?+
get_collection_activity returns an events array where each object includes eventType, price, fromTrader, toTrader, createdAt, and marketplace. The eventType field covers sales and order (listing) creations. Bid-specific events — such as individual token bids or collection bid placements and cancellations — are not currently included in the activity feed. The API does expose current best bids via get_collection_best_bid. You can fork this API on Parse and revise it to add bid activity as a separate endpoint.
Does get_collection_tokens return all tokens in a collection or only listed ones?+
Only tokens with active ask orders are returned. If a collection has no current listings, get_collection_tokens returns an empty tokens array and a totalCount of zero. Unlisted tokens — including those held without an active price — are not included. You can fork this API on Parse and revise it to add an endpoint for all tokens regardless of listing status.
Are trait-level bids or per-token bids accessible through this API?+
The current endpoints expose collection-wide bid data only: bestCollectionBid and totalCollectionBidValue via get_collection_best_bid, and traitFrequencies via get_collection. Per-token or per-trait bid levels are not currently returned. You can fork this API on Parse and revise it to add endpoints that surface trait-specific or token-specific bid data.
Does get_collections return all collections in one call?+
No. The endpoint returns one page of results at a time; the totalCount field tells you how many collections exist in the full ranking (typically thousands). Pagination is controlled via the sort and order parameters on successive calls. There is no single call that returns all collections at once.
Page content last updated . Spec covers 8 endpoints from blur.io.
Related APIs in Crypto Web3See all →
opensea.io API
Search NFT collections and discover detailed stats, browse individual items, and track collection activity all in one place. Get real-time insights into collection performance and find the NFTs you're looking for on OpenSea.
cryptoslam.io API
Track NFT market trends and collection performance with access to global stats, collection rankings, sales history, and rarity data across multiple blockchains. Search collections, monitor top sales, and analyze blockchain performance metrics to stay informed on the NFT market.
highlight.xyz API
Discover trending NFT collections, search for specific projects, and view detailed collection information including top collectors and sponsors on Highlight.xyz. Find related projects and stay informed on what's gaining momentum in the NFT market.
theblock.co API
Access real-time cryptocurrency prices, breaking news, and in-depth research articles from The Block's crypto intelligence platform. Search and browse news by category, discover articles from expert authors, and learn about blockchain topics all in one place.
cryptoslate.com API
Track real-time cryptocurrency prices and rankings, access detailed coin information and market overviews, and discover industry companies and key people in the crypto space. Stay informed with the latest cryptocurrency news articles and search across all available data to monitor assets and trends.
app.hyperliquid.xyz API
Access real-time leaderboard rankings, market data for perpetual and spot markets, order books, and detailed trader analytics on the Hyperliquid decentralized exchange. Monitor top traders' open positions and identify delta-neutral trading strategies.
rip.fun API
Browse and search trading cards, packs, and sets while tracking real-time market prices and price history on the rip.fun marketplace. Monitor trending cards, view detailed card and pack information, check recent mystery pack pulls, and analyze price changes to stay informed on the trading card market.
airdrops.io API
Discover and track crypto airdrops in real-time by browsing latest opportunities, searching by category, and viewing detailed project information including participation requirements and token details. Monitor live cryptocurrency prices and stay updated on hot and potential airdrops all in one place.