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 |
Type Options
| Value | Description |
|---|---|
all | All coin types combined |
creator-coin | Creator coins |
post | Content (post) coins |
trend | Trend coins |
Valid sort/type combinations
Not every sort works with every type. The CLI reports the supported types if an invalid combination is used.
| Sort | all | creator-coin | post | trend |
|---|---|---|---|---|
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 3Top 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
| Field | Type | Description |
|---|---|---|
name | string | null | Coin display name |
symbol | string | null | Coin ticker symbol |
coinType | string | null | creator-coin, post, or trend |
chainId | number | null | Chain ID (8453 for Base) |
address | string | null | Contract address |
platformBlocked | boolean | Whether the coin is blocked on the Zora platform |
totalSupply | string | null | Total token supply |
creatorAddress | string | null | Creator's wallet address |
creatorHandle | string | null | Creator's Zora handle |
socialAccounts | object | null | Creator's linked instagram, tiktok, twitter, farcaster (each may be null) |
priceUsd | number | null | Current token price in USD |
marketCap | number | null | Market cap in USD |
marketCapDelta24h | number | null | 24h market cap change in USD |
marketCapChange24h | number | null | 24h market cap change as a fraction (e.g. 0.0925 = +9.25%) |
volume24h | number | null | 24h trading volume in USD |
totalVolume | number | null | All-time trading volume in USD |
uniqueHolders | number | null | Number of unique holder addresses |
createdAt | string | null | ISO 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:
| Key | Action |
|---|---|
↑/↓ | Navigate rows |
Enter/c | Copy coin address |
←/→ | Previous/next page |
r | Refresh |
q | Quit |