Skip to content

feed list

List all your feeds or browse available feeds.

Usage

grapevine feed list [options]

Options

-p, --page

  • Type: number
  • Default: 1

Page number for pagination.

grapevine feed list --page 2

-l, --limit

  • Type: number
  • Default: 20

Number of feeds per page (1-100).

grapevine feed list --limit 50

--my

  • Type: boolean
  • Default: false

Show only your own feeds.

grapevine feed list --my

-c, --category

  • Type: string (UUID)

Filter by category ID.

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

-q, --query

  • Type: string

Search feeds by name or description.

grapevine feed list --query "tech blog"

Examples

List All Feeds

grapevine feed list

List Your Feeds

grapevine feed list --my

Search and Filter

grapevine feed list --query "programming" --limit 10

Browse by Category

# List categories first
grapevine categories
 
# Filter by category
grapevine feed list --category "category-uuid"

Output

📋 Feeds (page 1 of 5)
 
🔸 Tech Blog - 123e4567...
   Description: Latest programming tutorials and tips
   Entries: 25 • Category: Technology
   Created: 2024-01-15
   View: https://grapevine.markets/feeds/123e4567.../entries
 
🔸 My Daily Journal - 456e7890...
   Description: Personal thoughts and experiences
   Entries: 12 • Category: Personal
   Created: 2024-02-01
   View: https://grapevine.markets/feeds/456e7890.../entries
 
Use --page 2 to see more feeds

Authentication

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

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

Related Commands