Are you an LLM? Read llms.txt for a summary of the docs, or llms-full.txt for the full context.
Skip to content

explore

Browse top, new, and highest volume coins on Zora.

zora explore [options]

Options

FlagDescriptionDefault
--sort <sort>Sort order (see below)mcap
--type <type>Filter by coin type: all, creator-coin, post, trendcreator-coin
--limit <n>Number of results (max 20)10
--after <cursor>Pagination cursor from a previous result
--liveInteractive live-updating displaydefault
--staticStatic snapshot (single render)
--refresh <seconds>Auto-refresh interval in live mode (min 5)30
--jsonMachine-readable JSON output

Sort Options

ValueDescription
mcapHighest market cap
volumeHighest 24h volume
newMost recently created
trendingTrending (algorithmic)
featuredEditorially featured

Type Options

ValueDescription
allAll coin types combined
creator-coinCreator coins
postContent (post) coins
trendTrend coins

Valid sort/type combinations

Not every sort works with every type. The CLI reports the supported types if an invalid combination is used.

Sortallcreator-coinposttrend
mcap
volume
new
trending
featured

Examples

Browse trending coins

npx @zoralabs/cli explore --static --sort trending --type all --limit 5
 Trending
 
 #  Name            Address                     Type        Market Cap  Vol 24h   Change
 1  jessepollak     0x50f88fe97f72cd3e...       creator-c   $1.4M      $23.2K    -4.2%
 2  peptides        0x834f77c66f904279...       trend       $6.9K      $1.2K     +1.1%
 3  princeofcoins   0xa1dacbd0a9bf64d7...       creator-c   $16.1K     $3.1K     +59.6%
 4  USDT            0x528235a5bf173bcb...       post        $11.7K     $1.7K     +1.2%
 5  pixelord        0x8982ca8a23a4ec95...       creator-c   $19.7K     $1.2K     +0.4%

New creator coins

npx @zoralabs/cli explore --static --sort new --type creator-coin --limit 3

Top coins by market cap (JSON)

npx @zoralabs/cli explore --json --sort mcap --type all --limit 2
{
  "coins": [
    {
      "name": "jessepollak",
      "description": "",
      "symbol": "jessepollak",
      "coinType": "creator-coin",
      "chainId": 8453,
      "address": "0x50f88fe97f72cd3e75b9eb4f747f59bceba80d59",
      "platformBlocked": false,
      "totalSupply": "1000000000",
      "creatorAddress": "0x2211d1d0020daea8039e46cf1367962070d77da9",
      "creatorHandle": "jessepollak",
      "socialAccounts": {
        "instagram": null,
        "tiktok": null,
        "twitter": {
          "username": "jessepollak",
          "displayName": "jesse.base.eth",
          "followerCount": 353511,
          "id": null
        },
        "farcaster": {
          "username": "jessepollak",
          "displayName": "jesse.base.eth",
          "followerCount": 382392,
          "id": "99"
        }
      },
      "mediaContentMimeType": null,
      "mediaContentOriginalUri": "ipfs://bafybeidh46av35qajqef3ubz5ezr2hkxxn5yscegijvikia3oeqk6osvzu",
      "previewImage": "https://...",
      "priceUsd": 0.0008405589788996953,
      "marketCap": 839194.3,
      "marketCapDelta24h": 7694.62,
      "marketCapChange24h": 0.9254,
      "volume24h": 2120.97,
      "totalVolume": 40178208.98,
      "uniqueHolders": 63725,
      "createdAt": "2025-11-20T17:00:11+00:00"
    }
  ],
  "pageInfo": {
    "endCursor": "eyJjb2luX3ByaWNlX3VzZGMiOiAwLjAwMD...",
    "hasNextPage": true
  }
}

Note that in JSON output coinType is the lowercase display form (creator-coin, post, trend) and numeric fields (priceUsd, marketCap, volume24h, …) are JSON numbers, not strings.

JSON Fields

FieldTypeDescription
namestring | nullCoin display name
symbolstring | nullCoin ticker symbol
coinTypestring | nullcreator-coin, post, or trend
chainIdnumber | nullChain ID (8453 for Base)
addressstring | nullContract address
platformBlockedbooleanWhether the coin is blocked on the Zora platform
totalSupplystring | nullTotal token supply
creatorAddressstring | nullCreator's wallet address
creatorHandlestring | nullCreator's Zora handle
socialAccountsobject | nullCreator's linked instagram, tiktok, twitter, farcaster (each may be null)
priceUsdnumber | nullCurrent token price in USD
marketCapnumber | nullMarket cap in USD
marketCapDelta24hnumber | null24h market cap change in USD
marketCapChange24hnumber | null24h market cap change as a fraction (e.g. 0.0925 = +9.25%)
volume24hnumber | null24h trading volume in USD
totalVolumenumber | nullAll-time trading volume in USD
uniqueHoldersnumber | nullNumber of unique holder addresses
createdAtstring | nullISO 8601 creation timestamp

The response also includes mediaContentMimeType, mediaContentOriginalUri, previewImage, and description fields for media metadata.

Pagination

Use the endCursor from pageInfo to fetch the next page. hasNextPage indicates whether more results exist:

npx @zoralabs/cli explore --json --sort mcap --after "eyJjb2luX3ByaWNlX3VzZGMiOiAwLjAwMD..."

Interactive Controls

In live mode, navigate the coin list with:

KeyAction
/Navigate rows
Enter/cCopy coin address
/Previous/next page
rRefresh
qQuit