gurl list

List all saved requests, optionally filtered by pattern, collection, or tag.

Usage

gurl list [flags]

Description

The list command displays saved requests with their names, URLs, methods, and collections. Use filters to narrow down results when you have many requests.

Flags

FlagShortDefaultDescription
--pattern-pnoneFilter by name pattern
--collection-cnoneFilter by collection name
--tag-tnoneFilter by tag
--json-jfalseOutput as JSON
--format-ftableOutput format: table or list
--limit-nnoneLimit number of results
--sort-snameSort by: name, updated, or collection

Aliases

  • ls
  • l

Examples

List all requests

gurl list

Displays all saved requests in a table.

Filter by collection

gurl list --collection "api"

Shows only requests in the “api” collection.

Filter by tag

gurl list --tag "production"

Shows requests tagged with “production”.

JSON output

gurl list --json

Outputs all requests as JSON for programmatic use.

Sort by last updated

gurl list --sort updated

Lists requests sorted by most recently updated.

See also