GET
/
v1
/
runnables
[
  {
    "id": "3c90c3cc-0d44-4b50-8888-8dd25736052a",
    "account_id": "<string>",
    "name": "<string>",
    "description": "<string>",
    "config_content": "<string>",
    "config_content_parsed": {
      "name": "<string>",
      "description": "<string>",
      "type": "prompt",
      "llms": [
        {
          "name": "<string>",
          "is_default": true,
          "provider": "openai",
          "model": "<string>",
          "params": {}
        }
      ],
      "inputs": [
        {
          "name": "<string>",
          "description": "<string>",
          "type": "text",
          "mime_types": [
            "<string>"
          ],
          "transforms": [
            {
              "name": "<string>",
              "type": "ocr",
              "provider": "<string>"
            }
          ],
          "required": true,
          "metadata": {
            "schema": {},
            "required": true
          }
        }
      ],
      "schemas": {},
      "prompt": {
        "system": "<string>",
        "messages": [
          {
            "role": "user",
            "content": "<string>"
          }
        ]
      }
    },
    "config_content_type": "prompt",
    "config_content_sha256": "<string>",
    "created_by": "<string>",
    "created_at": "2023-11-07T05:31:56Z",
    "updated_at": "2023-11-07T05:31:56Z",
    "tags": [
      "<string>"
    ]
  }
]
List all runnables for the authenticated account. You can filter the results by:
  • type: Filter by runnable type (prompt, flow, or agent)
  • tags: Filter by one or more tags
The response includes the full runnable configuration and metadata for each runnable.

Authorizations

Authorization
string
header
required

Bearer authentication header of the form Bearer <token>, where <token> is your auth token.

Query Parameters

type
enum<string>

Filter by runnable type

Available options:
prompt,
flow,
agent
tags
string[]

Filter by tags

Response

200 - application/json

List of runnables

The response is of type object[].