URL & Parameters
Enter the full URL in the address bar, including the protocol:
https://api.example.com/usersFlamingo supports http:// and https:// URLs. You can use environment variables anywhere in the URL:
https://{{base_url}}/api/v1/usersQuery Parameters
Section titled “Query Parameters”The Params tab lets you add URL query parameters using a key-value editor.
| Feature | Description |
|---|---|
| Add | Click “Add” to insert a new parameter row |
| Enable/Disable | Toggle the checkbox to include or exclude a parameter |
| Remove | Hover over a row and click the X to remove it |
| Environment Variables | Use {{variable_name}} in key or value |
Parameters are automatically appended to the URL as query string. The URL bar updates in real time as you edit parameters.
Example
Section titled “Example”// URL: https://api.example.com/users// Params tab entries:// page = 2 (enabled)// limit = 10 (enabled)// sort = name (disabled)//// Resulting URL:// https://api.example.com/users?page=2&limit=10Using Environment Variables
Section titled “Using Environment Variables”// Environment: Development// base_url = dev-api.example.com//// URL: https://{{base_url}}/users// Resolves to: https://dev-api.example.com/users//// Params:// api_key = {{dev_key}}// Resolves to the value of dev_key in the active environment