Skip to content

URL & Parameters

Enter the full URL in the address bar, including the protocol:

https://api.example.com/users

Flamingo supports http:// and https:// URLs. You can use environment variables anywhere in the URL:

https://{{base_url}}/api/v1/users

The Params tab lets you add URL query parameters using a key-value editor.

FeatureDescription
AddClick “Add” to insert a new parameter row
Enable/DisableToggle the checkbox to include or exclude a parameter
RemoveHover over a row and click the X to remove it
Environment VariablesUse {{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.

// 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=10
// 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