profile
View a creator or user profile — posts, holdings, and trade activity. The default view shows all three as tabbed panels.
zora profile [options] [identifier]Arguments
| Argument | Description |
|---|---|
identifier | Wallet address or profile handle. Defaults to your wallet if omitted. |
Options
| Flag | Description | Default |
|---|---|---|
--live | Interactive live-updating display | default |
--static | Static snapshot | — |
--refresh <seconds> | Auto-refresh interval in live mode (min 5) | 30 |
--json | Machine-readable JSON output | — |
Subcommands
| Subcommand | Description |
|---|---|
profile posts | Browse created coins with pagination |
profile holdings | Browse coin holdings with pagination and sorting |
profile trades | Browse buy/sell trade history with pagination |
Examples
View jacob's profile
npx @zoralabs/cli profile jacob --static jacob
Creator coin: 0x9b13358e3a023507e7046c18f508a958cda75f54
Posts
# Name Type Address Market Cap Vol 24h Change
1 soho post 0xe036370af91f... $1,593.53 $0 -1.7%
2 text campaign, 2022 post 0xa493535ddc64... $1,506.26 $0 +11.3%
3 soho, nyc (2022) post 0x8c72907e098e... $1,718.44 $0 -1.2%
4 intersection post 0xc5c6a1e3ccf9... $2,063.96 $0 -2.6%View your own profile
npx @zoralabs/cli profile --staticUses the wallet configured via zora setup or ZORA_PRIVATE_KEY.
View by wallet address
npx @zoralabs/cli profile 0x3a5df03dd1a001d7055284c2c2c147cbbc78d142 --staticJSON output
npx @zoralabs/cli profile jacob --json{
"posts": [
{
"rank": 1,
"name": "soho",
"symbol": "soho",
"coinType": "post",
"address": "0xe036370af91f9e1d6d15fc594141628676d5dd56",
"marketCap": "1593.53",
"marketCapDelta24h": "-28.31",
"volume24h": "0.0",
"createdAt": "2026-03-12T16:29:23"
}
]
}profile posts
Browse a profile's created coins with cursor-based pagination.
zora profile posts [identifier] [options]Options
| Flag | Description | Default |
|---|---|---|
--limit <n> | Number of results per page (max 20) | 10 |
--after <cursor> | Pagination cursor from a previous result | — |
--live | Interactive live-updating display | default |
--static | Static snapshot | — |
--refresh <seconds> | Auto-refresh interval in live mode (min 5) | 30 |
--json | Machine-readable JSON output | — |
Examples
npx @zoralabs/cli profile posts jacob --static --limit 5profile holdings
Browse a profile's coin holdings with pagination and sorting.
zora profile holdings [identifier] [options]Options
| Flag | Description | Default |
|---|---|---|
--sort <sort> | Sort by: usd-value, balance, market-cap, price-change | usd-value |
--limit <n> | Number of results per page (max 20) | 10 |
--after <cursor> | Pagination cursor from a previous result | — |
--live | Interactive live-updating display | default |
--static | Static snapshot | — |
--refresh <seconds> | Auto-refresh interval in live mode (min 5) | 30 |
--json | Machine-readable JSON output | — |
Examples
Holdings sorted by market cap
npx @zoralabs/cli profile holdings jacob --sort market-cap --static Holdings — jacob
# Name Address Type Balance USD Value Market Cap Change
1 jacob 0x9b13...5f54 creator-coin 20.63 $10.01 $435.0K +1.9%
2 zora 0x2748...f519 trend 1,500.00 $11.10 $6.6K +1.8%profile trades
Browse buy/sell trade history with pagination.
zora profile trades [identifier] [options]Options
| Flag | Description | Default |
|---|---|---|
--limit <n> | Number of results per page (max 20) | 10 |
--after <cursor> | Pagination cursor from a previous result | — |
--live | Interactive live-updating display | default |
--static | Static snapshot | — |
--refresh <seconds> | Auto-refresh interval in live mode (min 5) | 30 |
--json | Machine-readable JSON output | — |
Examples
npx @zoralabs/cli profile trades jacob --static Trades — jacob
# Side Coin Name Amount USD Value Tx Hash
1 BUY zora 1,500.00 $11.10 0xabc1...
2 SELL soho 200.00 $3.50 0xdef2...Interactive Controls
All profile subcommands support the same navigation in live mode:
| Key | Action |
|---|---|
↑/↓ | Navigate rows |
Enter/c | Copy address |
←/→ | Previous/next page |
r | Refresh |
q | Quit |