# Query batching

Sleuth GQL API supports batching, which allows you to execute multiple queries in a single request. To use it, you need to make two small changes to your requests: use a different API URL and wrap the payload in a list.

The two examples below demonstrate the same query being requested individually or in a batch.

### Individual query

#### URL

`https://app.sleuth.io/graphql`

#### Request body

```json
{
  "query": "{ organization(orgSlug: \"sleuth\") { name } }",
  "variables": null
}
```

### Batched query

#### URL

`https://app.sleuth.io/graphql-batch`

#### Request body

```json
[
  {
    "query": "{ organization(orgSlug: \"sleuth\") { name } }",
    "variables": null
  }
]
```

{% hint style="info" %}
When batching queries, the server response will match the request and return a list of objects instead of a single object.
{% endhint %}


---

# 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://help.sleuth.io/sleuth-dora/sleuth-api/query-batching.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.
