Skip to content

Query parameters

Query parameters append to the URL after ? — filters, search terms, dates, pagination, and flags. They are separate from path parameters embedded in the route.

Add parameters with location: query in the tool schema. Chatevo URL-encodes values and builds the query string at execution time.

FieldGuidance
NameQuery key as your API expects (status, page, arrival)
Typestring, number, integer, boolean
Requiredfalse for optional filters; true when the API requires the key
DescriptionFormat hints — e.g. “ISO date YYYY-MM-DD for check-in”

URL: GET https://api.hotel.com/offers

Query paramTypeRequiredDescription
arrivalstringyesCheck-in date (YYYY-MM-DD)
departurestringyesCheck-out date (YYYY-MM-DD)
adultsintegeryesNumber of adult guests
currencystringnoISO currency code, default EUR

Resulting request:

GET https://api.hotel.com/offers?arrival=2026-06-15&departure=2026-06-17&adults=2

Some APIs expect the key in the query string. Configure that on an API key credential with location: query — do not paste the secret into the param description.

Document the expected format in the param description (status=open,closed vs repeated status=open&status=closed). Match what your backend accepts.

PathQuery
/orders/{order_id}?status=shipped&limit=10
Resource identitySearch and filters