explore
Browse top, new, and highest volume coins on Zora.
zora explore [options]Options
| Flag | Description | Default |
|---|---|---|
--sort <sort> | Sort order (see below) | mcap |
--type <type> | Filter by coin type: all, creator-coin, post, trend | creator-coin |
--limit <n> | Number of results (max 20) | 10 |
--after <cursor> | Pagination cursor from a previous result | — |
--live | Interactive live-updating display | default |
--static | Static snapshot (single render) | — |
--refresh <seconds> | Auto-refresh interval in live mode (min 5) | 30 |
--json | Machine-readable JSON output | — |
Sort Options
| Value | Description |
|---|---|
mcap | Highest market cap |
volume | Highest 24h volume |
new | Most recently created |
trending | Trending (algorithmic) |
featured | Editorially 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 3Top coins by market cap (JSON)
npx @zoralabs/cli explore --json --sort mcap --type all --limit 2{
"coins": [
{
"name": "jacob",
"symbol": "jacob",
"address": "0x9b13358e3a023507e7046c18f508a958cda75f54",
"coinType": "CREATOR",
"marketCap": "434988.18",
"marketCapDelta24h": "8220.7",
"volume24h": "0.49",
"createdAt": "2025-06-20T16:31:57",
"creatorProfile": { "handle": "jacob" },
"chainId": 8453
}
],
"nextCursor": "eyJsYXN0X..."
}Pagination
Use the nextCursor value from a previous response to fetch the next page:
npx @zoralabs/cli explore --json --sort mcap --after "eyJsYXN0X..."Interactive Controls
In live mode, navigate the coin list with:
| Key | Action |
|---|---|
↑/↓ | Navigate rows |
Enter/c | Copy coin address |
←/→ | Previous/next page |
r | Refresh |
q | Quit |