Skip to content

Quick Start

Get up and running with Flamingo in under 10 seconds. No account, no onboarding — just a clean workspace.

Open Flamingo. A default tab with an empty GET request is created automatically.

  1. Select GET as the HTTP method (default).
  2. Enter a URL in the address bar:
https://jsonplaceholder.typicode.com/posts/1
  1. Click Send or press Ctrl + Enter.

Flamingo executes the request and displays the response in the right panel — status code, timing, size, and formatted body.

// 1. Set method to POST
// 2. Enter URL: https://jsonplaceholder.typicode.com/posts
// 3. Go to Body tab, select JSON, enter:
{
"title": "My Post",
"body": "This is the content",
"userId": 1
}
// 4. Headers tab — Content-Type: application/json is auto-detected
// 5. Click Send

Flamingo sends the POST request and shows the response, including the created resource with its new ID.