Documentation Index
Fetch the complete documentation index at: https://docs.testbrick.com/llms.txt
Use this file to discover all available pages before exploring further.
Your first API flow
API flows let you chain multiple API requests together on a visual canvas. Data flows between requests automatically.Steps
Create an API flow
In your project folder, click + and select API Flow. Give it a name like “User API Test”.
Add your first block
Click API in the toolbar to add a request block. Click the block to open the side panel.

Configure the request
In the side panel, set:
- Method:
GET - URL:
https://jsonplaceholder.typicode.com/users/1

Add a second block
Click API again to add another block. It auto-connects to the first one.Set:
- Method:
POST - URL:
https://jsonplaceholder.typicode.com/posts - Body:

Run the flow
Click Run All in the toolbar. Watch each block execute sequentially — blocks pulse purple while running, then turn green (pass) or red (fail).

Using data from previous blocks
When one block’s response contains data you need in the next block, type{{ in any field to see available variables:
- URL:
https://api.example.com/users/{{node_abc.body.id}} - Headers:
Bearer {{node_abc.body.token}} - Body:
{"userId": "{{node_abc.body.id}}"}
What’s next
Environment variables
Use variables like
{{baseUrl}} to switch between dev, staging, and productionAssertions
Validate response status codes, body content, headers, and timing
