v5

latestOpenAPI 3.1.02026-08-04166362486.5 KB
responses

List responses

List stored responses, one per conversation chain.

Only chain tips are returned: a response is listed unless another stored response continues from it via previous_response_id.

get/v1/responses

Query parameters

limitinteger

Number of responses to return

Number of responses to return

afterstring nullable

Response ID to list responses after (older than)

Response ID to list responses after (older than)

qstring nullable

Filter by title (case-insensitive substring)

Filter by title (case-insensitive substring)

includestring[] nullable

Extra fields to include, e.g. store_search_call.results, store_grep_call.results or store_list_chunks_call.results; unsupported values are ignored

Extra fields to include, e.g. store_search_call.results, store_grep_call.results or store_list_chunks_call.results; unsupported values are ignored

Response

The latest response of each conversation chain, newest first

object'list'
first_idstring nullable
last_idstring nullable
has_moreboolean

Example response

{
  "data": [
    {
      "tools": [
        {
          "filters": {
            "all": [
              {
                "key": "price",
                "operator": "gt",
                "value": "100"
              },
              {
                "key": "color",
                "operator": "eq",
                "value": "red"
              }
            ],
            "any": [
              {
                "key": "price",
                "operator": "gt",
                "value": "100"
              },
              {
                "key": "color",
                "operator": "eq",
                "value": "red"
              }
            ],
            "none": [
              {
                "key": "price",
                "operator": "gt",
                "value": "100"
              },
              {
                "key": "color",
                "operator": "eq",
                "value": "red"
              }
            ]
          }
        }
      ]
    }
  ]
}