gurl save Save a curl request with a memorable name for later use.
Usage gurl [command] [arguments] [flags] gurl save [name] [url] [flags] Description The save command stores a curl request under a given name. You can specify the URL directly, pass a full curl command with --curl, or pipe curl output from another program.
After saving, use gurl run [name] to execute the request.
Flags Flag Short Default Description --collection -c none Assign request to a collection --folder -F none Assign request to a folder --tag -t none Add a tag (can be specified multiple times) --format -f auto Output format: auto, json, or table --description none Human-readable description --curl none Full curl command to parse --request -X GET HTTP method --header -H none HTTP header (can be specified multiple times) --data -d none Request body --body none Request body (alias for --data) --extract none Add extraction rule as VAR_NAME=METHOD:EXPRESSION --pre-script --pre none Set pre-request script --post-script --post none Set post-response script --auth none Authentication type: basic, bearer, apikey, oauth1, oauth2, awsv4, digest, ntlm, or none --auth-param none Authentication parameter as key=value (can be specified multiple times) Aliases s Examples Basic save gurl save "users" https://api.example.com/users Saves a GET request to fetch users.
...