Import request from cURL command

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

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

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

Import a cURL command

To import a cURL command, simply 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