CH·02CLI reference
gpu webhooks list
List your webhook endpoints
List your webhook endpoints
Synopsis
Lists the webhook endpoints registered for your organization. Signing secrets are never included — they are shown only once, by gpu webhooks create. Each entry shows id, URL, subscribed event types, whether the endpoint is enabled, and created date.
Results are paginated. When more endpoints remain, the CLI prints a Next cursor: hint to stderr (never stdout, so -o json output stays parseable); pass that value back via --cursor to fetch the next page. The cursor is an opaque token — copy it as-is rather than constructing one.
gpu webhooks list [flags]
Examples
# First page (50 endpoints by default)
gpu webhooks list
# Continue from the opaque cursor printed on stderr by the previous call
gpu webhooks list --cursor "$NEXT_CURSOR" --limit 100
Options
--cursor string Pagination cursor from a previous list (see the stderr hint)
-h, --help help for list
--limit int Max endpoints to fetch (1-200) (default 50)
Options inherited from parent commands
--api-base string API base URL (override with GPUAI_API_BASE env) (default "https://api.gpu.ai/v1")
--debug Enable debug logging to stderr
-o, --output string Output format: table|json (default table on TTY, json otherwise)
SEE ALSO
- gpu webhooks - Manage webhook endpoints