Import request from cURL command

You can import requests from cURL commands to quickly create a request without manually entering all the details.

For example, if you want to import the following cURL command from Stripe's API documentation:

curl -G https://api.stripe.com/v1/customers \
  -u 2430578aslkdfjh43254332: \
  -d limit=3

Create a custom request and paste the cURL command into the URL input. The cURL command will be imported into the current request, including any parameters and headers.

What is cURL?

cURL is a widely used command-line tool for making API requests. You might see cURL commands:

Last updated