For the complete documentation index, see llms.txt. This page is also available as Markdown.

GET

Send an API GET request and store the response as a Value.

GET calls an HTTP endpoint and stores the response for later steps. Use it to read data from an API inside the same Flow as your browser steps.

For a walkthrough of auth Headers, storage names, and JSON asserts, see Test APIs in a Flow.

GET Test Step

When to use it

  • Fetch a resource before or after a UI action.

  • Store the body under a clear Response Storage Name, then assert with Check JSON Value.

Configure

Basics

Field
What to set

URL

Fully qualified URL, or a Value that expands to one

Response Storage Name

Name for the stored response (response by default)

Advanced

Field
What to set

Headers

Request headers as JSON (use for Bearer tokens and API keys)

Expected Response Status Codes

Defaults to 2xx. Add specific codes when needed. Responses in the 5xx range fail as errors

Response Object

Body (default), Headers, or Complete

Status on fail

Pro tip: Switch Method on the step to move between GET, POST, PUT, PATCH, and DELETE without rebuilding the rest of the configuration.

Tags: integration, api, get, rest

Last updated