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

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

ArgumentDescription
identifierWallet address or profile handle. Defaults to your wallet if omitted.

Options

FlagDescriptionDefault
--liveInteractive live-updating displaydefault
--staticStatic snapshot
--refresh <seconds>Auto-refresh interval in live mode (min 5)30
--jsonMachine-readable JSON output

Subcommands

SubcommandDescription
profile postsBrowse created coins with pagination
profile holdingsBrowse coin holdings with pagination and sorting
profile tradesBrowse 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 --static

Uses the wallet configured via zora setup or ZORA_PRIVATE_KEY.

View by wallet address

npx @zoralabs/cli profile 0x3a5df03dd1a001d7055284c2c2c147cbbc78d142 --static

JSON 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

FlagDescriptionDefault
--limit <n>Number of results per page (max 20)10
--after <cursor>Pagination cursor from a previous result
--liveInteractive live-updating displaydefault
--staticStatic snapshot
--refresh <seconds>Auto-refresh interval in live mode (min 5)30
--jsonMachine-readable JSON output

Examples

npx @zoralabs/cli profile posts jacob --static --limit 5

profile holdings

Browse a profile's coin holdings with pagination and sorting.

zora profile holdings [identifier] [options]

Options

FlagDescriptionDefault
--sort <sort>Sort by: usd-value, balance, market-cap, price-changeusd-value
--limit <n>Number of results per page (max 20)10
--after <cursor>Pagination cursor from a previous result
--liveInteractive live-updating displaydefault
--staticStatic snapshot
--refresh <seconds>Auto-refresh interval in live mode (min 5)30
--jsonMachine-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

FlagDescriptionDefault
--limit <n>Number of results per page (max 20)10
--after <cursor>Pagination cursor from a previous result
--liveInteractive live-updating displaydefault
--staticStatic snapshot
--refresh <seconds>Auto-refresh interval in live mode (min 5)30
--jsonMachine-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:

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