Stripe CLI Cheat Sheet/Send a raw POST request

Call an arbitrary POST endpoint directly from the CLI.

Section: Core CLI Usage Patterns

Send a raw POST request

bash
bash
stripe post /v1/customers -d email=ada@example.com -d name="Ada Lovelace"

Learn the surrounding workflow

Compare similar commands or jump into common fixes when this command is part of a bigger troubleshooting path.

Related commands

Same sheet · prioritizing Core CLI Usage Patterns
Send a raw GET request
Call an arbitrary Stripe API endpoint directly.
OpenIn sheetbashsame section
Expand nested objects in the response
Request expanded objects directly from Stripe.
OpenIn sheetbashsame section
Send a raw DELETE request
Delete or deactivate supported resources with a raw request.
OpenIn sheetbashsame section
List resources with a limit
Limit the number of returned objects.
OpenIn sheetbashsame section
Pipe JSON output to jq
Extract specific fields from a CLI response.
OpenIn sheetbashsame section
Send an idempotency key
Protect retried write requests from duplication.
OpenIn sheetbashsame section