Skip to content

entry list

List entries from a specific feed or browse all available entries.

Usage

grapevine entry list [options]

Options

--feed

  • Type: string (UUID)

List entries from a specific feed.

grapevine entry list --feed "123e4567-e89b-12d3-a456-426614174000"

-p, --page

  • Type: number
  • Default: 1

Page number for pagination.

grapevine entry list --page 2

-l, --limit

  • Type: number
  • Default: 20

Number of entries per page (1-100).

grapevine entry list --limit 50

--my

  • Type: boolean
  • Default: false

Show only your own entries.

grapevine entry list --my

-q, --query

  • Type: string

Search entries by title or content.

grapevine entry list --query "typescript tutorial"

--tags

  • Type: string

Filter by comma-separated tags.

grapevine entry list --tags react,javascript

--sort

  • Type: string
  • Default: recent
  • Options: recent, popular, revenue, price

Sort entries by specified criteria.

grapevine entry list --sort popular

--price-min

  • Type: number

Filter entries with minimum price in USDC.

grapevine entry list --price-min 0.50

--price-max

  • Type: number

Filter entries with maximum price in USDC.

grapevine entry list --price-max 2.00

Examples

List All Entries

grapevine entry list

List Feed Entries

grapevine entry list --feed "123e4567..."

Search and Filter

grapevine entry list --query "react" --tags tutorial,beginner

Browse by Price Range

grapevine entry list --price-min 0.25 --price-max 1.00 --sort price

Your Popular Entries

grapevine entry list --my --sort popular --limit 10

Output

📚 Entries (page 1 of 12, sorted by recent)
 
📄 Getting Started with TypeScript - entry-123e4567...
   Feed: Tech Blog • Price: $0.50 USDC • Views: 147
   Tags: typescript, tutorial, beginner
   Excerpt: Learn the fundamentals of TypeScript...
   Published: 2024-03-01 14:30 UTC
   View: https://grapevine.markets/entries/entry-123e4567...
 
📄 React Best Practices 2024 - entry-456e7890...
   Feed: Web Dev Tips • Price: $0.75 USDC • Views: 89
   Tags: react, best-practices, frontend
   Excerpt: Essential patterns every React developer should know...
   Published: 2024-02-28 09:15 UTC
   View: https://grapevine.markets/entries/entry-456e7890...
 
📄 Node.js Performance Tips - entry-789eabcd...
   Feed: Backend Mastery • Price: $1.25 USDC • Views: 234
   Tags: nodejs, performance, backend
   Excerpt: Optimize your Node.js applications for production...
   Published: 2024-02-25 16:45 UTC
   View: https://grapevine.markets/entries/entry-789eabcd...
 
Use --page 2 to see more entries

With Feed Filter

📚 Entries from Tech Blog (25 total)
 
📄 Advanced TypeScript Patterns - entry-abc123...
   Price: $1.50 USDC • Views: 67 • Published: Mar 01, 2024
   Tags: typescript, advanced, patterns
 
📄 TypeScript for Beginners - entry-def456...
   Price: $0.25 USDC • Views: 203 • Published: Feb 28, 2024
   Tags: typescript, beginner, tutorial
 
📄 Setting up TypeScript Project - entry-ghi789...
   Price: FREE • Views: 156 • Published: Feb 25, 2024
   Tags: typescript, setup, tooling

Authentication

Public entries can be viewed without authentication. Use --my to see your own entries (requires auth).

Environment Variable
export PRIVATE_KEY="0xYourPrivateKeyHere"
grapevine entry list --my

Filtering Tips

Combine Filters

# High-value React tutorials
grapevine entry list --tags react,tutorial --price-min 1.00 --sort revenue
 
# Recent free content
grapevine entry list --price-max 0.00 --sort recent --limit 5
 
# Popular beginner content
grapevine entry list --tags beginner --sort popular

Search Syntax

  • Search matches title and content
  • Multiple terms are AND-ed together
  • Use quotes for exact phrases: --query "exact phrase"

Related Commands