### List all SetupIntents Source: https://docs.stripe.com/api/setup_intents/list?api-version=2026-02-25.clover Returns a paginated list of all SetupIntents. ```APIDOC ## GET /v1/setup_intents ### Description Returns a paginated list of all SetupIntents. ### Method GET ### Endpoint /v1/setup_intents ``` -------------------------------- ### Stripe Serve Command Output Example Source: https://docs.stripe.com/cli This snippet shows an example of the output when the `stripe serve` command successfully starts a server and handles a GET request. ```text Starting stripe server at address http://localhost:4242 ::1 - - [28/Jan/2022:14:00:00 -0800] "GET / HTTP/1.1" 200 175 ... ``` -------------------------------- ### List all SetupIntents Source: https://docs.stripe.com/api/setup_intents/create?api-version=2025-09-30.clover List all SetupIntents. ```APIDOC ## GET /v1/setup_intents ### Description List all SetupIntents. ### Method GET ### Endpoint /v1/setup_intents ``` -------------------------------- ### Run Stripe Terminal JavaScript Demo Source: https://docs.stripe.com/terminal/example-applications Navigate into the cloned directory, install dependencies, and start the JavaScript example application. ```bash cd stripe-terminal-js-demo npm install npm run start ``` -------------------------------- ### Install React Native Example App Dependencies Source: https://docs.stripe.com/terminal/example-applications Navigate into the example app directory and install its package dependencies using Yarn. ```bash cd stripe-terminal-react-native/example-app yarn ``` -------------------------------- ### List all SetupIntents Source: https://docs.stripe.com/api/setup_intents/confirm?api-version=2026-05-27.preview Returns a list of your SetupIntents. ```APIDOC ## GET /v1/setup_intents\n\n### Description\nReturns a list of your SetupIntents.\n\n### Method\nGET\n\n### Endpoint\n/v1/setup_intents ``` -------------------------------- ### List all SetupIntents Source: https://docs.stripe.com/api/setup_intents/create?api-version=2026-02-25.preview Lists all SetupIntents. ```APIDOC ## GET /v1/setup_intents ### Description Lists all SetupIntents. ### Method GET ### Endpoint /v1/setup_intents ``` -------------------------------- ### GET /v1/charges (Authenticated Request Example) Source: https://docs.stripe.com/api/errors/handling?api-version=2025-10-29.clover This code snippet demonstrates how to make an authenticated GET request to the `/v1/charges` endpoint using cURL. It serves as a practical example for authenticating API calls with a secret API key. ```APIDOC ## GET /v1/charges ### Description This endpoint is used in an example to demonstrate how to make an authenticated request to the Stripe API. It shows the use of an API key for basic authentication. The `curl` command defaults to a GET request when no HTTP method is explicitly specified. ### Method GET ### Endpoint /v1/charges ### Parameters #### Path Parameters #### Query Parameters #### Request Body ### Request Example ``` curl https://api.stripe.com/v1/charges \ -u sk_test_BQokikJ...2HlWgH4olfQ2sk_test_BQokikJOvBiI2HlWgH4olfQ2: # The colon prevents curl from asking for a password. ``` ### Response #### Success Response (200) #### Response Example ``` ``` ``` -------------------------------- ### List all SetupIntents Source: https://docs.stripe.com/api/setup_intents/object?api-version=2025-10-29.preview Returns a paginated list of all SetupIntents, ordered by creation date. ```APIDOC ## GET /v1/setup_intents ### Description Returns a paginated list of all SetupIntents, ordered by creation date. ### Method GET ### Endpoint /v1/setup_intents ``` -------------------------------- ### Install Client Application Dependencies Source: https://docs.stripe.com/billing/quickstart This command installs the necessary dependencies for the client-side application. This is typically a one-time setup. ```Shell npm install ``` -------------------------------- ### Install Python dependencies Source: https://docs.stripe.com/payments/machine/x402/quickstart Install required Python packages using the uv package manager. ```bash uv sync ``` -------------------------------- ### POST /v1/setup_intents Source: https://docs.stripe.com/api/setup_intents/confirm?api-version=2025-11-17.clover Create a SetupIntent ```APIDOC ## POST /v1/setup_intents ### Description Create a SetupIntent ### Method POST ### Endpoint /v1/setup_intents ``` -------------------------------- ### POST /v1/setup_intents Source: https://docs.stripe.com/api/setup_intents/create?api-version=2026-05-27.preview Create a SetupIntent ```APIDOC ## POST /v1/setup_intents ### Description Create a SetupIntent. ### Method POST ### Endpoint /v1/setup_intents ``` -------------------------------- ### Install Stripe Ruby Client Library Source: https://docs.stripe.com/api/metadata?api-version=2026-03-25.preview Use this command to install the Stripe Ruby client library via RubyGems. The example specifies a beta version for installation. ```bash $gem install stripe -v 19.1.0-beta.1 stripe-ruby ``` -------------------------------- ### Manually Install Stripe Skills Source: https://docs.stripe.com/skills Run this command in your project to manually install Stripe skills. Manually installed skills do not auto-update, so run the command again to get the latest versions. ```bash npx skills add https://docs.stripe.com ``` -------------------------------- ### GET /v1/setup_intents Source: https://docs.stripe.com/api/setup_intents/confirm?api-version=2025-11-17.clover List all SetupIntents ```APIDOC ## GET /v1/setup_intents ### Description List all SetupIntents ### Method GET ### Endpoint /v1/setup_intents ``` -------------------------------- ### POST /v1/setup_intents Source: https://docs.stripe.com/api/setup_intents/list?api-version=2025-12-15.preview Create a new SetupIntent. ```APIDOC ## POST /v1/setup_intents ### Description Create a new SetupIntent. ### Method POST ### Endpoint /v1/setup_intents ``` -------------------------------- ### Live Mode Redirect URL after Successful Installation Source: https://docs.stripe.com/stripe-apps/install-links This URL is an example of a successful app installation redirect in live mode, including user, account, state, and install signature parameters. ```URL https://example.com/callback/stripe?user_id={USER_ID}&account_id={CONNECTED_ACCOUNT_ID}&state={STATE}&install_signature={INSTALL_SIGNATURE} ```