# Parameters

## Query Parameters

In a URL, a query parameter is a part of the query string and defined after the question mark (`?`). Query parameters are used to pass additional information.

For example, in the URL `https://www.example.com/search?query=example&page=2` the query parameters are 'query' and 'page', with values 'example' and '2', respectively.

## Body Parameters

Body parameters can be used to send JSON data. Unlike query parameters, it's possible to define the data type of body parameters.

{% hint style="warning" %}
Body parameters are not available for `GET` requests.
{% endhint %}

For example, in a `POST` request which creates a new job listing, the body parameters might include the job's title, location, and salary.


---

# Agent Instructions: Querying This Documentation

If you need additional information that is not directly available in this page, you can query the documentation dynamically by asking a question.

Perform an HTTP GET request on the current page URL with the `ask` query parameter:

```
GET https://docs.alphi.dev/flow-builder/parameters.md?ask=<question>
```

The question should be specific, self-contained, and written in natural language.
The response will contain a direct answer to the question and relevant excerpts and sources from the documentation.

Use this mechanism when the answer is not explicitly present in the current page, you need clarification or additional context, or you want to retrieve related documentation sections.
