{
  "info": {
    "name": "OpenRout.ing API",
    "_postman_id": "openrouting-api-collection",
    "description": "Complete API collection for OpenRout.ing \u2014 347 endpoints across Raw Inference, Intelligence API, and Backend.",
    "schema": "https://schema.getpostman.com/json/collection/v2.1.0/collection.json"
  },
  "variable": [
    {
      "key": "base_url",
      "value": "https://openrout.ing",
      "type": "string"
    },
    {
      "key": "api_key",
      "value": "YOUR_API_KEY",
      "type": "string"
    },
    {
      "key": "raw_url",
      "value": "https://raw.openrout.ing",
      "type": "string"
    },
    {
      "key": "intel_url",
      "value": "https://api.openrout.ing",
      "type": "string"
    }
  ],
  "item": [
    {
      "name": "System",
      "item": [
        {
          "name": "GET /health",
          "request": {
            "method": "GET",
            "header": [
              {
                "key": "Authorization",
                "value": "Bearer {{api_key}}",
                "type": "text"
              },
              {
                "key": "Content-Type",
                "value": "application/json",
                "type": "text"
              }
            ],
            "url": {
              "raw": "{{base_url}}/health",
              "host": [
                "{{base_url}}"
              ],
              "path": [
                "health"
              ]
            },
            "description": "Health"
          },
          "response": []
        },
        {
          "name": "GET /metrics",
          "request": {
            "method": "GET",
            "header": [
              {
                "key": "Authorization",
                "value": "Bearer {{api_key}}",
                "type": "text"
              },
              {
                "key": "Content-Type",
                "value": "application/json",
                "type": "text"
              }
            ],
            "url": {
              "raw": "{{base_url}}/metrics",
              "host": [
                "{{base_url}}"
              ],
              "path": [
                "metrics"
              ]
            },
            "description": "Metrics"
          },
          "response": []
        }
      ]
    },
    {
      "name": "v1 \u2014 Admin",
      "item": [
        {
          "name": "POST /v1/admin/reset-tokens",
          "request": {
            "method": "POST",
            "header": [
              {
                "key": "Authorization",
                "value": "Bearer {{api_key}}",
                "type": "text"
              },
              {
                "key": "Content-Type",
                "value": "application/json",
                "type": "text"
              }
            ],
            "url": {
              "raw": "{{base_url}}/v1/admin/reset-tokens",
              "host": [
                "{{base_url}}"
              ],
              "path": [
                "v1",
                "admin",
                "reset-tokens"
              ]
            },
            "description": "Admin Reset Tokens"
          },
          "response": []
        }
      ]
    },
    {
      "name": "v1 \u2014 Agents",
      "item": [
        {
          "name": "GET /v1/agents",
          "request": {
            "method": "GET",
            "header": [
              {
                "key": "Authorization",
                "value": "Bearer {{api_key}}",
                "type": "text"
              },
              {
                "key": "Content-Type",
                "value": "application/json",
                "type": "text"
              }
            ],
            "url": {
              "raw": "{{base_url}}/v1/agents",
              "host": [
                "{{base_url}}"
              ],
              "path": [
                "v1",
                "agents"
              ]
            },
            "description": "List Agents"
          },
          "response": []
        },
        {
          "name": "POST /v1/agents",
          "request": {
            "method": "POST",
            "header": [
              {
                "key": "Authorization",
                "value": "Bearer {{api_key}}",
                "type": "text"
              },
              {
                "key": "Content-Type",
                "value": "application/json",
                "type": "text"
              }
            ],
            "url": {
              "raw": "{{base_url}}/v1/agents",
              "host": [
                "{{base_url}}"
              ],
              "path": [
                "v1",
                "agents"
              ]
            },
            "description": "Create Agent",
            "body": {
              "mode": "raw",
              "raw": "{\n  \"name\": \"string\",\n  \"persona\": \"string\",\n  \"model_preference\": \"general\",\n  \"model_fallback\": [],\n  \"lifecycle\": \"persistent\",\n  \"tools\": [],\n  \"skills\": [],\n  \"self_build\": {},\n  \"constraints\": {}\n}",
              "options": {
                "raw": {
                  "language": "json"
                }
              }
            }
          },
          "response": []
        },
        {
          "name": "GET /v1/agents/{agent_id}",
          "request": {
            "method": "GET",
            "header": [
              {
                "key": "Authorization",
                "value": "Bearer {{api_key}}",
                "type": "text"
              },
              {
                "key": "Content-Type",
                "value": "application/json",
                "type": "text"
              }
            ],
            "url": {
              "raw": "{{base_url}}/v1/agents/{agent_id}",
              "host": [
                "{{base_url}}"
              ],
              "path": [
                "v1",
                "agents",
                "{agent_id}"
              ]
            },
            "description": "Get Agent"
          },
          "response": []
        },
        {
          "name": "PATCH /v1/agents/{agent_id}",
          "request": {
            "method": "PATCH",
            "header": [
              {
                "key": "Authorization",
                "value": "Bearer {{api_key}}",
                "type": "text"
              },
              {
                "key": "Content-Type",
                "value": "application/json",
                "type": "text"
              }
            ],
            "url": {
              "raw": "{{base_url}}/v1/agents/{agent_id}",
              "host": [
                "{{base_url}}"
              ],
              "path": [
                "v1",
                "agents",
                "{agent_id}"
              ]
            },
            "description": "Update Agent"
          },
          "response": []
        },
        {
          "name": "DELETE /v1/agents/{agent_id}",
          "request": {
            "method": "DELETE",
            "header": [
              {
                "key": "Authorization",
                "value": "Bearer {{api_key}}",
                "type": "text"
              },
              {
                "key": "Content-Type",
                "value": "application/json",
                "type": "text"
              }
            ],
            "url": {
              "raw": "{{base_url}}/v1/agents/{agent_id}",
              "host": [
                "{{base_url}}"
              ],
              "path": [
                "v1",
                "agents",
                "{agent_id}"
              ]
            },
            "description": "Delete Agent"
          },
          "response": []
        },
        {
          "name": "POST /v1/agents/{agent_id}/chat",
          "request": {
            "method": "POST",
            "header": [
              {
                "key": "Authorization",
                "value": "Bearer {{api_key}}",
                "type": "text"
              },
              {
                "key": "Content-Type",
                "value": "application/json",
                "type": "text"
              }
            ],
            "url": {
              "raw": "{{base_url}}/v1/agents/{agent_id}/chat",
              "host": [
                "{{base_url}}"
              ],
              "path": [
                "v1",
                "agents",
                "{agent_id}",
                "chat"
              ]
            },
            "description": "Agent Chat",
            "body": {
              "mode": "raw",
              "raw": "{\n  \"message\": \"What is your role?\",\n  \"context\": \"general\"\n}",
              "options": {
                "raw": {
                  "language": "json"
                }
              }
            }
          },
          "response": [
            {
              "name": "Example Response",
              "status": "OK",
              "code": 200,
              "body": "{\n  \"agent_id\": \"sovereign\",\n  \"response\": \"I am the Sovereign agent...\",\n  \"model\": \"Qwen/Qwen3-8B\"\n}"
            }
          ]
        },
        {
          "name": "POST /v1/agents/{agent_id}/memory",
          "request": {
            "method": "POST",
            "header": [
              {
                "key": "Authorization",
                "value": "Bearer {{api_key}}",
                "type": "text"
              },
              {
                "key": "Content-Type",
                "value": "application/json",
                "type": "text"
              }
            ],
            "url": {
              "raw": "{{base_url}}/v1/agents/{agent_id}/memory",
              "host": [
                "{{base_url}}"
              ],
              "path": [
                "v1",
                "agents",
                "{agent_id}",
                "memory"
              ]
            },
            "description": "Store Memory",
            "body": {
              "mode": "raw",
              "raw": "{\n  \"content\": \"string\",\n  \"category\": \"semantic\",\n  \"importance\": 0.5,\n  \"metadata\": {}\n}",
              "options": {
                "raw": {
                  "language": "json"
                }
              }
            }
          },
          "response": []
        },
        {
          "name": "POST /v1/agents/{agent_id}/memory/query",
          "request": {
            "method": "POST",
            "header": [
              {
                "key": "Authorization",
                "value": "Bearer {{api_key}}",
                "type": "text"
              },
              {
                "key": "Content-Type",
                "value": "application/json",
                "type": "text"
              }
            ],
            "url": {
              "raw": "{{base_url}}/v1/agents/{agent_id}/memory/query",
              "host": [
                "{{base_url}}"
              ],
              "path": [
                "v1",
                "agents",
                "{agent_id}",
                "memory",
                "query"
              ]
            },
            "description": "Query Memory",
            "body": {
              "mode": "raw",
              "raw": "{\n  \"query\": \"string\",\n  \"limit\": 0\n}",
              "options": {
                "raw": {
                  "language": "json"
                }
              }
            }
          },
          "response": []
        },
        {
          "name": "GET /v1/agents/{agent_id}/memory/stats",
          "request": {
            "method": "GET",
            "header": [
              {
                "key": "Authorization",
                "value": "Bearer {{api_key}}",
                "type": "text"
              },
              {
                "key": "Content-Type",
                "value": "application/json",
                "type": "text"
              }
            ],
            "url": {
              "raw": "{{base_url}}/v1/agents/{agent_id}/memory/stats",
              "host": [
                "{{base_url}}"
              ],
              "path": [
                "v1",
                "agents",
                "{agent_id}",
                "memory",
                "stats"
              ]
            },
            "description": "Memory Stats"
          },
          "response": []
        },
        {
          "name": "DELETE /v1/agents/{agent_id}/memory/{memory_id}",
          "request": {
            "method": "DELETE",
            "header": [
              {
                "key": "Authorization",
                "value": "Bearer {{api_key}}",
                "type": "text"
              },
              {
                "key": "Content-Type",
                "value": "application/json",
                "type": "text"
              }
            ],
            "url": {
              "raw": "{{base_url}}/v1/agents/{agent_id}/memory/{memory_id}",
              "host": [
                "{{base_url}}"
              ],
              "path": [
                "v1",
                "agents",
                "{agent_id}",
                "memory",
                "{memory_id}"
              ]
            },
            "description": "Delete Memory"
          },
          "response": []
        },
        {
          "name": "POST /v1/agents/{agent_id}/sub_agents",
          "request": {
            "method": "POST",
            "header": [
              {
                "key": "Authorization",
                "value": "Bearer {{api_key}}",
                "type": "text"
              },
              {
                "key": "Content-Type",
                "value": "application/json",
                "type": "text"
              }
            ],
            "url": {
              "raw": "{{base_url}}/v1/agents/{agent_id}/sub_agents",
              "host": [
                "{{base_url}}"
              ],
              "path": [
                "v1",
                "agents",
                "{agent_id}",
                "sub_agents"
              ]
            },
            "description": "Create Sub Agent",
            "body": {
              "mode": "raw",
              "raw": "{\n  \"name\": \"string\",\n  \"persona\": \"string\",\n  \"model_preference\": \"general\",\n  \"model_fallback\": [],\n  \"lifecycle\": \"persistent\",\n  \"tools\": [],\n  \"skills\": [],\n  \"self_build\": {},\n  \"constraints\": {}\n}",
              "options": {
                "raw": {
                  "language": "json"
                }
              }
            }
          },
          "response": []
        },
        {
          "name": "GET /v1/agents/{agent_id}/sub_agents",
          "request": {
            "method": "GET",
            "header": [
              {
                "key": "Authorization",
                "value": "Bearer {{api_key}}",
                "type": "text"
              },
              {
                "key": "Content-Type",
                "value": "application/json",
                "type": "text"
              }
            ],
            "url": {
              "raw": "{{base_url}}/v1/agents/{agent_id}/sub_agents",
              "host": [
                "{{base_url}}"
              ],
              "path": [
                "v1",
                "agents",
                "{agent_id}",
                "sub_agents"
              ]
            },
            "description": "List Sub Agents"
          },
          "response": []
        }
      ]
    },
    {
      "name": "v1 \u2014 Auth",
      "item": [
        {
          "name": "GET /v1/auth/api-keys",
          "request": {
            "method": "GET",
            "header": [
              {
                "key": "Authorization",
                "value": "Bearer {{api_key}}",
                "type": "text"
              },
              {
                "key": "Content-Type",
                "value": "application/json",
                "type": "text"
              }
            ],
            "url": {
              "raw": "{{base_url}}/v1/auth/api-keys",
              "host": [
                "{{base_url}}"
              ],
              "path": [
                "v1",
                "auth",
                "api-keys"
              ]
            },
            "description": "List Api Keys"
          },
          "response": []
        },
        {
          "name": "POST /v1/auth/api-keys",
          "request": {
            "method": "POST",
            "header": [
              {
                "key": "Authorization",
                "value": "Bearer {{api_key}}",
                "type": "text"
              },
              {
                "key": "Content-Type",
                "value": "application/json",
                "type": "text"
              }
            ],
            "url": {
              "raw": "{{base_url}}/v1/auth/api-keys",
              "host": [
                "{{base_url}}"
              ],
              "path": [
                "v1",
                "auth",
                "api-keys"
              ]
            },
            "description": "Create Api Key",
            "body": {
              "mode": "raw",
              "raw": "{\n  \"name\": \"string\",\n  \"scopes\": []\n}",
              "options": {
                "raw": {
                  "language": "json"
                }
              }
            }
          },
          "response": []
        },
        {
          "name": "DELETE /v1/auth/api-keys/{key_id}",
          "request": {
            "method": "DELETE",
            "header": [
              {
                "key": "Authorization",
                "value": "Bearer {{api_key}}",
                "type": "text"
              },
              {
                "key": "Content-Type",
                "value": "application/json",
                "type": "text"
              }
            ],
            "url": {
              "raw": "{{base_url}}/v1/auth/api-keys/{key_id}",
              "host": [
                "{{base_url}}"
              ],
              "path": [
                "v1",
                "auth",
                "api-keys",
                "{key_id}"
              ]
            },
            "description": "Revoke Api Key"
          },
          "response": []
        },
        {
          "name": "POST /v1/auth/login",
          "request": {
            "method": "POST",
            "header": [
              {
                "key": "Authorization",
                "value": "Bearer {{api_key}}",
                "type": "text"
              },
              {
                "key": "Content-Type",
                "value": "application/json",
                "type": "text"
              }
            ],
            "url": {
              "raw": "{{base_url}}/v1/auth/login",
              "host": [
                "{{base_url}}"
              ],
              "path": [
                "v1",
                "auth",
                "login"
              ]
            },
            "description": "Login",
            "body": {
              "mode": "raw",
              "raw": "{\n  \"email\": \"string\",\n  \"password\": \"string\"\n}",
              "options": {
                "raw": {
                  "language": "json"
                }
              }
            }
          },
          "response": []
        },
        {
          "name": "POST /v1/auth/logout",
          "request": {
            "method": "POST",
            "header": [
              {
                "key": "Authorization",
                "value": "Bearer {{api_key}}",
                "type": "text"
              },
              {
                "key": "Content-Type",
                "value": "application/json",
                "type": "text"
              }
            ],
            "url": {
              "raw": "{{base_url}}/v1/auth/logout",
              "host": [
                "{{base_url}}"
              ],
              "path": [
                "v1",
                "auth",
                "logout"
              ]
            },
            "description": "Logout"
          },
          "response": []
        },
        {
          "name": "GET /v1/auth/me",
          "request": {
            "method": "GET",
            "header": [
              {
                "key": "Authorization",
                "value": "Bearer {{api_key}}",
                "type": "text"
              },
              {
                "key": "Content-Type",
                "value": "application/json",
                "type": "text"
              }
            ],
            "url": {
              "raw": "{{base_url}}/v1/auth/me",
              "host": [
                "{{base_url}}"
              ],
              "path": [
                "v1",
                "auth",
                "me"
              ]
            },
            "description": "Get Me"
          },
          "response": []
        },
        {
          "name": "POST /v1/auth/register",
          "request": {
            "method": "POST",
            "header": [
              {
                "key": "Authorization",
                "value": "Bearer {{api_key}}",
                "type": "text"
              },
              {
                "key": "Content-Type",
                "value": "application/json",
                "type": "text"
              }
            ],
            "url": {
              "raw": "{{base_url}}/v1/auth/register",
              "host": [
                "{{base_url}}"
              ],
              "path": [
                "v1",
                "auth",
                "register"
              ]
            },
            "description": "Register Client",
            "body": {
              "mode": "raw",
              "raw": "{\n  \"email\": \"string\",\n  \"name\": \"string\",\n  \"password\": \"string\",\n  \"tier\": \"string\"\n}",
              "options": {
                "raw": {
                  "language": "json"
                }
              }
            }
          },
          "response": []
        }
      ]
    },
    {
      "name": "v1 \u2014 Billing",
      "item": [
        {
          "name": "POST /v1/billing/cancel",
          "request": {
            "method": "POST",
            "header": [
              {
                "key": "Authorization",
                "value": "Bearer {{api_key}}",
                "type": "text"
              },
              {
                "key": "Content-Type",
                "value": "application/json",
                "type": "text"
              }
            ],
            "url": {
              "raw": "{{base_url}}/v1/billing/cancel",
              "host": [
                "{{base_url}}"
              ],
              "path": [
                "v1",
                "billing",
                "cancel"
              ]
            },
            "description": "Cancel Subscription"
          },
          "response": []
        },
        {
          "name": "GET /v1/billing/cards",
          "request": {
            "method": "GET",
            "header": [
              {
                "key": "Authorization",
                "value": "Bearer {{api_key}}",
                "type": "text"
              },
              {
                "key": "Content-Type",
                "value": "application/json",
                "type": "text"
              }
            ],
            "url": {
              "raw": "{{base_url}}/v1/billing/cards",
              "host": [
                "{{base_url}}"
              ],
              "path": [
                "v1",
                "billing",
                "cards"
              ]
            },
            "description": "List Cards"
          },
          "response": []
        },
        {
          "name": "POST /v1/billing/checkout",
          "request": {
            "method": "POST",
            "header": [
              {
                "key": "Authorization",
                "value": "Bearer {{api_key}}",
                "type": "text"
              },
              {
                "key": "Content-Type",
                "value": "application/json",
                "type": "text"
              }
            ],
            "url": {
              "raw": "{{base_url}}/v1/billing/checkout",
              "host": [
                "{{base_url}}"
              ],
              "path": [
                "v1",
                "billing",
                "checkout"
              ]
            },
            "description": "Create Checkout"
          },
          "response": []
        },
        {
          "name": "GET /v1/billing/credit",
          "request": {
            "method": "GET",
            "header": [
              {
                "key": "Authorization",
                "value": "Bearer {{api_key}}",
                "type": "text"
              },
              {
                "key": "Content-Type",
                "value": "application/json",
                "type": "text"
              }
            ],
            "url": {
              "raw": "{{base_url}}/v1/billing/credit",
              "host": [
                "{{base_url}}"
              ],
              "path": [
                "v1",
                "billing",
                "credit"
              ]
            },
            "description": "Get Store Credit"
          },
          "response": []
        },
        {
          "name": "POST /v1/billing/credit/transfer",
          "request": {
            "method": "POST",
            "header": [
              {
                "key": "Authorization",
                "value": "Bearer {{api_key}}",
                "type": "text"
              },
              {
                "key": "Content-Type",
                "value": "application/json",
                "type": "text"
              }
            ],
            "url": {
              "raw": "{{base_url}}/v1/billing/credit/transfer",
              "host": [
                "{{base_url}}"
              ],
              "path": [
                "v1",
                "billing",
                "credit",
                "transfer"
              ]
            },
            "description": "Transfer Affiliate To Credit"
          },
          "response": []
        },
        {
          "name": "GET /v1/billing/history",
          "request": {
            "method": "GET",
            "header": [
              {
                "key": "Authorization",
                "value": "Bearer {{api_key}}",
                "type": "text"
              },
              {
                "key": "Content-Type",
                "value": "application/json",
                "type": "text"
              }
            ],
            "url": {
              "raw": "{{base_url}}/v1/billing/history",
              "host": [
                "{{base_url}}"
              ],
              "path": [
                "v1",
                "billing",
                "history"
              ]
            },
            "description": "Payment History"
          },
          "response": []
        },
        {
          "name": "GET /v1/billing/invoices",
          "request": {
            "method": "GET",
            "header": [
              {
                "key": "Authorization",
                "value": "Bearer {{api_key}}",
                "type": "text"
              },
              {
                "key": "Content-Type",
                "value": "application/json",
                "type": "text"
              }
            ],
            "url": {
              "raw": "{{base_url}}/v1/billing/invoices",
              "host": [
                "{{base_url}}"
              ],
              "path": [
                "v1",
                "billing",
                "invoices"
              ]
            },
            "description": "List Invoices"
          },
          "response": []
        },
        {
          "name": "GET /v1/billing/plans",
          "request": {
            "method": "GET",
            "header": [
              {
                "key": "Authorization",
                "value": "Bearer {{api_key}}",
                "type": "text"
              },
              {
                "key": "Content-Type",
                "value": "application/json",
                "type": "text"
              }
            ],
            "url": {
              "raw": "{{base_url}}/v1/billing/plans",
              "host": [
                "{{base_url}}"
              ],
              "path": [
                "v1",
                "billing",
                "plans"
              ]
            },
            "description": "List Plans V2"
          },
          "response": []
        },
        {
          "name": "GET /v1/billing/status",
          "request": {
            "method": "GET",
            "header": [
              {
                "key": "Authorization",
                "value": "Bearer {{api_key}}",
                "type": "text"
              },
              {
                "key": "Content-Type",
                "value": "application/json",
                "type": "text"
              }
            ],
            "url": {
              "raw": "{{base_url}}/v1/billing/status",
              "host": [
                "{{base_url}}"
              ],
              "path": [
                "v1",
                "billing",
                "status"
              ]
            },
            "description": "Billing Status"
          },
          "response": []
        },
        {
          "name": "POST /v1/billing/subscribe",
          "request": {
            "method": "POST",
            "header": [
              {
                "key": "Authorization",
                "value": "Bearer {{api_key}}",
                "type": "text"
              },
              {
                "key": "Content-Type",
                "value": "application/json",
                "type": "text"
              }
            ],
            "url": {
              "raw": "{{base_url}}/v1/billing/subscribe",
              "host": [
                "{{base_url}}"
              ],
              "path": [
                "v1",
                "billing",
                "subscribe"
              ]
            },
            "description": "Create Subscription"
          },
          "response": []
        },
        {
          "name": "GET /v1/billing/subscriptions",
          "request": {
            "method": "GET",
            "header": [
              {
                "key": "Authorization",
                "value": "Bearer {{api_key}}",
                "type": "text"
              },
              {
                "key": "Content-Type",
                "value": "application/json",
                "type": "text"
              }
            ],
            "url": {
              "raw": "{{base_url}}/v1/billing/subscriptions",
              "host": [
                "{{base_url}}"
              ],
              "path": [
                "v1",
                "billing",
                "subscriptions"
              ]
            },
            "description": "List Subscriptions"
          },
          "response": []
        },
        {
          "name": "POST /v1/billing/update-payment-method",
          "request": {
            "method": "POST",
            "header": [
              {
                "key": "Authorization",
                "value": "Bearer {{api_key}}",
                "type": "text"
              },
              {
                "key": "Content-Type",
                "value": "application/json",
                "type": "text"
              }
            ],
            "url": {
              "raw": "{{base_url}}/v1/billing/update-payment-method",
              "host": [
                "{{base_url}}"
              ],
              "path": [
                "v1",
                "billing",
                "update-payment-method"
              ]
            },
            "description": "Update Payment Method"
          },
          "response": []
        },
        {
          "name": "POST /v1/billing/webhook",
          "request": {
            "method": "POST",
            "header": [
              {
                "key": "Authorization",
                "value": "Bearer {{api_key}}",
                "type": "text"
              },
              {
                "key": "Content-Type",
                "value": "application/json",
                "type": "text"
              }
            ],
            "url": {
              "raw": "{{base_url}}/v1/billing/webhook",
              "host": [
                "{{base_url}}"
              ],
              "path": [
                "v1",
                "billing",
                "webhook"
              ]
            },
            "description": "Square Webhook"
          },
          "response": []
        }
      ]
    },
    {
      "name": "v1 \u2014 Catalog",
      "item": [
        {
          "name": "GET /v1/catalog/models",
          "request": {
            "method": "GET",
            "header": [
              {
                "key": "Authorization",
                "value": "Bearer {{api_key}}",
                "type": "text"
              },
              {
                "key": "Content-Type",
                "value": "application/json",
                "type": "text"
              }
            ],
            "url": {
              "raw": "{{base_url}}/v1/catalog/models",
              "host": [
                "{{base_url}}"
              ],
              "path": [
                "v1",
                "catalog",
                "models"
              ]
            },
            "description": "List Models"
          },
          "response": []
        },
        {
          "name": "GET /v1/catalog/models/categories",
          "request": {
            "method": "GET",
            "header": [
              {
                "key": "Authorization",
                "value": "Bearer {{api_key}}",
                "type": "text"
              },
              {
                "key": "Content-Type",
                "value": "application/json",
                "type": "text"
              }
            ],
            "url": {
              "raw": "{{base_url}}/v1/catalog/models/categories",
              "host": [
                "{{base_url}}"
              ],
              "path": [
                "v1",
                "catalog",
                "models",
                "categories"
              ]
            },
            "description": "Model Categories"
          },
          "response": []
        },
        {
          "name": "GET /v1/catalog/models/featured",
          "request": {
            "method": "GET",
            "header": [
              {
                "key": "Authorization",
                "value": "Bearer {{api_key}}",
                "type": "text"
              },
              {
                "key": "Content-Type",
                "value": "application/json",
                "type": "text"
              }
            ],
            "url": {
              "raw": "{{base_url}}/v1/catalog/models/featured",
              "host": [
                "{{base_url}}"
              ],
              "path": [
                "v1",
                "catalog",
                "models",
                "featured"
              ]
            },
            "description": "Featured Models"
          },
          "response": []
        },
        {
          "name": "GET /v1/catalog/models/{model_id}",
          "request": {
            "method": "GET",
            "header": [
              {
                "key": "Authorization",
                "value": "Bearer {{api_key}}",
                "type": "text"
              },
              {
                "key": "Content-Type",
                "value": "application/json",
                "type": "text"
              }
            ],
            "url": {
              "raw": "{{base_url}}/v1/catalog/models/{model_id}",
              "host": [
                "{{base_url}}"
              ],
              "path": [
                "v1",
                "catalog",
                "models",
                "{model_id}"
              ]
            },
            "description": "Get Model"
          },
          "response": []
        }
      ]
    },
    {
      "name": "v1 \u2014 Chat",
      "item": [
        {
          "name": "POST /v1/chat/completions",
          "request": {
            "method": "POST",
            "header": [
              {
                "key": "Authorization",
                "value": "Bearer {{api_key}}",
                "type": "text"
              },
              {
                "key": "Content-Type",
                "value": "application/json",
                "type": "text"
              }
            ],
            "url": {
              "raw": "{{raw_url}}/v1/chat/completions",
              "host": [
                "{{raw_url}}"
              ],
              "path": [
                "v1",
                "chat",
                "completions"
              ]
            },
            "description": "Chat Completions",
            "body": {
              "mode": "raw",
              "raw": "{\n  \"model\": \"string\",\n  \"messages\": [],\n  \"stream\": true,\n  \"max_tokens\": 0,\n  \"temperature\": 0.7\n}",
              "options": {
                "raw": {
                  "language": "json"
                }
              }
            }
          },
          "response": []
        }
      ]
    },
    {
      "name": "v1 \u2014 Clients",
      "item": [
        {
          "name": "GET /v1/clients",
          "request": {
            "method": "GET",
            "header": [
              {
                "key": "Authorization",
                "value": "Bearer {{api_key}}",
                "type": "text"
              },
              {
                "key": "Content-Type",
                "value": "application/json",
                "type": "text"
              }
            ],
            "url": {
              "raw": "{{base_url}}/v1/clients",
              "host": [
                "{{base_url}}"
              ],
              "path": [
                "v1",
                "clients"
              ]
            },
            "description": "List Clients"
          },
          "response": []
        },
        {
          "name": "POST /v1/clients",
          "request": {
            "method": "POST",
            "header": [
              {
                "key": "Authorization",
                "value": "Bearer {{api_key}}",
                "type": "text"
              },
              {
                "key": "Content-Type",
                "value": "application/json",
                "type": "text"
              }
            ],
            "url": {
              "raw": "{{base_url}}/v1/clients",
              "host": [
                "{{base_url}}"
              ],
              "path": [
                "v1",
                "clients"
              ]
            },
            "description": "Create Client",
            "body": {
              "mode": "raw",
              "raw": "{\n  \"email\": \"string\",\n  \"name\": \"string\",\n  \"tier\": \"string\",\n  \"concurrency_slots\": 0,\n  \"tokens_limit\": 0\n}",
              "options": {
                "raw": {
                  "language": "json"
                }
              }
            }
          },
          "response": []
        },
        {
          "name": "GET /v1/clients/{client_id}",
          "request": {
            "method": "GET",
            "header": [
              {
                "key": "Authorization",
                "value": "Bearer {{api_key}}",
                "type": "text"
              },
              {
                "key": "Content-Type",
                "value": "application/json",
                "type": "text"
              }
            ],
            "url": {
              "raw": "{{base_url}}/v1/clients/{client_id}",
              "host": [
                "{{base_url}}"
              ],
              "path": [
                "v1",
                "clients",
                "{client_id}"
              ]
            },
            "description": "Get Client"
          },
          "response": []
        },
        {
          "name": "PATCH /v1/clients/{client_id}/tier",
          "request": {
            "method": "PATCH",
            "header": [
              {
                "key": "Authorization",
                "value": "Bearer {{api_key}}",
                "type": "text"
              },
              {
                "key": "Content-Type",
                "value": "application/json",
                "type": "text"
              }
            ],
            "url": {
              "raw": "{{base_url}}/v1/clients/{client_id}/tier",
              "host": [
                "{{base_url}}"
              ],
              "path": [
                "v1",
                "clients",
                "{client_id}",
                "tier"
              ]
            },
            "description": "Update Client Tier"
          },
          "response": []
        }
      ]
    },
    {
      "name": "v1 \u2014 Embeddings",
      "item": [
        {
          "name": "POST /v1/embeddings",
          "request": {
            "method": "POST",
            "header": [
              {
                "key": "Authorization",
                "value": "Bearer {{api_key}}",
                "type": "text"
              },
              {
                "key": "Content-Type",
                "value": "application/json",
                "type": "text"
              }
            ],
            "url": {
              "raw": "{{raw_url}}/v1/embeddings",
              "host": [
                "{{raw_url}}"
              ],
              "path": [
                "v1",
                "embeddings"
              ]
            },
            "description": "Create Embeddings"
          },
          "response": []
        }
      ]
    },
    {
      "name": "v1 \u2014 Events",
      "item": [
        {
          "name": "GET /v1/events",
          "request": {
            "method": "GET",
            "header": [
              {
                "key": "Authorization",
                "value": "Bearer {{api_key}}",
                "type": "text"
              },
              {
                "key": "Content-Type",
                "value": "application/json",
                "type": "text"
              }
            ],
            "url": {
              "raw": "{{base_url}}/v1/events",
              "host": [
                "{{base_url}}"
              ],
              "path": [
                "v1",
                "events"
              ]
            },
            "description": "List Events"
          },
          "response": []
        }
      ]
    },
    {
      "name": "v1 \u2014 Knowledge-Bases",
      "item": [
        {
          "name": "GET /v1/knowledge-bases",
          "request": {
            "method": "GET",
            "header": [
              {
                "key": "Authorization",
                "value": "Bearer {{api_key}}",
                "type": "text"
              },
              {
                "key": "Content-Type",
                "value": "application/json",
                "type": "text"
              }
            ],
            "url": {
              "raw": "{{base_url}}/v1/knowledge-bases",
              "host": [
                "{{base_url}}"
              ],
              "path": [
                "v1",
                "knowledge-bases"
              ]
            },
            "description": "List Knowledge Bases"
          },
          "response": []
        },
        {
          "name": "POST /v1/knowledge-bases",
          "request": {
            "method": "POST",
            "header": [
              {
                "key": "Authorization",
                "value": "Bearer {{api_key}}",
                "type": "text"
              },
              {
                "key": "Content-Type",
                "value": "application/json",
                "type": "text"
              }
            ],
            "url": {
              "raw": "{{base_url}}/v1/knowledge-bases",
              "host": [
                "{{base_url}}"
              ],
              "path": [
                "v1",
                "knowledge-bases"
              ]
            },
            "description": "Create Knowledge Base",
            "body": {
              "mode": "raw",
              "raw": "{\n  \"name\": \"string\",\n  \"description\": \"string\",\n  \"embedding_model\": \"string\",\n  \"chunk_size\": 0,\n  \"chunk_overlap\": 0\n}",
              "options": {
                "raw": {
                  "language": "json"
                }
              }
            }
          },
          "response": []
        },
        {
          "name": "GET /v1/knowledge-bases/{kb_id}",
          "request": {
            "method": "GET",
            "header": [
              {
                "key": "Authorization",
                "value": "Bearer {{api_key}}",
                "type": "text"
              },
              {
                "key": "Content-Type",
                "value": "application/json",
                "type": "text"
              }
            ],
            "url": {
              "raw": "{{base_url}}/v1/knowledge-bases/{kb_id}",
              "host": [
                "{{base_url}}"
              ],
              "path": [
                "v1",
                "knowledge-bases",
                "{kb_id}"
              ]
            },
            "description": "Get Knowledge Base"
          },
          "response": []
        },
        {
          "name": "DELETE /v1/knowledge-bases/{kb_id}",
          "request": {
            "method": "DELETE",
            "header": [
              {
                "key": "Authorization",
                "value": "Bearer {{api_key}}",
                "type": "text"
              },
              {
                "key": "Content-Type",
                "value": "application/json",
                "type": "text"
              }
            ],
            "url": {
              "raw": "{{base_url}}/v1/knowledge-bases/{kb_id}",
              "host": [
                "{{base_url}}"
              ],
              "path": [
                "v1",
                "knowledge-bases",
                "{kb_id}"
              ]
            },
            "description": "Delete Knowledge Base"
          },
          "response": []
        },
        {
          "name": "GET /v1/knowledge-bases/{kb_id}/documents",
          "request": {
            "method": "GET",
            "header": [
              {
                "key": "Authorization",
                "value": "Bearer {{api_key}}",
                "type": "text"
              },
              {
                "key": "Content-Type",
                "value": "application/json",
                "type": "text"
              }
            ],
            "url": {
              "raw": "{{base_url}}/v1/knowledge-bases/{kb_id}/documents",
              "host": [
                "{{base_url}}"
              ],
              "path": [
                "v1",
                "knowledge-bases",
                "{kb_id}",
                "documents"
              ]
            },
            "description": "List Kb Documents"
          },
          "response": []
        },
        {
          "name": "POST /v1/knowledge-bases/{kb_id}/query",
          "request": {
            "method": "POST",
            "header": [
              {
                "key": "Authorization",
                "value": "Bearer {{api_key}}",
                "type": "text"
              },
              {
                "key": "Content-Type",
                "value": "application/json",
                "type": "text"
              }
            ],
            "url": {
              "raw": "{{base_url}}/v1/knowledge-bases/{kb_id}/query",
              "host": [
                "{{base_url}}"
              ],
              "path": [
                "v1",
                "knowledge-bases",
                "{kb_id}",
                "query"
              ]
            },
            "description": "Query Knowledge Base",
            "body": {
              "mode": "raw",
              "raw": "{\n  \"query\": \"string\",\n  \"limit\": 0\n}",
              "options": {
                "raw": {
                  "language": "json"
                }
              }
            }
          },
          "response": []
        }
      ]
    },
    {
      "name": "v1 \u2014 Mcp-Servers",
      "item": [
        {
          "name": "GET /v1/mcp-servers",
          "request": {
            "method": "GET",
            "header": [
              {
                "key": "Authorization",
                "value": "Bearer {{api_key}}",
                "type": "text"
              },
              {
                "key": "Content-Type",
                "value": "application/json",
                "type": "text"
              }
            ],
            "url": {
              "raw": "{{base_url}}/v1/mcp-servers",
              "host": [
                "{{base_url}}"
              ],
              "path": [
                "v1",
                "mcp-servers"
              ]
            },
            "description": "List Mcp Servers"
          },
          "response": []
        },
        {
          "name": "POST /v1/mcp-servers",
          "request": {
            "method": "POST",
            "header": [
              {
                "key": "Authorization",
                "value": "Bearer {{api_key}}",
                "type": "text"
              },
              {
                "key": "Content-Type",
                "value": "application/json",
                "type": "text"
              }
            ],
            "url": {
              "raw": "{{base_url}}/v1/mcp-servers",
              "host": [
                "{{base_url}}"
              ],
              "path": [
                "v1",
                "mcp-servers"
              ]
            },
            "description": "Create Mcp Server",
            "body": {
              "mode": "raw",
              "raw": "{\n  \"name\": \"string\",\n  \"description\": \"string\",\n  \"code\": \"string\",\n  \"transport\": \"string\",\n  \"visibility\": \"string\"\n}",
              "options": {
                "raw": {
                  "language": "json"
                }
              }
            }
          },
          "response": []
        },
        {
          "name": "GET /v1/mcp-servers/{mcp_id}",
          "request": {
            "method": "GET",
            "header": [
              {
                "key": "Authorization",
                "value": "Bearer {{api_key}}",
                "type": "text"
              },
              {
                "key": "Content-Type",
                "value": "application/json",
                "type": "text"
              }
            ],
            "url": {
              "raw": "{{base_url}}/v1/mcp-servers/{mcp_id}",
              "host": [
                "{{base_url}}"
              ],
              "path": [
                "v1",
                "mcp-servers",
                "{mcp_id}"
              ]
            },
            "description": "Get Mcp Server"
          },
          "response": []
        },
        {
          "name": "DELETE /v1/mcp-servers/{mcp_id}",
          "request": {
            "method": "DELETE",
            "header": [
              {
                "key": "Authorization",
                "value": "Bearer {{api_key}}",
                "type": "text"
              },
              {
                "key": "Content-Type",
                "value": "application/json",
                "type": "text"
              }
            ],
            "url": {
              "raw": "{{base_url}}/v1/mcp-servers/{mcp_id}",
              "host": [
                "{{base_url}}"
              ],
              "path": [
                "v1",
                "mcp-servers",
                "{mcp_id}"
              ]
            },
            "description": "Delete Mcp Server"
          },
          "response": []
        }
      ]
    },
    {
      "name": "v1 \u2014 Models",
      "item": [
        {
          "name": "GET /v1/models",
          "request": {
            "method": "GET",
            "header": [
              {
                "key": "Authorization",
                "value": "Bearer {{api_key}}",
                "type": "text"
              },
              {
                "key": "Content-Type",
                "value": "application/json",
                "type": "text"
              }
            ],
            "url": {
              "raw": "{{raw_url}}/v1/models",
              "host": [
                "{{raw_url}}"
              ],
              "path": [
                "v1",
                "models"
              ]
            },
            "description": "List Models"
          },
          "response": []
        },
        {
          "name": "GET /v1/models/all",
          "request": {
            "method": "GET",
            "header": [
              {
                "key": "Authorization",
                "value": "Bearer {{api_key}}",
                "type": "text"
              },
              {
                "key": "Content-Type",
                "value": "application/json",
                "type": "text"
              }
            ],
            "url": {
              "raw": "{{raw_url}}/v1/models/all",
              "host": [
                "{{raw_url}}"
              ],
              "path": [
                "v1",
                "models",
                "all"
              ]
            },
            "description": "List All Featherless Models"
          },
          "response": []
        },
        {
          "name": "GET /v1/models/search",
          "request": {
            "method": "GET",
            "header": [
              {
                "key": "Authorization",
                "value": "Bearer {{api_key}}",
                "type": "text"
              },
              {
                "key": "Content-Type",
                "value": "application/json",
                "type": "text"
              }
            ],
            "url": {
              "raw": "{{raw_url}}/v1/models/search",
              "host": [
                "{{raw_url}}"
              ],
              "path": [
                "v1",
                "models",
                "search"
              ]
            },
            "description": "Search Models"
          },
          "response": []
        }
      ]
    },
    {
      "name": "v1 \u2014 Skills",
      "item": [
        {
          "name": "GET /v1/skills",
          "request": {
            "method": "GET",
            "header": [
              {
                "key": "Authorization",
                "value": "Bearer {{api_key}}",
                "type": "text"
              },
              {
                "key": "Content-Type",
                "value": "application/json",
                "type": "text"
              }
            ],
            "url": {
              "raw": "{{base_url}}/v1/skills",
              "host": [
                "{{base_url}}"
              ],
              "path": [
                "v1",
                "skills"
              ]
            },
            "description": "List Skills"
          },
          "response": []
        },
        {
          "name": "POST /v1/skills",
          "request": {
            "method": "POST",
            "header": [
              {
                "key": "Authorization",
                "value": "Bearer {{api_key}}",
                "type": "text"
              },
              {
                "key": "Content-Type",
                "value": "application/json",
                "type": "text"
              }
            ],
            "url": {
              "raw": "{{base_url}}/v1/skills",
              "host": [
                "{{base_url}}"
              ],
              "path": [
                "v1",
                "skills"
              ]
            },
            "description": "Create Skill",
            "body": {
              "mode": "raw",
              "raw": "{\n  \"name\": \"string\",\n  \"description\": \"string\",\n  \"tools\": [],\n  \"workflows\": [],\n  \"system_prompt\": \"string\",\n  \"knowledge\": {},\n  \"visibility\": \"string\"\n}",
              "options": {
                "raw": {
                  "language": "json"
                }
              }
            }
          },
          "response": []
        },
        {
          "name": "GET /v1/skills/{skill_id}",
          "request": {
            "method": "GET",
            "header": [
              {
                "key": "Authorization",
                "value": "Bearer {{api_key}}",
                "type": "text"
              },
              {
                "key": "Content-Type",
                "value": "application/json",
                "type": "text"
              }
            ],
            "url": {
              "raw": "{{base_url}}/v1/skills/{skill_id}",
              "host": [
                "{{base_url}}"
              ],
              "path": [
                "v1",
                "skills",
                "{skill_id}"
              ]
            },
            "description": "Get Skill"
          },
          "response": []
        },
        {
          "name": "DELETE /v1/skills/{skill_id}",
          "request": {
            "method": "DELETE",
            "header": [
              {
                "key": "Authorization",
                "value": "Bearer {{api_key}}",
                "type": "text"
              },
              {
                "key": "Content-Type",
                "value": "application/json",
                "type": "text"
              }
            ],
            "url": {
              "raw": "{{base_url}}/v1/skills/{skill_id}",
              "host": [
                "{{base_url}}"
              ],
              "path": [
                "v1",
                "skills",
                "{skill_id}"
              ]
            },
            "description": "Delete Skill"
          },
          "response": []
        }
      ]
    },
    {
      "name": "v1 \u2014 Subscription",
      "item": [
        {
          "name": "GET /v1/subscription/me",
          "request": {
            "method": "GET",
            "header": [
              {
                "key": "Authorization",
                "value": "Bearer {{api_key}}",
                "type": "text"
              },
              {
                "key": "Content-Type",
                "value": "application/json",
                "type": "text"
              }
            ],
            "url": {
              "raw": "{{base_url}}/v1/subscription/me",
              "host": [
                "{{base_url}}"
              ],
              "path": [
                "v1",
                "subscription",
                "me"
              ]
            },
            "description": "Get My Subscription"
          },
          "response": []
        },
        {
          "name": "GET /v1/subscription/tiers",
          "request": {
            "method": "GET",
            "header": [
              {
                "key": "Authorization",
                "value": "Bearer {{api_key}}",
                "type": "text"
              },
              {
                "key": "Content-Type",
                "value": "application/json",
                "type": "text"
              }
            ],
            "url": {
              "raw": "{{base_url}}/v1/subscription/tiers",
              "host": [
                "{{base_url}}"
              ],
              "path": [
                "v1",
                "subscription",
                "tiers"
              ]
            },
            "description": "List Subscription Tiers"
          },
          "response": []
        }
      ]
    },
    {
      "name": "v1 \u2014 Tools",
      "item": [
        {
          "name": "GET /v1/tools",
          "request": {
            "method": "GET",
            "header": [
              {
                "key": "Authorization",
                "value": "Bearer {{api_key}}",
                "type": "text"
              },
              {
                "key": "Content-Type",
                "value": "application/json",
                "type": "text"
              }
            ],
            "url": {
              "raw": "{{base_url}}/v1/tools",
              "host": [
                "{{base_url}}"
              ],
              "path": [
                "v1",
                "tools"
              ]
            },
            "description": "List Tools"
          },
          "response": []
        },
        {
          "name": "POST /v1/tools",
          "request": {
            "method": "POST",
            "header": [
              {
                "key": "Authorization",
                "value": "Bearer {{api_key}}",
                "type": "text"
              },
              {
                "key": "Content-Type",
                "value": "application/json",
                "type": "text"
              }
            ],
            "url": {
              "raw": "{{base_url}}/v1/tools",
              "host": [
                "{{base_url}}"
              ],
              "path": [
                "v1",
                "tools"
              ]
            },
            "description": "Create Tool",
            "body": {
              "mode": "raw",
              "raw": "{\n  \"name\": \"string\",\n  \"description\": \"string\",\n  \"code\": \"string\",\n  \"runtime\": \"string\",\n  \"input_schema\": {},\n  \"output_schema\": {},\n  \"visibility\": \"string\"\n}",
              "options": {
                "raw": {
                  "language": "json"
                }
              }
            }
          },
          "response": []
        },
        {
          "name": "GET /v1/tools/{tool_id}",
          "request": {
            "method": "GET",
            "header": [
              {
                "key": "Authorization",
                "value": "Bearer {{api_key}}",
                "type": "text"
              },
              {
                "key": "Content-Type",
                "value": "application/json",
                "type": "text"
              }
            ],
            "url": {
              "raw": "{{base_url}}/v1/tools/{tool_id}",
              "host": [
                "{{base_url}}"
              ],
              "path": [
                "v1",
                "tools",
                "{tool_id}"
              ]
            },
            "description": "Get Tool"
          },
          "response": []
        },
        {
          "name": "DELETE /v1/tools/{tool_id}",
          "request": {
            "method": "DELETE",
            "header": [
              {
                "key": "Authorization",
                "value": "Bearer {{api_key}}",
                "type": "text"
              },
              {
                "key": "Content-Type",
                "value": "application/json",
                "type": "text"
              }
            ],
            "url": {
              "raw": "{{base_url}}/v1/tools/{tool_id}",
              "host": [
                "{{base_url}}"
              ],
              "path": [
                "v1",
                "tools",
                "{tool_id}"
              ]
            },
            "description": "Delete Tool"
          },
          "response": []
        }
      ]
    },
    {
      "name": "v1 \u2014 Usage",
      "item": [
        {
          "name": "GET /v1/usage",
          "request": {
            "method": "GET",
            "header": [
              {
                "key": "Authorization",
                "value": "Bearer {{api_key}}",
                "type": "text"
              },
              {
                "key": "Content-Type",
                "value": "application/json",
                "type": "text"
              }
            ],
            "url": {
              "raw": "{{base_url}}/v1/usage",
              "host": [
                "{{base_url}}"
              ],
              "path": [
                "v1",
                "usage"
              ]
            },
            "description": "Get Usage"
          },
          "response": []
        }
      ]
    },
    {
      "name": "v1 \u2014 Workflows",
      "item": [
        {
          "name": "GET /v1/workflows",
          "request": {
            "method": "GET",
            "header": [
              {
                "key": "Authorization",
                "value": "Bearer {{api_key}}",
                "type": "text"
              },
              {
                "key": "Content-Type",
                "value": "application/json",
                "type": "text"
              }
            ],
            "url": {
              "raw": "{{base_url}}/v1/workflows",
              "host": [
                "{{base_url}}"
              ],
              "path": [
                "v1",
                "workflows"
              ]
            },
            "description": "List Workflows"
          },
          "response": []
        },
        {
          "name": "POST /v1/workflows",
          "request": {
            "method": "POST",
            "header": [
              {
                "key": "Authorization",
                "value": "Bearer {{api_key}}",
                "type": "text"
              },
              {
                "key": "Content-Type",
                "value": "application/json",
                "type": "text"
              }
            ],
            "url": {
              "raw": "{{base_url}}/v1/workflows",
              "host": [
                "{{base_url}}"
              ],
              "path": [
                "v1",
                "workflows"
              ]
            },
            "description": "Create Workflow",
            "body": {
              "mode": "raw",
              "raw": "{\n  \"name\": \"string\",\n  \"description\": \"string\",\n  \"dag\": {},\n  \"trigger\": {},\n  \"persistent\": true,\n  \"resumable\": true\n}",
              "options": {
                "raw": {
                  "language": "json"
                }
              }
            }
          },
          "response": []
        },
        {
          "name": "GET /v1/workflows/{workflow_id}",
          "request": {
            "method": "GET",
            "header": [
              {
                "key": "Authorization",
                "value": "Bearer {{api_key}}",
                "type": "text"
              },
              {
                "key": "Content-Type",
                "value": "application/json",
                "type": "text"
              }
            ],
            "url": {
              "raw": "{{base_url}}/v1/workflows/{workflow_id}",
              "host": [
                "{{base_url}}"
              ],
              "path": [
                "v1",
                "workflows",
                "{workflow_id}"
              ]
            },
            "description": "Get Workflow"
          },
          "response": []
        },
        {
          "name": "DELETE /v1/workflows/{workflow_id}",
          "request": {
            "method": "DELETE",
            "header": [
              {
                "key": "Authorization",
                "value": "Bearer {{api_key}}",
                "type": "text"
              },
              {
                "key": "Content-Type",
                "value": "application/json",
                "type": "text"
              }
            ],
            "url": {
              "raw": "{{base_url}}/v1/workflows/{workflow_id}",
              "host": [
                "{{base_url}}"
              ],
              "path": [
                "v1",
                "workflows",
                "{workflow_id}"
              ]
            },
            "description": "Delete Workflow"
          },
          "response": []
        },
        {
          "name": "POST /v1/workflows/{workflow_id}/run",
          "request": {
            "method": "POST",
            "header": [
              {
                "key": "Authorization",
                "value": "Bearer {{api_key}}",
                "type": "text"
              },
              {
                "key": "Content-Type",
                "value": "application/json",
                "type": "text"
              }
            ],
            "url": {
              "raw": "{{base_url}}/v1/workflows/{workflow_id}/run",
              "host": [
                "{{base_url}}"
              ],
              "path": [
                "v1",
                "workflows",
                "{workflow_id}",
                "run"
              ]
            },
            "description": "Run Workflow",
            "body": {
              "mode": "raw",
              "raw": "{\n  \"inputs\": {}\n}",
              "options": {
                "raw": {
                  "language": "json"
                }
              }
            }
          },
          "response": []
        },
        {
          "name": "GET /v1/workflows/{workflow_id}/runs",
          "request": {
            "method": "GET",
            "header": [
              {
                "key": "Authorization",
                "value": "Bearer {{api_key}}",
                "type": "text"
              },
              {
                "key": "Content-Type",
                "value": "application/json",
                "type": "text"
              }
            ],
            "url": {
              "raw": "{{base_url}}/v1/workflows/{workflow_id}/runs",
              "host": [
                "{{base_url}}"
              ],
              "path": [
                "v1",
                "workflows",
                "{workflow_id}",
                "runs"
              ]
            },
            "description": "List Workflow Runs"
          },
          "response": []
        }
      ]
    },
    {
      "name": "v2 \u2014 A2A & Workflows",
      "item": [
        {
          "name": "POST /v2/a2a/broadcast",
          "request": {
            "method": "POST",
            "header": [
              {
                "key": "Authorization",
                "value": "Bearer {{api_key}}",
                "type": "text"
              },
              {
                "key": "Content-Type",
                "value": "application/json",
                "type": "text"
              }
            ],
            "url": {
              "raw": "{{base_url}}/v2/a2a/broadcast",
              "host": [
                "{{base_url}}"
              ],
              "path": [
                "v2",
                "a2a",
                "broadcast"
              ]
            },
            "description": "Broadcast to agents with capability",
            "body": {
              "mode": "raw",
              "raw": "{\n  \"capability\": \"string\",\n  \"max_recipients\": 0\n}",
              "options": {
                "raw": {
                  "language": "json"
                }
              }
            }
          },
          "response": []
        },
        {
          "name": "GET /v2/a2a/discover",
          "request": {
            "method": "GET",
            "header": [
              {
                "key": "Authorization",
                "value": "Bearer {{api_key}}",
                "type": "text"
              },
              {
                "key": "Content-Type",
                "value": "application/json",
                "type": "text"
              }
            ],
            "url": {
              "raw": "{{base_url}}/v2/a2a/discover",
              "host": [
                "{{base_url}}"
              ],
              "path": [
                "v2",
                "a2a",
                "discover"
              ]
            },
            "description": "Discover agents by capability"
          },
          "response": []
        },
        {
          "name": "POST /v2/a2a/tasks",
          "request": {
            "method": "POST",
            "header": [
              {
                "key": "Authorization",
                "value": "Bearer {{api_key}}",
                "type": "text"
              },
              {
                "key": "Content-Type",
                "value": "application/json",
                "type": "text"
              }
            ],
            "url": {
              "raw": "{{base_url}}/v2/a2a/tasks",
              "host": [
                "{{base_url}}"
              ],
              "path": [
                "v2",
                "a2a",
                "tasks"
              ]
            },
            "description": "Create A2A Task",
            "body": {
              "mode": "raw",
              "raw": "{\n  \"target_agent_id\": \"string\",\n  \"metadata\": {}\n}",
              "options": {
                "raw": {
                  "language": "json"
                }
              }
            }
          },
          "response": []
        },
        {
          "name": "GET /v2/a2a/tasks/{task_id}",
          "request": {
            "method": "GET",
            "header": [
              {
                "key": "Authorization",
                "value": "Bearer {{api_key}}",
                "type": "text"
              },
              {
                "key": "Content-Type",
                "value": "application/json",
                "type": "text"
              }
            ],
            "url": {
              "raw": "{{base_url}}/v2/a2a/tasks/{task_id}",
              "host": [
                "{{base_url}}"
              ],
              "path": [
                "v2",
                "a2a",
                "tasks",
                "{task_id}"
              ]
            },
            "description": "Get A2A Task status"
          },
          "response": []
        },
        {
          "name": "POST /v2/a2a/tasks/{task_id}/complete",
          "request": {
            "method": "POST",
            "header": [
              {
                "key": "Authorization",
                "value": "Bearer {{api_key}}",
                "type": "text"
              },
              {
                "key": "Content-Type",
                "value": "application/json",
                "type": "text"
              }
            ],
            "url": {
              "raw": "{{base_url}}/v2/a2a/tasks/{task_id}/complete",
              "host": [
                "{{base_url}}"
              ],
              "path": [
                "v2",
                "a2a",
                "tasks",
                "{task_id}",
                "complete"
              ]
            },
            "description": "Complete A2A Task",
            "body": {
              "mode": "raw",
              "raw": "{\n  \"parts\": [],\n  \"metadata\": {}\n}",
              "options": {
                "raw": {
                  "language": "json"
                }
              }
            }
          },
          "response": []
        },
        {
          "name": "POST /v2/a2a/tasks/{task_id}/send",
          "request": {
            "method": "POST",
            "header": [
              {
                "key": "Authorization",
                "value": "Bearer {{api_key}}",
                "type": "text"
              },
              {
                "key": "Content-Type",
                "value": "application/json",
                "type": "text"
              }
            ],
            "url": {
              "raw": "{{base_url}}/v2/a2a/tasks/{task_id}/send",
              "host": [
                "{{base_url}}"
              ],
              "path": [
                "v2",
                "a2a",
                "tasks",
                "{task_id}",
                "send"
              ]
            },
            "description": "Send message to A2A Task",
            "body": {
              "mode": "raw",
              "raw": "{\n  \"task_id\": \"string\",\n  \"metadata\": {}\n}",
              "options": {
                "raw": {
                  "language": "json"
                }
              }
            }
          },
          "response": []
        },
        {
          "name": "GET /v2/agents/{agent_id}/card",
          "request": {
            "method": "GET",
            "header": [
              {
                "key": "Authorization",
                "value": "Bearer {{api_key}}",
                "type": "text"
              },
              {
                "key": "Content-Type",
                "value": "application/json",
                "type": "text"
              }
            ],
            "url": {
              "raw": "{{base_url}}/v2/agents/{agent_id}/card",
              "host": [
                "{{base_url}}"
              ],
              "path": [
                "v2",
                "agents",
                "{agent_id}",
                "card"
              ]
            },
            "description": "Get Agent A2A Card"
          },
          "response": []
        },
        {
          "name": "PUT /v2/agents/{agent_id}/card",
          "request": {
            "method": "PUT",
            "header": [
              {
                "key": "Authorization",
                "value": "Bearer {{api_key}}",
                "type": "text"
              },
              {
                "key": "Content-Type",
                "value": "application/json",
                "type": "text"
              }
            ],
            "url": {
              "raw": "{{base_url}}/v2/agents/{agent_id}/card",
              "host": [
                "{{base_url}}"
              ],
              "path": [
                "v2",
                "agents",
                "{agent_id}",
                "card"
              ]
            },
            "description": "Update Agent A2A Card",
            "body": {
              "mode": "raw",
              "raw": "{\n  \"name\": \"string\",\n  \"description\": \"string\",\n  \"capabilities\": [],\n  \"skills\": [],\n  \"tools\": [],\n  \"model_preference\": \"string\",\n  \"input_modes\": [],\n  \"output_modes\": []\n}",
              "options": {
                "raw": {
                  "language": "json"
                }
              }
            }
          },
          "response": []
        },
        {
          "name": "POST /v2/improve/build",
          "request": {
            "method": "POST",
            "header": [
              {
                "key": "Authorization",
                "value": "Bearer {{api_key}}",
                "type": "text"
              },
              {
                "key": "Content-Type",
                "value": "application/json",
                "type": "text"
              }
            ],
            "url": {
              "raw": "{{base_url}}/v2/improve/build",
              "host": [
                "{{base_url}}"
              ],
              "path": [
                "v2",
                "improve",
                "build"
              ]
            },
            "description": "Auto-Build Tool/Skill/Agent/Workflow",
            "body": {
              "mode": "raw",
              "raw": "{\n  \"agent_id\": \"string\",\n  \"need_type\": \"string\",\n  \"description\": \"string\",\n  \"auto_register\": true\n}",
              "options": {
                "raw": {
                  "language": "json"
                }
              }
            }
          },
          "response": []
        },
        {
          "name": "POST /v2/improve/search",
          "request": {
            "method": "POST",
            "header": [
              {
                "key": "Authorization",
                "value": "Bearer {{api_key}}",
                "type": "text"
              },
              {
                "key": "Content-Type",
                "value": "application/json",
                "type": "text"
              }
            ],
            "url": {
              "raw": "{{base_url}}/v2/improve/search",
              "host": [
                "{{base_url}}"
              ],
              "path": [
                "v2",
                "improve",
                "search"
              ]
            },
            "description": "Search Capabilities",
            "body": {
              "mode": "raw",
              "raw": "{\n  \"query\": \"string\",\n  \"types\": [],\n  \"limit\": 0\n}",
              "options": {
                "raw": {
                  "language": "json"
                }
              }
            }
          },
          "response": []
        },
        {
          "name": "POST /v2/spawn",
          "request": {
            "method": "POST",
            "header": [
              {
                "key": "Authorization",
                "value": "Bearer {{api_key}}",
                "type": "text"
              },
              {
                "key": "Content-Type",
                "value": "application/json",
                "type": "text"
              }
            ],
            "url": {
              "raw": "{{base_url}}/v2/spawn",
              "host": [
                "{{base_url}}"
              ],
              "path": [
                "v2",
                "spawn"
              ]
            },
            "description": "Multi-Spawn Agents",
            "body": {
              "mode": "raw",
              "raw": "{\n  \"agents\": [],\n  \"coordinator\": true,\n  \"shared_memory\": true,\n  \"broadcast_results\": true\n}",
              "options": {
                "raw": {
                  "language": "json"
                }
              }
            }
          },
          "response": []
        },
        {
          "name": "GET /v2/spawn/{spawn_id}",
          "request": {
            "method": "GET",
            "header": [
              {
                "key": "Authorization",
                "value": "Bearer {{api_key}}",
                "type": "text"
              },
              {
                "key": "Content-Type",
                "value": "application/json",
                "type": "text"
              }
            ],
            "url": {
              "raw": "{{base_url}}/v2/spawn/{spawn_id}",
              "host": [
                "{{base_url}}"
              ],
              "path": [
                "v2",
                "spawn",
                "{spawn_id}"
              ]
            },
            "description": "Get Spawn Status"
          },
          "response": []
        },
        {
          "name": "GET /v2/status",
          "request": {
            "method": "GET",
            "header": [
              {
                "key": "Authorization",
                "value": "Bearer {{api_key}}",
                "type": "text"
              },
              {
                "key": "Content-Type",
                "value": "application/json",
                "type": "text"
              }
            ],
            "url": {
              "raw": "{{base_url}}/v2/status",
              "host": [
                "{{base_url}}"
              ],
              "path": [
                "v2",
                "status"
              ]
            },
            "description": "v2 Engine Status"
          },
          "response": []
        },
        {
          "name": "POST /v2/workflows",
          "request": {
            "method": "POST",
            "header": [
              {
                "key": "Authorization",
                "value": "Bearer {{api_key}}",
                "type": "text"
              },
              {
                "key": "Content-Type",
                "value": "application/json",
                "type": "text"
              }
            ],
            "url": {
              "raw": "{{base_url}}/v2/workflows",
              "host": [
                "{{base_url}}"
              ],
              "path": [
                "v2",
                "workflows"
              ]
            },
            "description": "Create Persistent Workflow",
            "body": {
              "mode": "raw",
              "raw": "{\n  \"name\": \"string\",\n  \"description\": \"string\",\n  \"steps\": [],\n  \"trigger\": {},\n  \"persistent\": true,\n  \"resumable\": true,\n  \"max_parallel\": 0\n}",
              "options": {
                "raw": {
                  "language": "json"
                }
              }
            }
          },
          "response": []
        },
        {
          "name": "GET /v2/workflows/runs/{run_id}",
          "request": {
            "method": "GET",
            "header": [
              {
                "key": "Authorization",
                "value": "Bearer {{api_key}}",
                "type": "text"
              },
              {
                "key": "Content-Type",
                "value": "application/json",
                "type": "text"
              }
            ],
            "url": {
              "raw": "{{base_url}}/v2/workflows/runs/{run_id}",
              "host": [
                "{{base_url}}"
              ],
              "path": [
                "v2",
                "workflows",
                "runs",
                "{run_id}"
              ]
            },
            "description": "Get Workflow Run Status"
          },
          "response": []
        },
        {
          "name": "POST /v2/workflows/runs/{run_id}/resume",
          "request": {
            "method": "POST",
            "header": [
              {
                "key": "Authorization",
                "value": "Bearer {{api_key}}",
                "type": "text"
              },
              {
                "key": "Content-Type",
                "value": "application/json",
                "type": "text"
              }
            ],
            "url": {
              "raw": "{{base_url}}/v2/workflows/runs/{run_id}/resume",
              "host": [
                "{{base_url}}"
              ],
              "path": [
                "v2",
                "workflows",
                "runs",
                "{run_id}",
                "resume"
              ]
            },
            "description": "Resume Crashed Workflow Run"
          },
          "response": []
        },
        {
          "name": "POST /v2/workflows/{workflow_id}/run",
          "request": {
            "method": "POST",
            "header": [
              {
                "key": "Authorization",
                "value": "Bearer {{api_key}}",
                "type": "text"
              },
              {
                "key": "Content-Type",
                "value": "application/json",
                "type": "text"
              }
            ],
            "url": {
              "raw": "{{base_url}}/v2/workflows/{workflow_id}/run",
              "host": [
                "{{base_url}}"
              ],
              "path": [
                "v2",
                "workflows",
                "{workflow_id}",
                "run"
              ]
            },
            "description": "Execute Persistent Workflow",
            "body": {
              "mode": "raw",
              "raw": "{\n  \"inputs\": {},\n  \"metadata\": {}\n}",
              "options": {
                "raw": {
                  "language": "json"
                }
              }
            }
          },
          "response": []
        },
        {
          "name": "GET /v2/workflows/{workflow_id}/runs",
          "request": {
            "method": "GET",
            "header": [
              {
                "key": "Authorization",
                "value": "Bearer {{api_key}}",
                "type": "text"
              },
              {
                "key": "Content-Type",
                "value": "application/json",
                "type": "text"
              }
            ],
            "url": {
              "raw": "{{base_url}}/v2/workflows/{workflow_id}/runs",
              "host": [
                "{{base_url}}"
              ],
              "path": [
                "v2",
                "workflows",
                "{workflow_id}",
                "runs"
              ]
            },
            "description": "List Workflow Runs"
          },
          "response": []
        }
      ]
    },
    {
      "name": "v4 \u2014 Durable & Batch",
      "item": [
        {
          "name": "POST /v4/agents/{agent_id}/chat",
          "request": {
            "method": "POST",
            "header": [
              {
                "key": "Authorization",
                "value": "Bearer {{api_key}}",
                "type": "text"
              },
              {
                "key": "Content-Type",
                "value": "application/json",
                "type": "text"
              }
            ],
            "url": {
              "raw": "{{base_url}}/v4/agents/{agent_id}/chat",
              "host": [
                "{{base_url}}"
              ],
              "path": [
                "v4",
                "agents",
                "{agent_id}",
                "chat"
              ]
            },
            "description": "V4 Agent Chat",
            "body": {
              "mode": "raw",
              "raw": "{\n  \"message\": \"What is your role?\",\n  \"context\": \"general\"\n}",
              "options": {
                "raw": {
                  "language": "json"
                }
              }
            }
          },
          "response": [
            {
              "name": "Example Response",
              "status": "OK",
              "code": 200,
              "body": "{\n  \"agent_id\": \"sovereign\",\n  \"response\": \"I am the Sovereign agent...\",\n  \"model\": \"Qwen/Qwen3-8B\"\n}"
            }
          ]
        },
        {
          "name": "POST /v4/agents/{agent_id}/durable-chat",
          "request": {
            "method": "POST",
            "header": [
              {
                "key": "Authorization",
                "value": "Bearer {{api_key}}",
                "type": "text"
              },
              {
                "key": "Content-Type",
                "value": "application/json",
                "type": "text"
              }
            ],
            "url": {
              "raw": "{{base_url}}/v4/agents/{agent_id}/durable-chat",
              "host": [
                "{{base_url}}"
              ],
              "path": [
                "v4",
                "agents",
                "{agent_id}",
                "durable-chat"
              ]
            },
            "description": "V4 Durable Chat",
            "body": {
              "mode": "raw",
              "raw": "{\n  \"message\": \"What is your role?\",\n  \"context\": \"general\"\n}",
              "options": {
                "raw": {
                  "language": "json"
                }
              }
            }
          },
          "response": [
            {
              "name": "Example Response",
              "status": "OK",
              "code": 200,
              "body": "{\n  \"agent_id\": \"sovereign\",\n  \"response\": \"I am the Sovereign agent...\",\n  \"model\": \"Qwen/Qwen3-8B\"\n}"
            }
          ]
        },
        {
          "name": "GET /v4/agents/{agent_id}/session-status",
          "request": {
            "method": "GET",
            "header": [
              {
                "key": "Authorization",
                "value": "Bearer {{api_key}}",
                "type": "text"
              },
              {
                "key": "Content-Type",
                "value": "application/json",
                "type": "text"
              }
            ],
            "url": {
              "raw": "{{base_url}}/v4/agents/{agent_id}/session-status",
              "host": [
                "{{base_url}}"
              ],
              "path": [
                "v4",
                "agents",
                "{agent_id}",
                "session-status"
              ]
            },
            "description": "V4 Session Status"
          },
          "response": []
        },
        {
          "name": "GET /v4/agents/{agent_id}/session/history",
          "request": {
            "method": "GET",
            "header": [
              {
                "key": "Authorization",
                "value": "Bearer {{api_key}}",
                "type": "text"
              },
              {
                "key": "Content-Type",
                "value": "application/json",
                "type": "text"
              }
            ],
            "url": {
              "raw": "{{base_url}}/v4/agents/{agent_id}/session/history",
              "host": [
                "{{base_url}}"
              ],
              "path": [
                "v4",
                "agents",
                "{agent_id}",
                "session",
                "history"
              ]
            },
            "description": "V4 Session History"
          },
          "response": []
        },
        {
          "name": "POST /v4/agents/{agent_id}/structured-chat",
          "request": {
            "method": "POST",
            "header": [
              {
                "key": "Authorization",
                "value": "Bearer {{api_key}}",
                "type": "text"
              },
              {
                "key": "Content-Type",
                "value": "application/json",
                "type": "text"
              }
            ],
            "url": {
              "raw": "{{base_url}}/v4/agents/{agent_id}/structured-chat",
              "host": [
                "{{base_url}}"
              ],
              "path": [
                "v4",
                "agents",
                "{agent_id}",
                "structured-chat"
              ]
            },
            "description": "V4 Structured Chat",
            "body": {
              "mode": "raw",
              "raw": "{\n  \"message\": \"What is your role?\",\n  \"context\": \"general\"\n}",
              "options": {
                "raw": {
                  "language": "json"
                }
              }
            }
          },
          "response": [
            {
              "name": "Example Response",
              "status": "OK",
              "code": 200,
              "body": "{\n  \"agent_id\": \"sovereign\",\n  \"response\": \"I am the Sovereign agent...\",\n  \"model\": \"Qwen/Qwen3-8B\"\n}"
            }
          ]
        },
        {
          "name": "POST /v4/agents/{agent_id}/workflow-chat",
          "request": {
            "method": "POST",
            "header": [
              {
                "key": "Authorization",
                "value": "Bearer {{api_key}}",
                "type": "text"
              },
              {
                "key": "Content-Type",
                "value": "application/json",
                "type": "text"
              }
            ],
            "url": {
              "raw": "{{base_url}}/v4/agents/{agent_id}/workflow-chat",
              "host": [
                "{{base_url}}"
              ],
              "path": [
                "v4",
                "agents",
                "{agent_id}",
                "workflow-chat"
              ]
            },
            "description": "V4 Workflow Chat",
            "body": {
              "mode": "raw",
              "raw": "{\n  \"message\": \"What is your role?\",\n  \"context\": \"general\"\n}",
              "options": {
                "raw": {
                  "language": "json"
                }
              }
            }
          },
          "response": [
            {
              "name": "Example Response",
              "status": "OK",
              "code": 200,
              "body": "{\n  \"agent_id\": \"sovereign\",\n  \"response\": \"I am the Sovereign agent...\",\n  \"model\": \"Qwen/Qwen3-8B\"\n}"
            }
          ]
        },
        {
          "name": "POST /v4/batch",
          "request": {
            "method": "POST",
            "header": [
              {
                "key": "Authorization",
                "value": "Bearer {{api_key}}",
                "type": "text"
              },
              {
                "key": "Content-Type",
                "value": "application/json",
                "type": "text"
              }
            ],
            "url": {
              "raw": "{{base_url}}/v4/batch",
              "host": [
                "{{base_url}}"
              ],
              "path": [
                "v4",
                "batch"
              ]
            },
            "description": "V4 Submit Batch"
          },
          "response": []
        },
        {
          "name": "POST /v4/chat/completions",
          "request": {
            "method": "POST",
            "header": [
              {
                "key": "Authorization",
                "value": "Bearer {{api_key}}",
                "type": "text"
              },
              {
                "key": "Content-Type",
                "value": "application/json",
                "type": "text"
              }
            ],
            "url": {
              "raw": "{{base_url}}/v4/chat/completions",
              "host": [
                "{{base_url}}"
              ],
              "path": [
                "v4",
                "chat",
                "completions"
              ]
            },
            "description": "V1 Chat Completions"
          },
          "response": []
        },
        {
          "name": "POST /v4/chat/detect-task",
          "request": {
            "method": "POST",
            "header": [
              {
                "key": "Authorization",
                "value": "Bearer {{api_key}}",
                "type": "text"
              },
              {
                "key": "Content-Type",
                "value": "application/json",
                "type": "text"
              }
            ],
            "url": {
              "raw": "{{base_url}}/v4/chat/detect-task",
              "host": [
                "{{base_url}}"
              ],
              "path": [
                "v4",
                "chat",
                "detect-task"
              ]
            },
            "description": "V4 Detect Task"
          },
          "response": []
        },
        {
          "name": "GET /v4/dlq",
          "request": {
            "method": "GET",
            "header": [
              {
                "key": "Authorization",
                "value": "Bearer {{api_key}}",
                "type": "text"
              },
              {
                "key": "Content-Type",
                "value": "application/json",
                "type": "text"
              }
            ],
            "url": {
              "raw": "{{base_url}}/v4/dlq",
              "host": [
                "{{base_url}}"
              ],
              "path": [
                "v4",
                "dlq"
              ]
            },
            "description": "V4 Dlq List"
          },
          "response": []
        },
        {
          "name": "DELETE /v4/dlq/{item_id}",
          "request": {
            "method": "DELETE",
            "header": [
              {
                "key": "Authorization",
                "value": "Bearer {{api_key}}",
                "type": "text"
              },
              {
                "key": "Content-Type",
                "value": "application/json",
                "type": "text"
              }
            ],
            "url": {
              "raw": "{{base_url}}/v4/dlq/{item_id}",
              "host": [
                "{{base_url}}"
              ],
              "path": [
                "v4",
                "dlq",
                "{item_id}"
              ]
            },
            "description": "V4 Dlq Delete"
          },
          "response": []
        },
        {
          "name": "POST /v4/dlq/{item_id}/retry",
          "request": {
            "method": "POST",
            "header": [
              {
                "key": "Authorization",
                "value": "Bearer {{api_key}}",
                "type": "text"
              },
              {
                "key": "Content-Type",
                "value": "application/json",
                "type": "text"
              }
            ],
            "url": {
              "raw": "{{base_url}}/v4/dlq/{item_id}/retry",
              "host": [
                "{{base_url}}"
              ],
              "path": [
                "v4",
                "dlq",
                "{item_id}",
                "retry"
              ]
            },
            "description": "V4 Dlq Retry"
          },
          "response": []
        },
        {
          "name": "POST /v4/embeddings",
          "request": {
            "method": "POST",
            "header": [
              {
                "key": "Authorization",
                "value": "Bearer {{api_key}}",
                "type": "text"
              },
              {
                "key": "Content-Type",
                "value": "application/json",
                "type": "text"
              }
            ],
            "url": {
              "raw": "{{base_url}}/v4/embeddings",
              "host": [
                "{{base_url}}"
              ],
              "path": [
                "v4",
                "embeddings"
              ]
            },
            "description": "V1 Embeddings"
          },
          "response": []
        },
        {
          "name": "GET /v4/features/list",
          "request": {
            "method": "GET",
            "header": [
              {
                "key": "Authorization",
                "value": "Bearer {{api_key}}",
                "type": "text"
              },
              {
                "key": "Content-Type",
                "value": "application/json",
                "type": "text"
              }
            ],
            "url": {
              "raw": "{{base_url}}/v4/features/list",
              "host": [
                "{{base_url}}"
              ],
              "path": [
                "v4",
                "features",
                "list"
              ]
            },
            "description": "V4 List Features"
          },
          "response": []
        },
        {
          "name": "GET /v4/features/{client_id}",
          "request": {
            "method": "GET",
            "header": [
              {
                "key": "Authorization",
                "value": "Bearer {{api_key}}",
                "type": "text"
              },
              {
                "key": "Content-Type",
                "value": "application/json",
                "type": "text"
              }
            ],
            "url": {
              "raw": "{{base_url}}/v4/features/{client_id}",
              "host": [
                "{{base_url}}"
              ],
              "path": [
                "v4",
                "features",
                "{client_id}"
              ]
            },
            "description": "V4 Get Features"
          },
          "response": []
        },
        {
          "name": "POST /v4/features/{client_id}/bulk",
          "request": {
            "method": "POST",
            "header": [
              {
                "key": "Authorization",
                "value": "Bearer {{api_key}}",
                "type": "text"
              },
              {
                "key": "Content-Type",
                "value": "application/json",
                "type": "text"
              }
            ],
            "url": {
              "raw": "{{base_url}}/v4/features/{client_id}/bulk",
              "host": [
                "{{base_url}}"
              ],
              "path": [
                "v4",
                "features",
                "{client_id}",
                "bulk"
              ]
            },
            "description": "V4 Set Features Bulk"
          },
          "response": []
        },
        {
          "name": "POST /v4/features/{client_id}/reset",
          "request": {
            "method": "POST",
            "header": [
              {
                "key": "Authorization",
                "value": "Bearer {{api_key}}",
                "type": "text"
              },
              {
                "key": "Content-Type",
                "value": "application/json",
                "type": "text"
              }
            ],
            "url": {
              "raw": "{{base_url}}/v4/features/{client_id}/reset",
              "host": [
                "{{base_url}}"
              ],
              "path": [
                "v4",
                "features",
                "{client_id}",
                "reset"
              ]
            },
            "description": "V4 Reset Features"
          },
          "response": []
        },
        {
          "name": "POST /v4/features/{client_id}/toggle",
          "request": {
            "method": "POST",
            "header": [
              {
                "key": "Authorization",
                "value": "Bearer {{api_key}}",
                "type": "text"
              },
              {
                "key": "Content-Type",
                "value": "application/json",
                "type": "text"
              }
            ],
            "url": {
              "raw": "{{base_url}}/v4/features/{client_id}/toggle",
              "host": [
                "{{base_url}}"
              ],
              "path": [
                "v4",
                "features",
                "{client_id}",
                "toggle"
              ]
            },
            "description": "V4 Set Feature"
          },
          "response": []
        },
        {
          "name": "GET /v4/health",
          "request": {
            "method": "GET",
            "header": [
              {
                "key": "Authorization",
                "value": "Bearer {{api_key}}",
                "type": "text"
              },
              {
                "key": "Content-Type",
                "value": "application/json",
                "type": "text"
              }
            ],
            "url": {
              "raw": "{{base_url}}/v4/health",
              "host": [
                "{{base_url}}"
              ],
              "path": [
                "v4",
                "health"
              ]
            },
            "description": "V4 Health"
          },
          "response": []
        },
        {
          "name": "GET /v4/health/detailed",
          "request": {
            "method": "GET",
            "header": [
              {
                "key": "Authorization",
                "value": "Bearer {{api_key}}",
                "type": "text"
              },
              {
                "key": "Content-Type",
                "value": "application/json",
                "type": "text"
              }
            ],
            "url": {
              "raw": "{{base_url}}/v4/health/detailed",
              "host": [
                "{{base_url}}"
              ],
              "path": [
                "v4",
                "health",
                "detailed"
              ]
            },
            "description": "V4 Health Detailed"
          },
          "response": []
        },
        {
          "name": "POST /v4/internal/llm",
          "request": {
            "method": "POST",
            "header": [
              {
                "key": "Authorization",
                "value": "Bearer {{api_key}}",
                "type": "text"
              },
              {
                "key": "Content-Type",
                "value": "application/json",
                "type": "text"
              }
            ],
            "url": {
              "raw": "{{base_url}}/v4/internal/llm",
              "host": [
                "{{base_url}}"
              ],
              "path": [
                "v4",
                "internal",
                "llm"
              ]
            },
            "description": "Internal Llm Proxy"
          },
          "response": []
        },
        {
          "name": "GET /v4/mcp/tools",
          "request": {
            "method": "GET",
            "header": [
              {
                "key": "Authorization",
                "value": "Bearer {{api_key}}",
                "type": "text"
              },
              {
                "key": "Content-Type",
                "value": "application/json",
                "type": "text"
              }
            ],
            "url": {
              "raw": "{{base_url}}/v4/mcp/tools",
              "host": [
                "{{base_url}}"
              ],
              "path": [
                "v4",
                "mcp",
                "tools"
              ]
            },
            "description": "V4 List Mcp Tools"
          },
          "response": []
        },
        {
          "name": "GET /v4/mcp/tools/list",
          "request": {
            "method": "GET",
            "header": [
              {
                "key": "Authorization",
                "value": "Bearer {{api_key}}",
                "type": "text"
              },
              {
                "key": "Content-Type",
                "value": "application/json",
                "type": "text"
              }
            ],
            "url": {
              "raw": "{{base_url}}/v4/mcp/tools/list",
              "host": [
                "{{base_url}}"
              ],
              "path": [
                "v4",
                "mcp",
                "tools",
                "list"
              ]
            },
            "description": "V4 Mcp Tools List"
          },
          "response": []
        },
        {
          "name": "POST /v4/mcp/tools/register",
          "request": {
            "method": "POST",
            "header": [
              {
                "key": "Authorization",
                "value": "Bearer {{api_key}}",
                "type": "text"
              },
              {
                "key": "Content-Type",
                "value": "application/json",
                "type": "text"
              }
            ],
            "url": {
              "raw": "{{base_url}}/v4/mcp/tools/register",
              "host": [
                "{{base_url}}"
              ],
              "path": [
                "v4",
                "mcp",
                "tools",
                "register"
              ]
            },
            "description": "V4 Register Mcp Tool"
          },
          "response": []
        },
        {
          "name": "DELETE /v4/mcp/tools/{tool_id}",
          "request": {
            "method": "DELETE",
            "header": [
              {
                "key": "Authorization",
                "value": "Bearer {{api_key}}",
                "type": "text"
              },
              {
                "key": "Content-Type",
                "value": "application/json",
                "type": "text"
              }
            ],
            "url": {
              "raw": "{{base_url}}/v4/mcp/tools/{tool_id}",
              "host": [
                "{{base_url}}"
              ],
              "path": [
                "v4",
                "mcp",
                "tools",
                "{tool_id}"
              ]
            },
            "description": "V4 Delete Mcp Tool"
          },
          "response": []
        },
        {
          "name": "POST /v4/mcp/tools/{tool_id}/invoke",
          "request": {
            "method": "POST",
            "header": [
              {
                "key": "Authorization",
                "value": "Bearer {{api_key}}",
                "type": "text"
              },
              {
                "key": "Content-Type",
                "value": "application/json",
                "type": "text"
              }
            ],
            "url": {
              "raw": "{{base_url}}/v4/mcp/tools/{tool_id}/invoke",
              "host": [
                "{{base_url}}"
              ],
              "path": [
                "v4",
                "mcp",
                "tools",
                "{tool_id}",
                "invoke"
              ]
            },
            "description": "V4 Invoke Mcp Tool"
          },
          "response": []
        },
        {
          "name": "GET /v4/models",
          "request": {
            "method": "GET",
            "header": [
              {
                "key": "Authorization",
                "value": "Bearer {{api_key}}",
                "type": "text"
              },
              {
                "key": "Content-Type",
                "value": "application/json",
                "type": "text"
              }
            ],
            "url": {
              "raw": "{{base_url}}/v4/models",
              "host": [
                "{{base_url}}"
              ],
              "path": [
                "v4",
                "models"
              ]
            },
            "description": "V1 List Models"
          },
          "response": []
        },
        {
          "name": "GET /v4/models/capabilities",
          "request": {
            "method": "GET",
            "header": [
              {
                "key": "Authorization",
                "value": "Bearer {{api_key}}",
                "type": "text"
              },
              {
                "key": "Content-Type",
                "value": "application/json",
                "type": "text"
              }
            ],
            "url": {
              "raw": "{{base_url}}/v4/models/capabilities",
              "host": [
                "{{base_url}}"
              ],
              "path": [
                "v4",
                "models",
                "capabilities"
              ]
            },
            "description": "V4 Model Capabilities"
          },
          "response": []
        },
        {
          "name": "GET /v4/restate/deployments",
          "request": {
            "method": "GET",
            "header": [
              {
                "key": "Authorization",
                "value": "Bearer {{api_key}}",
                "type": "text"
              },
              {
                "key": "Content-Type",
                "value": "application/json",
                "type": "text"
              }
            ],
            "url": {
              "raw": "{{base_url}}/v4/restate/deployments",
              "host": [
                "{{base_url}}"
              ],
              "path": [
                "v4",
                "restate",
                "deployments"
              ]
            },
            "description": "V4 Restate Deployments"
          },
          "response": []
        },
        {
          "name": "GET /v4/restate/services",
          "request": {
            "method": "GET",
            "header": [
              {
                "key": "Authorization",
                "value": "Bearer {{api_key}}",
                "type": "text"
              },
              {
                "key": "Content-Type",
                "value": "application/json",
                "type": "text"
              }
            ],
            "url": {
              "raw": "{{base_url}}/v4/restate/services",
              "host": [
                "{{base_url}}"
              ],
              "path": [
                "v4",
                "restate",
                "services"
              ]
            },
            "description": "V4 Restate Services"
          },
          "response": []
        },
        {
          "name": "GET /v4/status",
          "request": {
            "method": "GET",
            "header": [
              {
                "key": "Authorization",
                "value": "Bearer {{api_key}}",
                "type": "text"
              },
              {
                "key": "Content-Type",
                "value": "application/json",
                "type": "text"
              }
            ],
            "url": {
              "raw": "{{base_url}}/v4/status",
              "host": [
                "{{base_url}}"
              ],
              "path": [
                "v4",
                "status"
              ]
            },
            "description": "V4 Status"
          },
          "response": []
        },
        {
          "name": "GET /v4/wasm/tools",
          "request": {
            "method": "GET",
            "header": [
              {
                "key": "Authorization",
                "value": "Bearer {{api_key}}",
                "type": "text"
              },
              {
                "key": "Content-Type",
                "value": "application/json",
                "type": "text"
              }
            ],
            "url": {
              "raw": "{{base_url}}/v4/wasm/tools",
              "host": [
                "{{base_url}}"
              ],
              "path": [
                "v4",
                "wasm",
                "tools"
              ]
            },
            "description": "V4 List Wasm Tools"
          },
          "response": []
        },
        {
          "name": "POST /v4/wasm/tools",
          "request": {
            "method": "POST",
            "header": [
              {
                "key": "Authorization",
                "value": "Bearer {{api_key}}",
                "type": "text"
              },
              {
                "key": "Content-Type",
                "value": "application/json",
                "type": "text"
              }
            ],
            "url": {
              "raw": "{{base_url}}/v4/wasm/tools",
              "host": [
                "{{base_url}}"
              ],
              "path": [
                "v4",
                "wasm",
                "tools"
              ]
            },
            "description": "V4 Register Wasm Tool"
          },
          "response": []
        },
        {
          "name": "DELETE /v4/wasm/tools/{tool_id}",
          "request": {
            "method": "DELETE",
            "header": [
              {
                "key": "Authorization",
                "value": "Bearer {{api_key}}",
                "type": "text"
              },
              {
                "key": "Content-Type",
                "value": "application/json",
                "type": "text"
              }
            ],
            "url": {
              "raw": "{{base_url}}/v4/wasm/tools/{tool_id}",
              "host": [
                "{{base_url}}"
              ],
              "path": [
                "v4",
                "wasm",
                "tools",
                "{tool_id}"
              ]
            },
            "description": "V4 Delete Wasm Tool"
          },
          "response": []
        },
        {
          "name": "POST /v4/wasm/tools/{tool_id}/invoke",
          "request": {
            "method": "POST",
            "header": [
              {
                "key": "Authorization",
                "value": "Bearer {{api_key}}",
                "type": "text"
              },
              {
                "key": "Content-Type",
                "value": "application/json",
                "type": "text"
              }
            ],
            "url": {
              "raw": "{{base_url}}/v4/wasm/tools/{tool_id}/invoke",
              "host": [
                "{{base_url}}"
              ],
              "path": [
                "v4",
                "wasm",
                "tools",
                "{tool_id}",
                "invoke"
              ]
            },
            "description": "V4 Invoke Wasm Tool"
          },
          "response": []
        },
        {
          "name": "POST /v4/workflows/persistent",
          "request": {
            "method": "POST",
            "header": [
              {
                "key": "Authorization",
                "value": "Bearer {{api_key}}",
                "type": "text"
              },
              {
                "key": "Content-Type",
                "value": "application/json",
                "type": "text"
              }
            ],
            "url": {
              "raw": "{{base_url}}/v4/workflows/persistent",
              "host": [
                "{{base_url}}"
              ],
              "path": [
                "v4",
                "workflows",
                "persistent"
              ]
            },
            "description": "V4 Create Persistent Workflow"
          },
          "response": []
        },
        {
          "name": "GET /v4/workflows/persistent/{workflow_id}",
          "request": {
            "method": "GET",
            "header": [
              {
                "key": "Authorization",
                "value": "Bearer {{api_key}}",
                "type": "text"
              },
              {
                "key": "Content-Type",
                "value": "application/json",
                "type": "text"
              }
            ],
            "url": {
              "raw": "{{base_url}}/v4/workflows/persistent/{workflow_id}",
              "host": [
                "{{base_url}}"
              ],
              "path": [
                "v4",
                "workflows",
                "persistent",
                "{workflow_id}"
              ]
            },
            "description": "V4 Get Persistent Workflow"
          },
          "response": []
        }
      ]
    },
    {
      "name": "v5 \u2014 Advanced APIs",
      "item": [
        {
          "name": "POST /v5/agents/spawn",
          "request": {
            "method": "POST",
            "header": [
              {
                "key": "Authorization",
                "value": "Bearer {{api_key}}",
                "type": "text"
              },
              {
                "key": "Content-Type",
                "value": "application/json",
                "type": "text"
              }
            ],
            "url": {
              "raw": "{{base_url}}/v5/agents/spawn",
              "host": [
                "{{base_url}}"
              ],
              "path": [
                "v5",
                "agents",
                "spawn"
              ]
            },
            "description": "Agent Spawn"
          },
          "response": []
        },
        {
          "name": "GET /v5/agents/spawns",
          "request": {
            "method": "GET",
            "header": [
              {
                "key": "Authorization",
                "value": "Bearer {{api_key}}",
                "type": "text"
              },
              {
                "key": "Content-Type",
                "value": "application/json",
                "type": "text"
              }
            ],
            "url": {
              "raw": "{{base_url}}/v5/agents/spawns",
              "host": [
                "{{base_url}}"
              ],
              "path": [
                "v5",
                "agents",
                "spawns"
              ]
            },
            "description": "Agent List Spawns"
          },
          "response": []
        },
        {
          "name": "GET /v5/agents/spawns/{spawn_id}",
          "request": {
            "method": "GET",
            "header": [
              {
                "key": "Authorization",
                "value": "Bearer {{api_key}}",
                "type": "text"
              },
              {
                "key": "Content-Type",
                "value": "application/json",
                "type": "text"
              }
            ],
            "url": {
              "raw": "{{base_url}}/v5/agents/spawns/{spawn_id}",
              "host": [
                "{{base_url}}"
              ],
              "path": [
                "v5",
                "agents",
                "spawns",
                "{spawn_id}"
              ]
            },
            "description": "Agent Get Spawn"
          },
          "response": []
        },
        {
          "name": "GET /v5/apis/categories",
          "request": {
            "method": "GET",
            "header": [
              {
                "key": "Authorization",
                "value": "Bearer {{api_key}}",
                "type": "text"
              },
              {
                "key": "Content-Type",
                "value": "application/json",
                "type": "text"
              }
            ],
            "url": {
              "raw": "{{base_url}}/v5/apis/categories",
              "host": [
                "{{base_url}}"
              ],
              "path": [
                "v5",
                "apis",
                "categories"
              ]
            },
            "description": "V5 Apis Categories"
          },
          "response": []
        },
        {
          "name": "POST /v5/apis/for-prompt",
          "request": {
            "method": "POST",
            "header": [
              {
                "key": "Authorization",
                "value": "Bearer {{api_key}}",
                "type": "text"
              },
              {
                "key": "Content-Type",
                "value": "application/json",
                "type": "text"
              }
            ],
            "url": {
              "raw": "{{base_url}}/v5/apis/for-prompt",
              "host": [
                "{{base_url}}"
              ],
              "path": [
                "v5",
                "apis",
                "for-prompt"
              ]
            },
            "description": "V5 Apis For Prompt"
          },
          "response": []
        },
        {
          "name": "POST /v5/apis/for-task",
          "request": {
            "method": "POST",
            "header": [
              {
                "key": "Authorization",
                "value": "Bearer {{api_key}}",
                "type": "text"
              },
              {
                "key": "Content-Type",
                "value": "application/json",
                "type": "text"
              }
            ],
            "url": {
              "raw": "{{base_url}}/v5/apis/for-task",
              "host": [
                "{{base_url}}"
              ],
              "path": [
                "v5",
                "apis",
                "for-task"
              ]
            },
            "description": "V5 Apis For Task"
          },
          "response": []
        },
        {
          "name": "GET /v5/apis/health",
          "request": {
            "method": "GET",
            "header": [
              {
                "key": "Authorization",
                "value": "Bearer {{api_key}}",
                "type": "text"
              },
              {
                "key": "Content-Type",
                "value": "application/json",
                "type": "text"
              }
            ],
            "url": {
              "raw": "{{base_url}}/v5/apis/health",
              "host": [
                "{{base_url}}"
              ],
              "path": [
                "v5",
                "apis",
                "health"
              ]
            },
            "description": "V5 Apis Health"
          },
          "response": []
        },
        {
          "name": "POST /v5/apis/search",
          "request": {
            "method": "POST",
            "header": [
              {
                "key": "Authorization",
                "value": "Bearer {{api_key}}",
                "type": "text"
              },
              {
                "key": "Content-Type",
                "value": "application/json",
                "type": "text"
              }
            ],
            "url": {
              "raw": "{{base_url}}/v5/apis/search",
              "host": [
                "{{base_url}}"
              ],
              "path": [
                "v5",
                "apis",
                "search"
              ]
            },
            "description": "V5 Apis Search"
          },
          "response": []
        },
        {
          "name": "POST /v5/episodes/batch",
          "request": {
            "method": "POST",
            "header": [
              {
                "key": "Authorization",
                "value": "Bearer {{api_key}}",
                "type": "text"
              },
              {
                "key": "Content-Type",
                "value": "application/json",
                "type": "text"
              }
            ],
            "url": {
              "raw": "{{base_url}}/v5/episodes/batch",
              "host": [
                "{{base_url}}"
              ],
              "path": [
                "v5",
                "episodes",
                "batch"
              ]
            },
            "description": "V5 Episode Batch"
          },
          "response": []
        },
        {
          "name": "POST /v5/episodes/entity",
          "request": {
            "method": "POST",
            "header": [
              {
                "key": "Authorization",
                "value": "Bearer {{api_key}}",
                "type": "text"
              },
              {
                "key": "Content-Type",
                "value": "application/json",
                "type": "text"
              }
            ],
            "url": {
              "raw": "{{base_url}}/v5/episodes/entity",
              "host": [
                "{{base_url}}"
              ],
              "path": [
                "v5",
                "episodes",
                "entity"
              ]
            },
            "description": "V5 Episode Get Entity"
          },
          "response": []
        },
        {
          "name": "POST /v5/episodes/ingest",
          "request": {
            "method": "POST",
            "header": [
              {
                "key": "Authorization",
                "value": "Bearer {{api_key}}",
                "type": "text"
              },
              {
                "key": "Content-Type",
                "value": "application/json",
                "type": "text"
              }
            ],
            "url": {
              "raw": "{{base_url}}/v5/episodes/ingest",
              "host": [
                "{{base_url}}"
              ],
              "path": [
                "v5",
                "episodes",
                "ingest"
              ]
            },
            "description": "V5 Episode Ingest"
          },
          "response": []
        },
        {
          "name": "POST /v5/episodes/temporal-facts",
          "request": {
            "method": "POST",
            "header": [
              {
                "key": "Authorization",
                "value": "Bearer {{api_key}}",
                "type": "text"
              },
              {
                "key": "Content-Type",
                "value": "application/json",
                "type": "text"
              }
            ],
            "url": {
              "raw": "{{base_url}}/v5/episodes/temporal-facts",
              "host": [
                "{{base_url}}"
              ],
              "path": [
                "v5",
                "episodes",
                "temporal-facts"
              ]
            },
            "description": "V5 Episode Temporal Facts"
          },
          "response": []
        },
        {
          "name": "POST /v5/events",
          "request": {
            "method": "POST",
            "header": [
              {
                "key": "Authorization",
                "value": "Bearer {{api_key}}",
                "type": "text"
              },
              {
                "key": "Content-Type",
                "value": "application/json",
                "type": "text"
              }
            ],
            "url": {
              "raw": "{{base_url}}/v5/events",
              "host": [
                "{{base_url}}"
              ],
              "path": [
                "v5",
                "events"
              ]
            },
            "description": "Event Append"
          },
          "response": []
        },
        {
          "name": "GET /v5/events",
          "request": {
            "method": "GET",
            "header": [
              {
                "key": "Authorization",
                "value": "Bearer {{api_key}}",
                "type": "text"
              },
              {
                "key": "Content-Type",
                "value": "application/json",
                "type": "text"
              }
            ],
            "url": {
              "raw": "{{base_url}}/v5/events",
              "host": [
                "{{base_url}}"
              ],
              "path": [
                "v5",
                "events"
              ]
            },
            "description": "Event Query"
          },
          "response": []
        },
        {
          "name": "GET /v5/events/health",
          "request": {
            "method": "GET",
            "header": [
              {
                "key": "Authorization",
                "value": "Bearer {{api_key}}",
                "type": "text"
              },
              {
                "key": "Content-Type",
                "value": "application/json",
                "type": "text"
              }
            ],
            "url": {
              "raw": "{{base_url}}/v5/events/health",
              "host": [
                "{{base_url}}"
              ],
              "path": [
                "v5",
                "events",
                "health"
              ]
            },
            "description": "Event Health"
          },
          "response": []
        },
        {
          "name": "GET /v5/events/replay/{entity_type}/{entity_id}",
          "request": {
            "method": "GET",
            "header": [
              {
                "key": "Authorization",
                "value": "Bearer {{api_key}}",
                "type": "text"
              },
              {
                "key": "Content-Type",
                "value": "application/json",
                "type": "text"
              }
            ],
            "url": {
              "raw": "{{base_url}}/v5/events/replay/{entity_type}/{entity_id}",
              "host": [
                "{{base_url}}"
              ],
              "path": [
                "v5",
                "events",
                "replay",
                "{entity_type}",
                "{entity_id}"
              ]
            },
            "description": "Event Replay"
          },
          "response": []
        },
        {
          "name": "GET /v5/events/stats",
          "request": {
            "method": "GET",
            "header": [
              {
                "key": "Authorization",
                "value": "Bearer {{api_key}}",
                "type": "text"
              },
              {
                "key": "Content-Type",
                "value": "application/json",
                "type": "text"
              }
            ],
            "url": {
              "raw": "{{base_url}}/v5/events/stats",
              "host": [
                "{{base_url}}"
              ],
              "path": [
                "v5",
                "events",
                "stats"
              ]
            },
            "description": "Event Stats"
          },
          "response": []
        },
        {
          "name": "POST /v5/events/trim",
          "request": {
            "method": "POST",
            "header": [
              {
                "key": "Authorization",
                "value": "Bearer {{api_key}}",
                "type": "text"
              },
              {
                "key": "Content-Type",
                "value": "application/json",
                "type": "text"
              }
            ],
            "url": {
              "raw": "{{base_url}}/v5/events/trim",
              "host": [
                "{{base_url}}"
              ],
              "path": [
                "v5",
                "events",
                "trim"
              ]
            },
            "description": "Event Trim"
          },
          "response": []
        },
        {
          "name": "POST /v5/facts/batch-extract",
          "request": {
            "method": "POST",
            "header": [
              {
                "key": "Authorization",
                "value": "Bearer {{api_key}}",
                "type": "text"
              },
              {
                "key": "Content-Type",
                "value": "application/json",
                "type": "text"
              }
            ],
            "url": {
              "raw": "{{base_url}}/v5/facts/batch-extract",
              "host": [
                "{{base_url}}"
              ],
              "path": [
                "v5",
                "facts",
                "batch-extract"
              ]
            },
            "description": "Fact Batch Extract"
          },
          "response": []
        },
        {
          "name": "POST /v5/facts/extract",
          "request": {
            "method": "POST",
            "header": [
              {
                "key": "Authorization",
                "value": "Bearer {{api_key}}",
                "type": "text"
              },
              {
                "key": "Content-Type",
                "value": "application/json",
                "type": "text"
              }
            ],
            "url": {
              "raw": "{{base_url}}/v5/facts/extract",
              "host": [
                "{{base_url}}"
              ],
              "path": [
                "v5",
                "facts",
                "extract"
              ]
            },
            "description": "Fact Extract"
          },
          "response": []
        },
        {
          "name": "POST /v5/facts/extract-and-store",
          "request": {
            "method": "POST",
            "header": [
              {
                "key": "Authorization",
                "value": "Bearer {{api_key}}",
                "type": "text"
              },
              {
                "key": "Content-Type",
                "value": "application/json",
                "type": "text"
              }
            ],
            "url": {
              "raw": "{{base_url}}/v5/facts/extract-and-store",
              "host": [
                "{{base_url}}"
              ],
              "path": [
                "v5",
                "facts",
                "extract-and-store"
              ]
            },
            "description": "Fact Extract And Store"
          },
          "response": []
        },
        {
          "name": "POST /v5/facts/extract-turn",
          "request": {
            "method": "POST",
            "header": [
              {
                "key": "Authorization",
                "value": "Bearer {{api_key}}",
                "type": "text"
              },
              {
                "key": "Content-Type",
                "value": "application/json",
                "type": "text"
              }
            ],
            "url": {
              "raw": "{{base_url}}/v5/facts/extract-turn",
              "host": [
                "{{base_url}}"
              ],
              "path": [
                "v5",
                "facts",
                "extract-turn"
              ]
            },
            "description": "Fact Extract Turn"
          },
          "response": []
        },
        {
          "name": "POST /v5/guardrails/check",
          "request": {
            "method": "POST",
            "header": [
              {
                "key": "Authorization",
                "value": "Bearer {{api_key}}",
                "type": "text"
              },
              {
                "key": "Content-Type",
                "value": "application/json",
                "type": "text"
              }
            ],
            "url": {
              "raw": "{{base_url}}/v5/guardrails/check",
              "host": [
                "{{base_url}}"
              ],
              "path": [
                "v5",
                "guardrails",
                "check"
              ]
            },
            "description": "Gr Check"
          },
          "response": []
        },
        {
          "name": "GET /v5/guardrails/health",
          "request": {
            "method": "GET",
            "header": [
              {
                "key": "Authorization",
                "value": "Bearer {{api_key}}",
                "type": "text"
              },
              {
                "key": "Content-Type",
                "value": "application/json",
                "type": "text"
              }
            ],
            "url": {
              "raw": "{{base_url}}/v5/guardrails/health",
              "host": [
                "{{base_url}}"
              ],
              "path": [
                "v5",
                "guardrails",
                "health"
              ]
            },
            "description": "Gr Health"
          },
          "response": []
        },
        {
          "name": "GET /v5/guardrails/logs",
          "request": {
            "method": "GET",
            "header": [
              {
                "key": "Authorization",
                "value": "Bearer {{api_key}}",
                "type": "text"
              },
              {
                "key": "Content-Type",
                "value": "application/json",
                "type": "text"
              }
            ],
            "url": {
              "raw": "{{base_url}}/v5/guardrails/logs",
              "host": [
                "{{base_url}}"
              ],
              "path": [
                "v5",
                "guardrails",
                "logs"
              ]
            },
            "description": "Gr Get Logs"
          },
          "response": []
        },
        {
          "name": "POST /v5/guardrails/rules",
          "request": {
            "method": "POST",
            "header": [
              {
                "key": "Authorization",
                "value": "Bearer {{api_key}}",
                "type": "text"
              },
              {
                "key": "Content-Type",
                "value": "application/json",
                "type": "text"
              }
            ],
            "url": {
              "raw": "{{base_url}}/v5/guardrails/rules",
              "host": [
                "{{base_url}}"
              ],
              "path": [
                "v5",
                "guardrails",
                "rules"
              ]
            },
            "description": "Gr Create Rule"
          },
          "response": []
        },
        {
          "name": "GET /v5/guardrails/rules",
          "request": {
            "method": "GET",
            "header": [
              {
                "key": "Authorization",
                "value": "Bearer {{api_key}}",
                "type": "text"
              },
              {
                "key": "Content-Type",
                "value": "application/json",
                "type": "text"
              }
            ],
            "url": {
              "raw": "{{base_url}}/v5/guardrails/rules",
              "host": [
                "{{base_url}}"
              ],
              "path": [
                "v5",
                "guardrails",
                "rules"
              ]
            },
            "description": "Gr List Rules"
          },
          "response": []
        },
        {
          "name": "GET /v5/guardrails/rules/{name}",
          "request": {
            "method": "GET",
            "header": [
              {
                "key": "Authorization",
                "value": "Bearer {{api_key}}",
                "type": "text"
              },
              {
                "key": "Content-Type",
                "value": "application/json",
                "type": "text"
              }
            ],
            "url": {
              "raw": "{{base_url}}/v5/guardrails/rules/{name}",
              "host": [
                "{{base_url}}"
              ],
              "path": [
                "v5",
                "guardrails",
                "rules",
                "{name}"
              ]
            },
            "description": "Gr Get Rule"
          },
          "response": []
        },
        {
          "name": "DELETE /v5/guardrails/rules/{name}",
          "request": {
            "method": "DELETE",
            "header": [
              {
                "key": "Authorization",
                "value": "Bearer {{api_key}}",
                "type": "text"
              },
              {
                "key": "Content-Type",
                "value": "application/json",
                "type": "text"
              }
            ],
            "url": {
              "raw": "{{base_url}}/v5/guardrails/rules/{name}",
              "host": [
                "{{base_url}}"
              ],
              "path": [
                "v5",
                "guardrails",
                "rules",
                "{name}"
              ]
            },
            "description": "Gr Delete Rule"
          },
          "response": []
        },
        {
          "name": "GET /v5/hubs/knowledge/books",
          "request": {
            "method": "GET",
            "header": [
              {
                "key": "Authorization",
                "value": "Bearer {{api_key}}",
                "type": "text"
              },
              {
                "key": "Content-Type",
                "value": "application/json",
                "type": "text"
              }
            ],
            "url": {
              "raw": "{{base_url}}/v5/hubs/knowledge/books",
              "host": [
                "{{base_url}}"
              ],
              "path": [
                "v5",
                "hubs",
                "knowledge",
                "books"
              ]
            },
            "description": "Knowledge Hub Books"
          },
          "response": []
        },
        {
          "name": "GET /v5/hubs/knowledge/general",
          "request": {
            "method": "GET",
            "header": [
              {
                "key": "Authorization",
                "value": "Bearer {{api_key}}",
                "type": "text"
              },
              {
                "key": "Content-Type",
                "value": "application/json",
                "type": "text"
              }
            ],
            "url": {
              "raw": "{{base_url}}/v5/hubs/knowledge/general",
              "host": [
                "{{base_url}}"
              ],
              "path": [
                "v5",
                "hubs",
                "knowledge",
                "general"
              ]
            },
            "description": "Knowledge Hub General"
          },
          "response": []
        },
        {
          "name": "GET /v5/hubs/knowledge/health",
          "request": {
            "method": "GET",
            "header": [
              {
                "key": "Authorization",
                "value": "Bearer {{api_key}}",
                "type": "text"
              },
              {
                "key": "Content-Type",
                "value": "application/json",
                "type": "text"
              }
            ],
            "url": {
              "raw": "{{base_url}}/v5/hubs/knowledge/health",
              "host": [
                "{{base_url}}"
              ],
              "path": [
                "v5",
                "hubs",
                "knowledge",
                "health"
              ]
            },
            "description": "Knowledge Hub Health"
          },
          "response": []
        },
        {
          "name": "GET /v5/hubs/knowledge/papers",
          "request": {
            "method": "GET",
            "header": [
              {
                "key": "Authorization",
                "value": "Bearer {{api_key}}",
                "type": "text"
              },
              {
                "key": "Content-Type",
                "value": "application/json",
                "type": "text"
              }
            ],
            "url": {
              "raw": "{{base_url}}/v5/hubs/knowledge/papers",
              "host": [
                "{{base_url}}"
              ],
              "path": [
                "v5",
                "hubs",
                "knowledge",
                "papers"
              ]
            },
            "description": "Knowledge Hub Papers"
          },
          "response": []
        },
        {
          "name": "GET /v5/hubs/knowledge/search",
          "request": {
            "method": "GET",
            "header": [
              {
                "key": "Authorization",
                "value": "Bearer {{api_key}}",
                "type": "text"
              },
              {
                "key": "Content-Type",
                "value": "application/json",
                "type": "text"
              }
            ],
            "url": {
              "raw": "{{base_url}}/v5/hubs/knowledge/search",
              "host": [
                "{{base_url}}"
              ],
              "path": [
                "v5",
                "hubs",
                "knowledge",
                "search"
              ]
            },
            "description": "Knowledge Hub Search"
          },
          "response": []
        },
        {
          "name": "GET /v5/hubs/skills/fetch/{skill_id}",
          "request": {
            "method": "GET",
            "header": [
              {
                "key": "Authorization",
                "value": "Bearer {{api_key}}",
                "type": "text"
              },
              {
                "key": "Content-Type",
                "value": "application/json",
                "type": "text"
              }
            ],
            "url": {
              "raw": "{{base_url}}/v5/hubs/skills/fetch/{skill_id}",
              "host": [
                "{{base_url}}"
              ],
              "path": [
                "v5",
                "hubs",
                "skills",
                "fetch",
                "{skill_id}"
              ]
            },
            "description": "Skills Hub Fetch"
          },
          "response": []
        },
        {
          "name": "GET /v5/hubs/skills/health",
          "request": {
            "method": "GET",
            "header": [
              {
                "key": "Authorization",
                "value": "Bearer {{api_key}}",
                "type": "text"
              },
              {
                "key": "Content-Type",
                "value": "application/json",
                "type": "text"
              }
            ],
            "url": {
              "raw": "{{base_url}}/v5/hubs/skills/health",
              "host": [
                "{{base_url}}"
              ],
              "path": [
                "v5",
                "hubs",
                "skills",
                "health"
              ]
            },
            "description": "Skills Hub Health"
          },
          "response": []
        },
        {
          "name": "GET /v5/hubs/skills/search",
          "request": {
            "method": "GET",
            "header": [
              {
                "key": "Authorization",
                "value": "Bearer {{api_key}}",
                "type": "text"
              },
              {
                "key": "Content-Type",
                "value": "application/json",
                "type": "text"
              }
            ],
            "url": {
              "raw": "{{base_url}}/v5/hubs/skills/search",
              "host": [
                "{{base_url}}"
              ],
              "path": [
                "v5",
                "hubs",
                "skills",
                "search"
              ]
            },
            "description": "Skills Hub Search"
          },
          "response": []
        },
        {
          "name": "GET /v5/hubs/skills/sources",
          "request": {
            "method": "GET",
            "header": [
              {
                "key": "Authorization",
                "value": "Bearer {{api_key}}",
                "type": "text"
              },
              {
                "key": "Content-Type",
                "value": "application/json",
                "type": "text"
              }
            ],
            "url": {
              "raw": "{{base_url}}/v5/hubs/skills/sources",
              "host": [
                "{{base_url}}"
              ],
              "path": [
                "v5",
                "hubs",
                "skills",
                "sources"
              ]
            },
            "description": "Skills Hub Sources"
          },
          "response": []
        },
        {
          "name": "GET /v5/hubs/skills/top",
          "request": {
            "method": "GET",
            "header": [
              {
                "key": "Authorization",
                "value": "Bearer {{api_key}}",
                "type": "text"
              },
              {
                "key": "Content-Type",
                "value": "application/json",
                "type": "text"
              }
            ],
            "url": {
              "raw": "{{base_url}}/v5/hubs/skills/top",
              "host": [
                "{{base_url}}"
              ],
              "path": [
                "v5",
                "hubs",
                "skills",
                "top"
              ]
            },
            "description": "Skills Hub Top"
          },
          "response": []
        },
        {
          "name": "GET /v5/hubs/tools/categories",
          "request": {
            "method": "GET",
            "header": [
              {
                "key": "Authorization",
                "value": "Bearer {{api_key}}",
                "type": "text"
              },
              {
                "key": "Content-Type",
                "value": "application/json",
                "type": "text"
              }
            ],
            "url": {
              "raw": "{{base_url}}/v5/hubs/tools/categories",
              "host": [
                "{{base_url}}"
              ],
              "path": [
                "v5",
                "hubs",
                "tools",
                "categories"
              ]
            },
            "description": "Tools Hub Categories"
          },
          "response": []
        },
        {
          "name": "GET /v5/hubs/tools/health",
          "request": {
            "method": "GET",
            "header": [
              {
                "key": "Authorization",
                "value": "Bearer {{api_key}}",
                "type": "text"
              },
              {
                "key": "Content-Type",
                "value": "application/json",
                "type": "text"
              }
            ],
            "url": {
              "raw": "{{base_url}}/v5/hubs/tools/health",
              "host": [
                "{{base_url}}"
              ],
              "path": [
                "v5",
                "hubs",
                "tools",
                "health"
              ]
            },
            "description": "Tools Hub Health"
          },
          "response": []
        },
        {
          "name": "GET /v5/hubs/tools/search",
          "request": {
            "method": "GET",
            "header": [
              {
                "key": "Authorization",
                "value": "Bearer {{api_key}}",
                "type": "text"
              },
              {
                "key": "Content-Type",
                "value": "application/json",
                "type": "text"
              }
            ],
            "url": {
              "raw": "{{base_url}}/v5/hubs/tools/search",
              "host": [
                "{{base_url}}"
              ],
              "path": [
                "v5",
                "hubs",
                "tools",
                "search"
              ]
            },
            "description": "Tools Hub Search"
          },
          "response": []
        },
        {
          "name": "GET /v5/hubs/workflows/categories",
          "request": {
            "method": "GET",
            "header": [
              {
                "key": "Authorization",
                "value": "Bearer {{api_key}}",
                "type": "text"
              },
              {
                "key": "Content-Type",
                "value": "application/json",
                "type": "text"
              }
            ],
            "url": {
              "raw": "{{base_url}}/v5/hubs/workflows/categories",
              "host": [
                "{{base_url}}"
              ],
              "path": [
                "v5",
                "hubs",
                "workflows",
                "categories"
              ]
            },
            "description": "Workflows Hub Categories"
          },
          "response": []
        },
        {
          "name": "GET /v5/hubs/workflows/health",
          "request": {
            "method": "GET",
            "header": [
              {
                "key": "Authorization",
                "value": "Bearer {{api_key}}",
                "type": "text"
              },
              {
                "key": "Content-Type",
                "value": "application/json",
                "type": "text"
              }
            ],
            "url": {
              "raw": "{{base_url}}/v5/hubs/workflows/health",
              "host": [
                "{{base_url}}"
              ],
              "path": [
                "v5",
                "hubs",
                "workflows",
                "health"
              ]
            },
            "description": "Workflows Hub Health"
          },
          "response": []
        },
        {
          "name": "GET /v5/hubs/workflows/live",
          "request": {
            "method": "GET",
            "header": [
              {
                "key": "Authorization",
                "value": "Bearer {{api_key}}",
                "type": "text"
              },
              {
                "key": "Content-Type",
                "value": "application/json",
                "type": "text"
              }
            ],
            "url": {
              "raw": "{{base_url}}/v5/hubs/workflows/live",
              "host": [
                "{{base_url}}"
              ],
              "path": [
                "v5",
                "hubs",
                "workflows",
                "live"
              ]
            },
            "description": "Workflows Hub Live"
          },
          "response": []
        },
        {
          "name": "GET /v5/hubs/workflows/search",
          "request": {
            "method": "GET",
            "header": [
              {
                "key": "Authorization",
                "value": "Bearer {{api_key}}",
                "type": "text"
              },
              {
                "key": "Content-Type",
                "value": "application/json",
                "type": "text"
              }
            ],
            "url": {
              "raw": "{{base_url}}/v5/hubs/workflows/search",
              "host": [
                "{{base_url}}"
              ],
              "path": [
                "v5",
                "hubs",
                "workflows",
                "search"
              ]
            },
            "description": "Workflows Hub Search"
          },
          "response": []
        },
        {
          "name": "POST /v5/intent/classify",
          "request": {
            "method": "POST",
            "header": [
              {
                "key": "Authorization",
                "value": "Bearer {{api_key}}",
                "type": "text"
              },
              {
                "key": "Content-Type",
                "value": "application/json",
                "type": "text"
              }
            ],
            "url": {
              "raw": "{{base_url}}/v5/intent/classify",
              "host": [
                "{{base_url}}"
              ],
              "path": [
                "v5",
                "intent",
                "classify"
              ]
            },
            "description": "Intent Classify"
          },
          "response": []
        },
        {
          "name": "POST /v5/kg/auto-build",
          "request": {
            "method": "POST",
            "header": [
              {
                "key": "Authorization",
                "value": "Bearer {{api_key}}",
                "type": "text"
              },
              {
                "key": "Content-Type",
                "value": "application/json",
                "type": "text"
              }
            ],
            "url": {
              "raw": "{{base_url}}/v5/kg/auto-build",
              "host": [
                "{{base_url}}"
              ],
              "path": [
                "v5",
                "kg",
                "auto-build"
              ]
            },
            "description": "Kg Auto Build"
          },
          "response": []
        },
        {
          "name": "POST /v5/kg/entities",
          "request": {
            "method": "POST",
            "header": [
              {
                "key": "Authorization",
                "value": "Bearer {{api_key}}",
                "type": "text"
              },
              {
                "key": "Content-Type",
                "value": "application/json",
                "type": "text"
              }
            ],
            "url": {
              "raw": "{{base_url}}/v5/kg/entities",
              "host": [
                "{{base_url}}"
              ],
              "path": [
                "v5",
                "kg",
                "entities"
              ]
            },
            "description": "V5 Kg Add Entity"
          },
          "response": []
        },
        {
          "name": "GET /v5/kg/entities",
          "request": {
            "method": "GET",
            "header": [
              {
                "key": "Authorization",
                "value": "Bearer {{api_key}}",
                "type": "text"
              },
              {
                "key": "Content-Type",
                "value": "application/json",
                "type": "text"
              }
            ],
            "url": {
              "raw": "{{base_url}}/v5/kg/entities",
              "host": [
                "{{base_url}}"
              ],
              "path": [
                "v5",
                "kg",
                "entities"
              ]
            },
            "description": "V5 Kg List Entities"
          },
          "response": []
        },
        {
          "name": "GET /v5/kg/health",
          "request": {
            "method": "GET",
            "header": [
              {
                "key": "Authorization",
                "value": "Bearer {{api_key}}",
                "type": "text"
              },
              {
                "key": "Content-Type",
                "value": "application/json",
                "type": "text"
              }
            ],
            "url": {
              "raw": "{{base_url}}/v5/kg/health",
              "host": [
                "{{base_url}}"
              ],
              "path": [
                "v5",
                "kg",
                "health"
              ]
            },
            "description": "V5 Kg Health"
          },
          "response": []
        },
        {
          "name": "POST /v5/kg/relations",
          "request": {
            "method": "POST",
            "header": [
              {
                "key": "Authorization",
                "value": "Bearer {{api_key}}",
                "type": "text"
              },
              {
                "key": "Content-Type",
                "value": "application/json",
                "type": "text"
              }
            ],
            "url": {
              "raw": "{{base_url}}/v5/kg/relations",
              "host": [
                "{{base_url}}"
              ],
              "path": [
                "v5",
                "kg",
                "relations"
              ]
            },
            "description": "V5 Kg Add Relation"
          },
          "response": []
        },
        {
          "name": "POST /v5/kg/search",
          "request": {
            "method": "POST",
            "header": [
              {
                "key": "Authorization",
                "value": "Bearer {{api_key}}",
                "type": "text"
              },
              {
                "key": "Content-Type",
                "value": "application/json",
                "type": "text"
              }
            ],
            "url": {
              "raw": "{{base_url}}/v5/kg/search",
              "host": [
                "{{base_url}}"
              ],
              "path": [
                "v5",
                "kg",
                "search"
              ]
            },
            "description": "V5 Kg Search"
          },
          "response": []
        },
        {
          "name": "GET /v5/kg/stats",
          "request": {
            "method": "GET",
            "header": [
              {
                "key": "Authorization",
                "value": "Bearer {{api_key}}",
                "type": "text"
              },
              {
                "key": "Content-Type",
                "value": "application/json",
                "type": "text"
              }
            ],
            "url": {
              "raw": "{{base_url}}/v5/kg/stats",
              "host": [
                "{{base_url}}"
              ],
              "path": [
                "v5",
                "kg",
                "stats"
              ]
            },
            "description": "V5 Kg Stats"
          },
          "response": []
        },
        {
          "name": "POST /v5/ks/articles",
          "request": {
            "method": "POST",
            "header": [
              {
                "key": "Authorization",
                "value": "Bearer {{api_key}}",
                "type": "text"
              },
              {
                "key": "Content-Type",
                "value": "application/json",
                "type": "text"
              }
            ],
            "url": {
              "raw": "{{base_url}}/v5/ks/articles",
              "host": [
                "{{base_url}}"
              ],
              "path": [
                "v5",
                "ks",
                "articles"
              ]
            },
            "description": "V5 Ks Search Articles"
          },
          "response": []
        },
        {
          "name": "POST /v5/ks/books",
          "request": {
            "method": "POST",
            "header": [
              {
                "key": "Authorization",
                "value": "Bearer {{api_key}}",
                "type": "text"
              },
              {
                "key": "Content-Type",
                "value": "application/json",
                "type": "text"
              }
            ],
            "url": {
              "raw": "{{base_url}}/v5/ks/books",
              "host": [
                "{{base_url}}"
              ],
              "path": [
                "v5",
                "ks",
                "books"
              ]
            },
            "description": "V5 Ks Search Books"
          },
          "response": []
        },
        {
          "name": "POST /v5/ks/enrich",
          "request": {
            "method": "POST",
            "header": [
              {
                "key": "Authorization",
                "value": "Bearer {{api_key}}",
                "type": "text"
              },
              {
                "key": "Content-Type",
                "value": "application/json",
                "type": "text"
              }
            ],
            "url": {
              "raw": "{{base_url}}/v5/ks/enrich",
              "host": [
                "{{base_url}}"
              ],
              "path": [
                "v5",
                "ks",
                "enrich"
              ]
            },
            "description": "V5 Ks Enrich"
          },
          "response": []
        },
        {
          "name": "GET /v5/ks/health",
          "request": {
            "method": "GET",
            "header": [
              {
                "key": "Authorization",
                "value": "Bearer {{api_key}}",
                "type": "text"
              },
              {
                "key": "Content-Type",
                "value": "application/json",
                "type": "text"
              }
            ],
            "url": {
              "raw": "{{base_url}}/v5/ks/health",
              "host": [
                "{{base_url}}"
              ],
              "path": [
                "v5",
                "ks",
                "health"
              ]
            },
            "description": "V5 Ks Health"
          },
          "response": []
        },
        {
          "name": "POST /v5/learning/evaluate",
          "request": {
            "method": "POST",
            "header": [
              {
                "key": "Authorization",
                "value": "Bearer {{api_key}}",
                "type": "text"
              },
              {
                "key": "Content-Type",
                "value": "application/json",
                "type": "text"
              }
            ],
            "url": {
              "raw": "{{base_url}}/v5/learning/evaluate",
              "host": [
                "{{base_url}}"
              ],
              "path": [
                "v5",
                "learning",
                "evaluate"
              ]
            },
            "description": "Self Evaluate"
          },
          "response": []
        },
        {
          "name": "GET /v5/mcp/categories",
          "request": {
            "method": "GET",
            "header": [
              {
                "key": "Authorization",
                "value": "Bearer {{api_key}}",
                "type": "text"
              },
              {
                "key": "Content-Type",
                "value": "application/json",
                "type": "text"
              }
            ],
            "url": {
              "raw": "{{base_url}}/v5/mcp/categories",
              "host": [
                "{{base_url}}"
              ],
              "path": [
                "v5",
                "mcp",
                "categories"
              ]
            },
            "description": "Mcp Hub Categories"
          },
          "response": []
        },
        {
          "name": "POST /v5/mcp/ingest",
          "request": {
            "method": "POST",
            "header": [
              {
                "key": "Authorization",
                "value": "Bearer {{api_key}}",
                "type": "text"
              },
              {
                "key": "Content-Type",
                "value": "application/json",
                "type": "text"
              }
            ],
            "url": {
              "raw": "{{base_url}}/v5/mcp/ingest",
              "host": [
                "{{base_url}}"
              ],
              "path": [
                "v5",
                "mcp",
                "ingest"
              ]
            },
            "description": "Mcp Hub Ingest"
          },
          "response": []
        },
        {
          "name": "POST /v5/mcp/register",
          "request": {
            "method": "POST",
            "header": [
              {
                "key": "Authorization",
                "value": "Bearer {{api_key}}",
                "type": "text"
              },
              {
                "key": "Content-Type",
                "value": "application/json",
                "type": "text"
              }
            ],
            "url": {
              "raw": "{{base_url}}/v5/mcp/register",
              "host": [
                "{{base_url}}"
              ],
              "path": [
                "v5",
                "mcp",
                "register"
              ]
            },
            "description": "Mcp Hub Register"
          },
          "response": []
        },
        {
          "name": "POST /v5/mcp/search",
          "request": {
            "method": "POST",
            "header": [
              {
                "key": "Authorization",
                "value": "Bearer {{api_key}}",
                "type": "text"
              },
              {
                "key": "Content-Type",
                "value": "application/json",
                "type": "text"
              }
            ],
            "url": {
              "raw": "{{base_url}}/v5/mcp/search",
              "host": [
                "{{base_url}}"
              ],
              "path": [
                "v5",
                "mcp",
                "search"
              ]
            },
            "description": "Mcp Hub Search"
          },
          "response": []
        },
        {
          "name": "GET /v5/mcp/stats",
          "request": {
            "method": "GET",
            "header": [
              {
                "key": "Authorization",
                "value": "Bearer {{api_key}}",
                "type": "text"
              },
              {
                "key": "Content-Type",
                "value": "application/json",
                "type": "text"
              }
            ],
            "url": {
              "raw": "{{base_url}}/v5/mcp/stats",
              "host": [
                "{{base_url}}"
              ],
              "path": [
                "v5",
                "mcp",
                "stats"
              ]
            },
            "description": "Mcp Hub Stats"
          },
          "response": []
        },
        {
          "name": "GET /v5/mcp/{catalog_id}",
          "request": {
            "method": "GET",
            "header": [
              {
                "key": "Authorization",
                "value": "Bearer {{api_key}}",
                "type": "text"
              },
              {
                "key": "Content-Type",
                "value": "application/json",
                "type": "text"
              }
            ],
            "url": {
              "raw": "{{base_url}}/v5/mcp/{catalog_id}",
              "host": [
                "{{base_url}}"
              ],
              "path": [
                "v5",
                "mcp",
                "{catalog_id}"
              ]
            },
            "description": "Mcp Hub Get"
          },
          "response": []
        },
        {
          "name": "DELETE /v5/mcp/{catalog_id}",
          "request": {
            "method": "DELETE",
            "header": [
              {
                "key": "Authorization",
                "value": "Bearer {{api_key}}",
                "type": "text"
              },
              {
                "key": "Content-Type",
                "value": "application/json",
                "type": "text"
              }
            ],
            "url": {
              "raw": "{{base_url}}/v5/mcp/{catalog_id}",
              "host": [
                "{{base_url}}"
              ],
              "path": [
                "v5",
                "mcp",
                "{catalog_id}"
              ]
            },
            "description": "Mcp Hub Delete"
          },
          "response": []
        },
        {
          "name": "POST /v5/memory/archival/{agent_id}",
          "request": {
            "method": "POST",
            "header": [
              {
                "key": "Authorization",
                "value": "Bearer {{api_key}}",
                "type": "text"
              },
              {
                "key": "Content-Type",
                "value": "application/json",
                "type": "text"
              }
            ],
            "url": {
              "raw": "{{base_url}}/v5/memory/archival/{agent_id}",
              "host": [
                "{{base_url}}"
              ],
              "path": [
                "v5",
                "memory",
                "archival",
                "{agent_id}"
              ]
            },
            "description": "Tier Archival Insert"
          },
          "response": []
        },
        {
          "name": "POST /v5/memory/archival/{agent_id}/search",
          "request": {
            "method": "POST",
            "header": [
              {
                "key": "Authorization",
                "value": "Bearer {{api_key}}",
                "type": "text"
              },
              {
                "key": "Content-Type",
                "value": "application/json",
                "type": "text"
              }
            ],
            "url": {
              "raw": "{{base_url}}/v5/memory/archival/{agent_id}/search",
              "host": [
                "{{base_url}}"
              ],
              "path": [
                "v5",
                "memory",
                "archival",
                "{agent_id}",
                "search"
              ]
            },
            "description": "Tier Archival Search"
          },
          "response": []
        },
        {
          "name": "POST /v5/memory/consolidate/{agent_id}",
          "request": {
            "method": "POST",
            "header": [
              {
                "key": "Authorization",
                "value": "Bearer {{api_key}}",
                "type": "text"
              },
              {
                "key": "Content-Type",
                "value": "application/json",
                "type": "text"
              }
            ],
            "url": {
              "raw": "{{base_url}}/v5/memory/consolidate/{agent_id}",
              "host": [
                "{{base_url}}"
              ],
              "path": [
                "v5",
                "memory",
                "consolidate",
                "{agent_id}"
              ]
            },
            "description": "Tier Consolidate"
          },
          "response": []
        },
        {
          "name": "GET /v5/memory/context/{agent_id}",
          "request": {
            "method": "GET",
            "header": [
              {
                "key": "Authorization",
                "value": "Bearer {{api_key}}",
                "type": "text"
              },
              {
                "key": "Content-Type",
                "value": "application/json",
                "type": "text"
              }
            ],
            "url": {
              "raw": "{{base_url}}/v5/memory/context/{agent_id}",
              "host": [
                "{{base_url}}"
              ],
              "path": [
                "v5",
                "memory",
                "context",
                "{agent_id}"
              ]
            },
            "description": "Tier Build Context"
          },
          "response": []
        },
        {
          "name": "GET /v5/memory/core/{agent_id}",
          "request": {
            "method": "GET",
            "header": [
              {
                "key": "Authorization",
                "value": "Bearer {{api_key}}",
                "type": "text"
              },
              {
                "key": "Content-Type",
                "value": "application/json",
                "type": "text"
              }
            ],
            "url": {
              "raw": "{{base_url}}/v5/memory/core/{agent_id}",
              "host": [
                "{{base_url}}"
              ],
              "path": [
                "v5",
                "memory",
                "core",
                "{agent_id}"
              ]
            },
            "description": "Tier Core Get"
          },
          "response": []
        },
        {
          "name": "POST /v5/memory/core/{agent_id}",
          "request": {
            "method": "POST",
            "header": [
              {
                "key": "Authorization",
                "value": "Bearer {{api_key}}",
                "type": "text"
              },
              {
                "key": "Content-Type",
                "value": "application/json",
                "type": "text"
              }
            ],
            "url": {
              "raw": "{{base_url}}/v5/memory/core/{agent_id}",
              "host": [
                "{{base_url}}"
              ],
              "path": [
                "v5",
                "memory",
                "core",
                "{agent_id}"
              ]
            },
            "description": "Tier Core Append"
          },
          "response": []
        },
        {
          "name": "PUT /v5/memory/core/{agent_id}",
          "request": {
            "method": "PUT",
            "header": [
              {
                "key": "Authorization",
                "value": "Bearer {{api_key}}",
                "type": "text"
              },
              {
                "key": "Content-Type",
                "value": "application/json",
                "type": "text"
              }
            ],
            "url": {
              "raw": "{{base_url}}/v5/memory/core/{agent_id}",
              "host": [
                "{{base_url}}"
              ],
              "path": [
                "v5",
                "memory",
                "core",
                "{agent_id}"
              ]
            },
            "description": "Tier Core Replace"
          },
          "response": []
        },
        {
          "name": "DELETE /v5/memory/core/{agent_id}",
          "request": {
            "method": "DELETE",
            "header": [
              {
                "key": "Authorization",
                "value": "Bearer {{api_key}}",
                "type": "text"
              },
              {
                "key": "Content-Type",
                "value": "application/json",
                "type": "text"
              }
            ],
            "url": {
              "raw": "{{base_url}}/v5/memory/core/{agent_id}",
              "host": [
                "{{base_url}}"
              ],
              "path": [
                "v5",
                "memory",
                "core",
                "{agent_id}"
              ]
            },
            "description": "Tier Core Delete"
          },
          "response": []
        },
        {
          "name": "POST /v5/memory/promote",
          "request": {
            "method": "POST",
            "header": [
              {
                "key": "Authorization",
                "value": "Bearer {{api_key}}",
                "type": "text"
              },
              {
                "key": "Content-Type",
                "value": "application/json",
                "type": "text"
              }
            ],
            "url": {
              "raw": "{{base_url}}/v5/memory/promote",
              "host": [
                "{{base_url}}"
              ],
              "path": [
                "v5",
                "memory",
                "promote"
              ]
            },
            "description": "Tier Promote"
          },
          "response": []
        },
        {
          "name": "POST /v5/memory/recall/{agent_id}",
          "request": {
            "method": "POST",
            "header": [
              {
                "key": "Authorization",
                "value": "Bearer {{api_key}}",
                "type": "text"
              },
              {
                "key": "Content-Type",
                "value": "application/json",
                "type": "text"
              }
            ],
            "url": {
              "raw": "{{base_url}}/v5/memory/recall/{agent_id}",
              "host": [
                "{{base_url}}"
              ],
              "path": [
                "v5",
                "memory",
                "recall",
                "{agent_id}"
              ]
            },
            "description": "Tier Recall Add"
          },
          "response": []
        },
        {
          "name": "GET /v5/memory/recall/{agent_id}/recent",
          "request": {
            "method": "GET",
            "header": [
              {
                "key": "Authorization",
                "value": "Bearer {{api_key}}",
                "type": "text"
              },
              {
                "key": "Content-Type",
                "value": "application/json",
                "type": "text"
              }
            ],
            "url": {
              "raw": "{{base_url}}/v5/memory/recall/{agent_id}/recent",
              "host": [
                "{{base_url}}"
              ],
              "path": [
                "v5",
                "memory",
                "recall",
                "{agent_id}",
                "recent"
              ]
            },
            "description": "Tier Recall Recent"
          },
          "response": []
        },
        {
          "name": "POST /v5/memory/recall/{agent_id}/search",
          "request": {
            "method": "POST",
            "header": [
              {
                "key": "Authorization",
                "value": "Bearer {{api_key}}",
                "type": "text"
              },
              {
                "key": "Content-Type",
                "value": "application/json",
                "type": "text"
              }
            ],
            "url": {
              "raw": "{{base_url}}/v5/memory/recall/{agent_id}/search",
              "host": [
                "{{base_url}}"
              ],
              "path": [
                "v5",
                "memory",
                "recall",
                "{agent_id}",
                "search"
              ]
            },
            "description": "Tier Recall Search"
          },
          "response": []
        },
        {
          "name": "GET /v5/memory/stats/{agent_id}",
          "request": {
            "method": "GET",
            "header": [
              {
                "key": "Authorization",
                "value": "Bearer {{api_key}}",
                "type": "text"
              },
              {
                "key": "Content-Type",
                "value": "application/json",
                "type": "text"
              }
            ],
            "url": {
              "raw": "{{base_url}}/v5/memory/stats/{agent_id}",
              "host": [
                "{{base_url}}"
              ],
              "path": [
                "v5",
                "memory",
                "stats",
                "{agent_id}"
              ]
            },
            "description": "Tier Stats"
          },
          "response": []
        },
        {
          "name": "POST /v5/memory/temporal-search",
          "request": {
            "method": "POST",
            "header": [
              {
                "key": "Authorization",
                "value": "Bearer {{api_key}}",
                "type": "text"
              },
              {
                "key": "Content-Type",
                "value": "application/json",
                "type": "text"
              }
            ],
            "url": {
              "raw": "{{base_url}}/v5/memory/temporal-search",
              "host": [
                "{{base_url}}"
              ],
              "path": [
                "v5",
                "memory",
                "temporal-search"
              ]
            },
            "description": "Temporal Memory Search"
          },
          "response": []
        },
        {
          "name": "GET /v5/observability/database",
          "request": {
            "method": "GET",
            "header": [
              {
                "key": "Authorization",
                "value": "Bearer {{api_key}}",
                "type": "text"
              },
              {
                "key": "Content-Type",
                "value": "application/json",
                "type": "text"
              }
            ],
            "url": {
              "raw": "{{base_url}}/v5/observability/database",
              "host": [
                "{{base_url}}"
              ],
              "path": [
                "v5",
                "observability",
                "database"
              ]
            },
            "description": "Obs Db Stats"
          },
          "response": []
        },
        {
          "name": "GET /v5/observability/errors",
          "request": {
            "method": "GET",
            "header": [
              {
                "key": "Authorization",
                "value": "Bearer {{api_key}}",
                "type": "text"
              },
              {
                "key": "Content-Type",
                "value": "application/json",
                "type": "text"
              }
            ],
            "url": {
              "raw": "{{base_url}}/v5/observability/errors",
              "host": [
                "{{base_url}}"
              ],
              "path": [
                "v5",
                "observability",
                "errors"
              ]
            },
            "description": "Obs Errors"
          },
          "response": []
        },
        {
          "name": "GET /v5/observability/health",
          "request": {
            "method": "GET",
            "header": [
              {
                "key": "Authorization",
                "value": "Bearer {{api_key}}",
                "type": "text"
              },
              {
                "key": "Content-Type",
                "value": "application/json",
                "type": "text"
              }
            ],
            "url": {
              "raw": "{{base_url}}/v5/observability/health",
              "host": [
                "{{base_url}}"
              ],
              "path": [
                "v5",
                "observability",
                "health"
              ]
            },
            "description": "Obs Health"
          },
          "response": []
        },
        {
          "name": "GET /v5/observability/metrics",
          "request": {
            "method": "GET",
            "header": [
              {
                "key": "Authorization",
                "value": "Bearer {{api_key}}",
                "type": "text"
              },
              {
                "key": "Content-Type",
                "value": "application/json",
                "type": "text"
              }
            ],
            "url": {
              "raw": "{{base_url}}/v5/observability/metrics",
              "host": [
                "{{base_url}}"
              ],
              "path": [
                "v5",
                "observability",
                "metrics"
              ]
            },
            "description": "Obs Metrics"
          },
          "response": []
        },
        {
          "name": "GET /v5/observability/restate",
          "request": {
            "method": "GET",
            "header": [
              {
                "key": "Authorization",
                "value": "Bearer {{api_key}}",
                "type": "text"
              },
              {
                "key": "Content-Type",
                "value": "application/json",
                "type": "text"
              }
            ],
            "url": {
              "raw": "{{base_url}}/v5/observability/restate",
              "host": [
                "{{base_url}}"
              ],
              "path": [
                "v5",
                "observability",
                "restate"
              ]
            },
            "description": "Obs Restate"
          },
          "response": []
        },
        {
          "name": "POST /v5/observability/snapshot",
          "request": {
            "method": "POST",
            "header": [
              {
                "key": "Authorization",
                "value": "Bearer {{api_key}}",
                "type": "text"
              },
              {
                "key": "Content-Type",
                "value": "application/json",
                "type": "text"
              }
            ],
            "url": {
              "raw": "{{base_url}}/v5/observability/snapshot",
              "host": [
                "{{base_url}}"
              ],
              "path": [
                "v5",
                "observability",
                "snapshot"
              ]
            },
            "description": "Obs Snapshot"
          },
          "response": []
        },
        {
          "name": "GET /v5/observability/snapshots",
          "request": {
            "method": "GET",
            "header": [
              {
                "key": "Authorization",
                "value": "Bearer {{api_key}}",
                "type": "text"
              },
              {
                "key": "Content-Type",
                "value": "application/json",
                "type": "text"
              }
            ],
            "url": {
              "raw": "{{base_url}}/v5/observability/snapshots",
              "host": [
                "{{base_url}}"
              ],
              "path": [
                "v5",
                "observability",
                "snapshots"
              ]
            },
            "description": "Obs Snapshots"
          },
          "response": []
        },
        {
          "name": "GET /v5/observability/usage",
          "request": {
            "method": "GET",
            "header": [
              {
                "key": "Authorization",
                "value": "Bearer {{api_key}}",
                "type": "text"
              },
              {
                "key": "Content-Type",
                "value": "application/json",
                "type": "text"
              }
            ],
            "url": {
              "raw": "{{base_url}}/v5/observability/usage",
              "host": [
                "{{base_url}}"
              ],
              "path": [
                "v5",
                "observability",
                "usage"
              ]
            },
            "description": "Obs Usage"
          },
          "response": []
        },
        {
          "name": "POST /v5/pipelines",
          "request": {
            "method": "POST",
            "header": [
              {
                "key": "Authorization",
                "value": "Bearer {{api_key}}",
                "type": "text"
              },
              {
                "key": "Content-Type",
                "value": "application/json",
                "type": "text"
              }
            ],
            "url": {
              "raw": "{{base_url}}/v5/pipelines",
              "host": [
                "{{base_url}}"
              ],
              "path": [
                "v5",
                "pipelines"
              ]
            },
            "description": "Pipeline Create"
          },
          "response": []
        },
        {
          "name": "GET /v5/pipelines",
          "request": {
            "method": "GET",
            "header": [
              {
                "key": "Authorization",
                "value": "Bearer {{api_key}}",
                "type": "text"
              },
              {
                "key": "Content-Type",
                "value": "application/json",
                "type": "text"
              }
            ],
            "url": {
              "raw": "{{base_url}}/v5/pipelines",
              "host": [
                "{{base_url}}"
              ],
              "path": [
                "v5",
                "pipelines"
              ]
            },
            "description": "Pipeline List"
          },
          "response": []
        },
        {
          "name": "GET /v5/pipelines/{name}",
          "request": {
            "method": "GET",
            "header": [
              {
                "key": "Authorization",
                "value": "Bearer {{api_key}}",
                "type": "text"
              },
              {
                "key": "Content-Type",
                "value": "application/json",
                "type": "text"
              }
            ],
            "url": {
              "raw": "{{base_url}}/v5/pipelines/{name}",
              "host": [
                "{{base_url}}"
              ],
              "path": [
                "v5",
                "pipelines",
                "{name}"
              ]
            },
            "description": "Pipeline Get"
          },
          "response": []
        },
        {
          "name": "DELETE /v5/pipelines/{name}",
          "request": {
            "method": "DELETE",
            "header": [
              {
                "key": "Authorization",
                "value": "Bearer {{api_key}}",
                "type": "text"
              },
              {
                "key": "Content-Type",
                "value": "application/json",
                "type": "text"
              }
            ],
            "url": {
              "raw": "{{base_url}}/v5/pipelines/{name}",
              "host": [
                "{{base_url}}"
              ],
              "path": [
                "v5",
                "pipelines",
                "{name}"
              ]
            },
            "description": "Pipeline Delete"
          },
          "response": []
        },
        {
          "name": "POST /v5/pipelines/{name}/run",
          "request": {
            "method": "POST",
            "header": [
              {
                "key": "Authorization",
                "value": "Bearer {{api_key}}",
                "type": "text"
              },
              {
                "key": "Content-Type",
                "value": "application/json",
                "type": "text"
              }
            ],
            "url": {
              "raw": "{{base_url}}/v5/pipelines/{name}/run",
              "host": [
                "{{base_url}}"
              ],
              "path": [
                "v5",
                "pipelines",
                "{name}",
                "run"
              ]
            },
            "description": "Pipeline Execute"
          },
          "response": []
        },
        {
          "name": "GET /v5/pipelines/{name}/runs",
          "request": {
            "method": "GET",
            "header": [
              {
                "key": "Authorization",
                "value": "Bearer {{api_key}}",
                "type": "text"
              },
              {
                "key": "Content-Type",
                "value": "application/json",
                "type": "text"
              }
            ],
            "url": {
              "raw": "{{base_url}}/v5/pipelines/{name}/runs",
              "host": [
                "{{base_url}}"
              ],
              "path": [
                "v5",
                "pipelines",
                "{name}",
                "runs"
              ]
            },
            "description": "Pipeline List Runs"
          },
          "response": []
        },
        {
          "name": "GET /v5/plugins/categories",
          "request": {
            "method": "GET",
            "header": [
              {
                "key": "Authorization",
                "value": "Bearer {{api_key}}",
                "type": "text"
              },
              {
                "key": "Content-Type",
                "value": "application/json",
                "type": "text"
              }
            ],
            "url": {
              "raw": "{{base_url}}/v5/plugins/categories",
              "host": [
                "{{base_url}}"
              ],
              "path": [
                "v5",
                "plugins",
                "categories"
              ]
            },
            "description": "Plugin Categories"
          },
          "response": []
        },
        {
          "name": "POST /v5/plugins/find-for-task",
          "request": {
            "method": "POST",
            "header": [
              {
                "key": "Authorization",
                "value": "Bearer {{api_key}}",
                "type": "text"
              },
              {
                "key": "Content-Type",
                "value": "application/json",
                "type": "text"
              }
            ],
            "url": {
              "raw": "{{base_url}}/v5/plugins/find-for-task",
              "host": [
                "{{base_url}}"
              ],
              "path": [
                "v5",
                "plugins",
                "find-for-task"
              ]
            },
            "description": "Plugin Find For Task"
          },
          "response": []
        },
        {
          "name": "POST /v5/plugins/ingest",
          "request": {
            "method": "POST",
            "header": [
              {
                "key": "Authorization",
                "value": "Bearer {{api_key}}",
                "type": "text"
              },
              {
                "key": "Content-Type",
                "value": "application/json",
                "type": "text"
              }
            ],
            "url": {
              "raw": "{{base_url}}/v5/plugins/ingest",
              "host": [
                "{{base_url}}"
              ],
              "path": [
                "v5",
                "plugins",
                "ingest"
              ]
            },
            "description": "Plugin Ingest"
          },
          "response": []
        },
        {
          "name": "POST /v5/plugins/invoke/{plugin_id}",
          "request": {
            "method": "POST",
            "header": [
              {
                "key": "Authorization",
                "value": "Bearer {{api_key}}",
                "type": "text"
              },
              {
                "key": "Content-Type",
                "value": "application/json",
                "type": "text"
              }
            ],
            "url": {
              "raw": "{{base_url}}/v5/plugins/invoke/{plugin_id}",
              "host": [
                "{{base_url}}"
              ],
              "path": [
                "v5",
                "plugins",
                "invoke",
                "{plugin_id}"
              ]
            },
            "description": "Plugin Invoke"
          },
          "response": []
        },
        {
          "name": "GET /v5/plugins/list",
          "request": {
            "method": "GET",
            "header": [
              {
                "key": "Authorization",
                "value": "Bearer {{api_key}}",
                "type": "text"
              },
              {
                "key": "Content-Type",
                "value": "application/json",
                "type": "text"
              }
            ],
            "url": {
              "raw": "{{base_url}}/v5/plugins/list",
              "host": [
                "{{base_url}}"
              ],
              "path": [
                "v5",
                "plugins",
                "list"
              ]
            },
            "description": "Plugin List"
          },
          "response": []
        },
        {
          "name": "POST /v5/plugins/register",
          "request": {
            "method": "POST",
            "header": [
              {
                "key": "Authorization",
                "value": "Bearer {{api_key}}",
                "type": "text"
              },
              {
                "key": "Content-Type",
                "value": "application/json",
                "type": "text"
              }
            ],
            "url": {
              "raw": "{{base_url}}/v5/plugins/register",
              "host": [
                "{{base_url}}"
              ],
              "path": [
                "v5",
                "plugins",
                "register"
              ]
            },
            "description": "Plugin Register"
          },
          "response": []
        },
        {
          "name": "POST /v5/plugins/search",
          "request": {
            "method": "POST",
            "header": [
              {
                "key": "Authorization",
                "value": "Bearer {{api_key}}",
                "type": "text"
              },
              {
                "key": "Content-Type",
                "value": "application/json",
                "type": "text"
              }
            ],
            "url": {
              "raw": "{{base_url}}/v5/plugins/search",
              "host": [
                "{{base_url}}"
              ],
              "path": [
                "v5",
                "plugins",
                "search"
              ]
            },
            "description": "Plugin Search"
          },
          "response": []
        },
        {
          "name": "GET /v5/plugins/sources",
          "request": {
            "method": "GET",
            "header": [
              {
                "key": "Authorization",
                "value": "Bearer {{api_key}}",
                "type": "text"
              },
              {
                "key": "Content-Type",
                "value": "application/json",
                "type": "text"
              }
            ],
            "url": {
              "raw": "{{base_url}}/v5/plugins/sources",
              "host": [
                "{{base_url}}"
              ],
              "path": [
                "v5",
                "plugins",
                "sources"
              ]
            },
            "description": "Plugin Sources"
          },
          "response": []
        },
        {
          "name": "GET /v5/plugins/stats",
          "request": {
            "method": "GET",
            "header": [
              {
                "key": "Authorization",
                "value": "Bearer {{api_key}}",
                "type": "text"
              },
              {
                "key": "Content-Type",
                "value": "application/json",
                "type": "text"
              }
            ],
            "url": {
              "raw": "{{base_url}}/v5/plugins/stats",
              "host": [
                "{{base_url}}"
              ],
              "path": [
                "v5",
                "plugins",
                "stats"
              ]
            },
            "description": "Plugin Stats"
          },
          "response": []
        },
        {
          "name": "GET /v5/plugins/{plugin_id}",
          "request": {
            "method": "GET",
            "header": [
              {
                "key": "Authorization",
                "value": "Bearer {{api_key}}",
                "type": "text"
              },
              {
                "key": "Content-Type",
                "value": "application/json",
                "type": "text"
              }
            ],
            "url": {
              "raw": "{{base_url}}/v5/plugins/{plugin_id}",
              "host": [
                "{{base_url}}"
              ],
              "path": [
                "v5",
                "plugins",
                "{plugin_id}"
              ]
            },
            "description": "Plugin Get"
          },
          "response": []
        },
        {
          "name": "DELETE /v5/plugins/{plugin_id}",
          "request": {
            "method": "DELETE",
            "header": [
              {
                "key": "Authorization",
                "value": "Bearer {{api_key}}",
                "type": "text"
              },
              {
                "key": "Content-Type",
                "value": "application/json",
                "type": "text"
              }
            ],
            "url": {
              "raw": "{{base_url}}/v5/plugins/{plugin_id}",
              "host": [
                "{{base_url}}"
              ],
              "path": [
                "v5",
                "plugins",
                "{plugin_id}"
              ]
            },
            "description": "Plugin Delete"
          },
          "response": []
        },
        {
          "name": "GET /v5/rate-limits/check",
          "request": {
            "method": "GET",
            "header": [
              {
                "key": "Authorization",
                "value": "Bearer {{api_key}}",
                "type": "text"
              },
              {
                "key": "Content-Type",
                "value": "application/json",
                "type": "text"
              }
            ],
            "url": {
              "raw": "{{base_url}}/v5/rate-limits/check",
              "host": [
                "{{base_url}}"
              ],
              "path": [
                "v5",
                "rate-limits",
                "check"
              ]
            },
            "description": "Rate Limit Check"
          },
          "response": []
        },
        {
          "name": "POST /v5/rate-limits/cleanup",
          "request": {
            "method": "POST",
            "header": [
              {
                "key": "Authorization",
                "value": "Bearer {{api_key}}",
                "type": "text"
              },
              {
                "key": "Content-Type",
                "value": "application/json",
                "type": "text"
              }
            ],
            "url": {
              "raw": "{{base_url}}/v5/rate-limits/cleanup",
              "host": [
                "{{base_url}}"
              ],
              "path": [
                "v5",
                "rate-limits",
                "cleanup"
              ]
            },
            "description": "Rate Limit Cleanup"
          },
          "response": []
        },
        {
          "name": "GET /v5/rate-limits/config/{api_key}",
          "request": {
            "method": "GET",
            "header": [
              {
                "key": "Authorization",
                "value": "Bearer {{api_key}}",
                "type": "text"
              },
              {
                "key": "Content-Type",
                "value": "application/json",
                "type": "text"
              }
            ],
            "url": {
              "raw": "{{base_url}}/v5/rate-limits/config/{api_key}",
              "host": [
                "{{base_url}}"
              ],
              "path": [
                "v5",
                "rate-limits",
                "config",
                "{api_key}"
              ]
            },
            "description": "Rate Limit Get Config"
          },
          "response": []
        },
        {
          "name": "POST /v5/rate-limits/configure",
          "request": {
            "method": "POST",
            "header": [
              {
                "key": "Authorization",
                "value": "Bearer {{api_key}}",
                "type": "text"
              },
              {
                "key": "Content-Type",
                "value": "application/json",
                "type": "text"
              }
            ],
            "url": {
              "raw": "{{base_url}}/v5/rate-limits/configure",
              "host": [
                "{{base_url}}"
              ],
              "path": [
                "v5",
                "rate-limits",
                "configure"
              ]
            },
            "description": "Rate Limit Configure"
          },
          "response": []
        },
        {
          "name": "POST /v5/rate-limits/increment",
          "request": {
            "method": "POST",
            "header": [
              {
                "key": "Authorization",
                "value": "Bearer {{api_key}}",
                "type": "text"
              },
              {
                "key": "Content-Type",
                "value": "application/json",
                "type": "text"
              }
            ],
            "url": {
              "raw": "{{base_url}}/v5/rate-limits/increment",
              "host": [
                "{{base_url}}"
              ],
              "path": [
                "v5",
                "rate-limits",
                "increment"
              ]
            },
            "description": "Rate Limit Increment"
          },
          "response": []
        },
        {
          "name": "GET /v5/rate-limits/tiers",
          "request": {
            "method": "GET",
            "header": [
              {
                "key": "Authorization",
                "value": "Bearer {{api_key}}",
                "type": "text"
              },
              {
                "key": "Content-Type",
                "value": "application/json",
                "type": "text"
              }
            ],
            "url": {
              "raw": "{{base_url}}/v5/rate-limits/tiers",
              "host": [
                "{{base_url}}"
              ],
              "path": [
                "v5",
                "rate-limits",
                "tiers"
              ]
            },
            "description": "Rate Limit Tiers"
          },
          "response": []
        },
        {
          "name": "POST /v5/schedule",
          "request": {
            "method": "POST",
            "header": [
              {
                "key": "Authorization",
                "value": "Bearer {{api_key}}",
                "type": "text"
              },
              {
                "key": "Content-Type",
                "value": "application/json",
                "type": "text"
              }
            ],
            "url": {
              "raw": "{{base_url}}/v5/schedule",
              "host": [
                "{{base_url}}"
              ],
              "path": [
                "v5",
                "schedule"
              ]
            },
            "description": "Sched Create"
          },
          "response": []
        },
        {
          "name": "GET /v5/schedule",
          "request": {
            "method": "GET",
            "header": [
              {
                "key": "Authorization",
                "value": "Bearer {{api_key}}",
                "type": "text"
              },
              {
                "key": "Content-Type",
                "value": "application/json",
                "type": "text"
              }
            ],
            "url": {
              "raw": "{{base_url}}/v5/schedule",
              "host": [
                "{{base_url}}"
              ],
              "path": [
                "v5",
                "schedule"
              ]
            },
            "description": "Sched List"
          },
          "response": []
        },
        {
          "name": "GET /v5/schedule/runs",
          "request": {
            "method": "GET",
            "header": [
              {
                "key": "Authorization",
                "value": "Bearer {{api_key}}",
                "type": "text"
              },
              {
                "key": "Content-Type",
                "value": "application/json",
                "type": "text"
              }
            ],
            "url": {
              "raw": "{{base_url}}/v5/schedule/runs",
              "host": [
                "{{base_url}}"
              ],
              "path": [
                "v5",
                "schedule",
                "runs"
              ]
            },
            "description": "Sched Runs"
          },
          "response": []
        },
        {
          "name": "POST /v5/schedule/tick",
          "request": {
            "method": "POST",
            "header": [
              {
                "key": "Authorization",
                "value": "Bearer {{api_key}}",
                "type": "text"
              },
              {
                "key": "Content-Type",
                "value": "application/json",
                "type": "text"
              }
            ],
            "url": {
              "raw": "{{base_url}}/v5/schedule/tick",
              "host": [
                "{{base_url}}"
              ],
              "path": [
                "v5",
                "schedule",
                "tick"
              ]
            },
            "description": "Sched Tick"
          },
          "response": []
        },
        {
          "name": "GET /v5/schedule/{name}",
          "request": {
            "method": "GET",
            "header": [
              {
                "key": "Authorization",
                "value": "Bearer {{api_key}}",
                "type": "text"
              },
              {
                "key": "Content-Type",
                "value": "application/json",
                "type": "text"
              }
            ],
            "url": {
              "raw": "{{base_url}}/v5/schedule/{name}",
              "host": [
                "{{base_url}}"
              ],
              "path": [
                "v5",
                "schedule",
                "{name}"
              ]
            },
            "description": "Sched Get"
          },
          "response": []
        },
        {
          "name": "DELETE /v5/schedule/{name}",
          "request": {
            "method": "DELETE",
            "header": [
              {
                "key": "Authorization",
                "value": "Bearer {{api_key}}",
                "type": "text"
              },
              {
                "key": "Content-Type",
                "value": "application/json",
                "type": "text"
              }
            ],
            "url": {
              "raw": "{{base_url}}/v5/schedule/{name}",
              "host": [
                "{{base_url}}"
              ],
              "path": [
                "v5",
                "schedule",
                "{name}"
              ]
            },
            "description": "Sched Delete"
          },
          "response": []
        },
        {
          "name": "POST /v5/schedule/{name}/cancel",
          "request": {
            "method": "POST",
            "header": [
              {
                "key": "Authorization",
                "value": "Bearer {{api_key}}",
                "type": "text"
              },
              {
                "key": "Content-Type",
                "value": "application/json",
                "type": "text"
              }
            ],
            "url": {
              "raw": "{{base_url}}/v5/schedule/{name}/cancel",
              "host": [
                "{{base_url}}"
              ],
              "path": [
                "v5",
                "schedule",
                "{name}",
                "cancel"
              ]
            },
            "description": "Sched Cancel"
          },
          "response": []
        },
        {
          "name": "POST /v5/skills/fetch",
          "request": {
            "method": "POST",
            "header": [
              {
                "key": "Authorization",
                "value": "Bearer {{api_key}}",
                "type": "text"
              },
              {
                "key": "Content-Type",
                "value": "application/json",
                "type": "text"
              }
            ],
            "url": {
              "raw": "{{base_url}}/v5/skills/fetch",
              "host": [
                "{{base_url}}"
              ],
              "path": [
                "v5",
                "skills",
                "fetch"
              ]
            },
            "description": "V5 Skills Fetch"
          },
          "response": []
        },
        {
          "name": "POST /v5/skills/for-prompt",
          "request": {
            "method": "POST",
            "header": [
              {
                "key": "Authorization",
                "value": "Bearer {{api_key}}",
                "type": "text"
              },
              {
                "key": "Content-Type",
                "value": "application/json",
                "type": "text"
              }
            ],
            "url": {
              "raw": "{{base_url}}/v5/skills/for-prompt",
              "host": [
                "{{base_url}}"
              ],
              "path": [
                "v5",
                "skills",
                "for-prompt"
              ]
            },
            "description": "V5 Skills For Prompt"
          },
          "response": []
        },
        {
          "name": "GET /v5/skills/health",
          "request": {
            "method": "GET",
            "header": [
              {
                "key": "Authorization",
                "value": "Bearer {{api_key}}",
                "type": "text"
              },
              {
                "key": "Content-Type",
                "value": "application/json",
                "type": "text"
              }
            ],
            "url": {
              "raw": "{{base_url}}/v5/skills/health",
              "host": [
                "{{base_url}}"
              ],
              "path": [
                "v5",
                "skills",
                "health"
              ]
            },
            "description": "V5 Skills Health"
          },
          "response": []
        },
        {
          "name": "GET /v5/skills/packs",
          "request": {
            "method": "GET",
            "header": [
              {
                "key": "Authorization",
                "value": "Bearer {{api_key}}",
                "type": "text"
              },
              {
                "key": "Content-Type",
                "value": "application/json",
                "type": "text"
              }
            ],
            "url": {
              "raw": "{{base_url}}/v5/skills/packs",
              "host": [
                "{{base_url}}"
              ],
              "path": [
                "v5",
                "skills",
                "packs"
              ]
            },
            "description": "V5 Skills List Packs"
          },
          "response": []
        },
        {
          "name": "POST /v5/skills/resolve",
          "request": {
            "method": "POST",
            "header": [
              {
                "key": "Authorization",
                "value": "Bearer {{api_key}}",
                "type": "text"
              },
              {
                "key": "Content-Type",
                "value": "application/json",
                "type": "text"
              }
            ],
            "url": {
              "raw": "{{base_url}}/v5/skills/resolve",
              "host": [
                "{{base_url}}"
              ],
              "path": [
                "v5",
                "skills",
                "resolve"
              ]
            },
            "description": "V5 Skills Resolve"
          },
          "response": []
        },
        {
          "name": "POST /v5/summarize/agent/{agent_id}",
          "request": {
            "method": "POST",
            "header": [
              {
                "key": "Authorization",
                "value": "Bearer {{api_key}}",
                "type": "text"
              },
              {
                "key": "Content-Type",
                "value": "application/json",
                "type": "text"
              }
            ],
            "url": {
              "raw": "{{base_url}}/v5/summarize/agent/{agent_id}",
              "host": [
                "{{base_url}}"
              ],
              "path": [
                "v5",
                "summarize",
                "agent",
                "{agent_id}"
              ]
            },
            "description": "Summarize Agent"
          },
          "response": []
        },
        {
          "name": "POST /v5/summarize/messages",
          "request": {
            "method": "POST",
            "header": [
              {
                "key": "Authorization",
                "value": "Bearer {{api_key}}",
                "type": "text"
              },
              {
                "key": "Content-Type",
                "value": "application/json",
                "type": "text"
              }
            ],
            "url": {
              "raw": "{{base_url}}/v5/summarize/messages",
              "host": [
                "{{base_url}}"
              ],
              "path": [
                "v5",
                "summarize",
                "messages"
              ]
            },
            "description": "Summarize Messages"
          },
          "response": []
        },
        {
          "name": "POST /v5/templates",
          "request": {
            "method": "POST",
            "header": [
              {
                "key": "Authorization",
                "value": "Bearer {{api_key}}",
                "type": "text"
              },
              {
                "key": "Content-Type",
                "value": "application/json",
                "type": "text"
              }
            ],
            "url": {
              "raw": "{{base_url}}/v5/templates",
              "host": [
                "{{base_url}}"
              ],
              "path": [
                "v5",
                "templates"
              ]
            },
            "description": "Template Create"
          },
          "response": []
        },
        {
          "name": "GET /v5/templates",
          "request": {
            "method": "GET",
            "header": [
              {
                "key": "Authorization",
                "value": "Bearer {{api_key}}",
                "type": "text"
              },
              {
                "key": "Content-Type",
                "value": "application/json",
                "type": "text"
              }
            ],
            "url": {
              "raw": "{{base_url}}/v5/templates",
              "host": [
                "{{base_url}}"
              ],
              "path": [
                "v5",
                "templates"
              ]
            },
            "description": "Template List"
          },
          "response": []
        },
        {
          "name": "GET /v5/templates/analytics",
          "request": {
            "method": "GET",
            "header": [
              {
                "key": "Authorization",
                "value": "Bearer {{api_key}}",
                "type": "text"
              },
              {
                "key": "Content-Type",
                "value": "application/json",
                "type": "text"
              }
            ],
            "url": {
              "raw": "{{base_url}}/v5/templates/analytics",
              "host": [
                "{{base_url}}"
              ],
              "path": [
                "v5",
                "templates",
                "analytics"
              ]
            },
            "description": "Template Analytics"
          },
          "response": []
        },
        {
          "name": "POST /v5/templates/runs",
          "request": {
            "method": "POST",
            "header": [
              {
                "key": "Authorization",
                "value": "Bearer {{api_key}}",
                "type": "text"
              },
              {
                "key": "Content-Type",
                "value": "application/json",
                "type": "text"
              }
            ],
            "url": {
              "raw": "{{base_url}}/v5/templates/runs",
              "host": [
                "{{base_url}}"
              ],
              "path": [
                "v5",
                "templates",
                "runs"
              ]
            },
            "description": "Template Record Run"
          },
          "response": []
        },
        {
          "name": "GET /v5/templates/{name}",
          "request": {
            "method": "GET",
            "header": [
              {
                "key": "Authorization",
                "value": "Bearer {{api_key}}",
                "type": "text"
              },
              {
                "key": "Content-Type",
                "value": "application/json",
                "type": "text"
              }
            ],
            "url": {
              "raw": "{{base_url}}/v5/templates/{name}",
              "host": [
                "{{base_url}}"
              ],
              "path": [
                "v5",
                "templates",
                "{name}"
              ]
            },
            "description": "Template Get"
          },
          "response": []
        },
        {
          "name": "DELETE /v5/templates/{name}",
          "request": {
            "method": "DELETE",
            "header": [
              {
                "key": "Authorization",
                "value": "Bearer {{api_key}}",
                "type": "text"
              },
              {
                "key": "Content-Type",
                "value": "application/json",
                "type": "text"
              }
            ],
            "url": {
              "raw": "{{base_url}}/v5/templates/{name}",
              "host": [
                "{{base_url}}"
              ],
              "path": [
                "v5",
                "templates",
                "{name}"
              ]
            },
            "description": "Template Delete"
          },
          "response": []
        },
        {
          "name": "POST /v5/templates/{name}/render",
          "request": {
            "method": "POST",
            "header": [
              {
                "key": "Authorization",
                "value": "Bearer {{api_key}}",
                "type": "text"
              },
              {
                "key": "Content-Type",
                "value": "application/json",
                "type": "text"
              }
            ],
            "url": {
              "raw": "{{base_url}}/v5/templates/{name}/render",
              "host": [
                "{{base_url}}"
              ],
              "path": [
                "v5",
                "templates",
                "{name}",
                "render"
              ]
            },
            "description": "Template Render"
          },
          "response": []
        },
        {
          "name": "GET /v5/templates/{name}/variant",
          "request": {
            "method": "GET",
            "header": [
              {
                "key": "Authorization",
                "value": "Bearer {{api_key}}",
                "type": "text"
              },
              {
                "key": "Content-Type",
                "value": "application/json",
                "type": "text"
              }
            ],
            "url": {
              "raw": "{{base_url}}/v5/templates/{name}/variant",
              "host": [
                "{{base_url}}"
              ],
              "path": [
                "v5",
                "templates",
                "{name}",
                "variant"
              ]
            },
            "description": "Template Resolve Variant"
          },
          "response": []
        },
        {
          "name": "POST /v5/tools/generate",
          "request": {
            "method": "POST",
            "header": [
              {
                "key": "Authorization",
                "value": "Bearer {{api_key}}",
                "type": "text"
              },
              {
                "key": "Content-Type",
                "value": "application/json",
                "type": "text"
              }
            ],
            "url": {
              "raw": "{{base_url}}/v5/tools/generate",
              "host": [
                "{{base_url}}"
              ],
              "path": [
                "v5",
                "tools",
                "generate"
              ]
            },
            "description": "Tool Generate"
          },
          "response": []
        },
        {
          "name": "POST /v5/tools/generate-from-url",
          "request": {
            "method": "POST",
            "header": [
              {
                "key": "Authorization",
                "value": "Bearer {{api_key}}",
                "type": "text"
              },
              {
                "key": "Content-Type",
                "value": "application/json",
                "type": "text"
              }
            ],
            "url": {
              "raw": "{{base_url}}/v5/tools/generate-from-url",
              "host": [
                "{{base_url}}"
              ],
              "path": [
                "v5",
                "tools",
                "generate-from-url"
              ]
            },
            "description": "Tool Generate From Url"
          },
          "response": []
        },
        {
          "name": "GET /v5/tools/generated",
          "request": {
            "method": "GET",
            "header": [
              {
                "key": "Authorization",
                "value": "Bearer {{api_key}}",
                "type": "text"
              },
              {
                "key": "Content-Type",
                "value": "application/json",
                "type": "text"
              }
            ],
            "url": {
              "raw": "{{base_url}}/v5/tools/generated",
              "host": [
                "{{base_url}}"
              ],
              "path": [
                "v5",
                "tools",
                "generated"
              ]
            },
            "description": "Tool List Generated"
          },
          "response": []
        },
        {
          "name": "GET /v5/tools/generated/{name}",
          "request": {
            "method": "GET",
            "header": [
              {
                "key": "Authorization",
                "value": "Bearer {{api_key}}",
                "type": "text"
              },
              {
                "key": "Content-Type",
                "value": "application/json",
                "type": "text"
              }
            ],
            "url": {
              "raw": "{{base_url}}/v5/tools/generated/{name}",
              "host": [
                "{{base_url}}"
              ],
              "path": [
                "v5",
                "tools",
                "generated",
                "{name}"
              ]
            },
            "description": "Tool Get Generated"
          },
          "response": []
        },
        {
          "name": "DELETE /v5/tools/generated/{name}",
          "request": {
            "method": "DELETE",
            "header": [
              {
                "key": "Authorization",
                "value": "Bearer {{api_key}}",
                "type": "text"
              },
              {
                "key": "Content-Type",
                "value": "application/json",
                "type": "text"
              }
            ],
            "url": {
              "raw": "{{base_url}}/v5/tools/generated/{name}",
              "host": [
                "{{base_url}}"
              ],
              "path": [
                "v5",
                "tools",
                "generated",
                "{name}"
              ]
            },
            "description": "Tool Delete Generated"
          },
          "response": []
        },
        {
          "name": "POST /v5/tools/prefilter",
          "request": {
            "method": "POST",
            "header": [
              {
                "key": "Authorization",
                "value": "Bearer {{api_key}}",
                "type": "text"
              },
              {
                "key": "Content-Type",
                "value": "application/json",
                "type": "text"
              }
            ],
            "url": {
              "raw": "{{base_url}}/v5/tools/prefilter",
              "host": [
                "{{base_url}}"
              ],
              "path": [
                "v5",
                "tools",
                "prefilter"
              ]
            },
            "description": "Tool Prefilter"
          },
          "response": []
        },
        {
          "name": "POST /v5/tools/prefilter-context",
          "request": {
            "method": "POST",
            "header": [
              {
                "key": "Authorization",
                "value": "Bearer {{api_key}}",
                "type": "text"
              },
              {
                "key": "Content-Type",
                "value": "application/json",
                "type": "text"
              }
            ],
            "url": {
              "raw": "{{base_url}}/v5/tools/prefilter-context",
              "host": [
                "{{base_url}}"
              ],
              "path": [
                "v5",
                "tools",
                "prefilter-context"
              ]
            },
            "description": "Tool Prefilter Context"
          },
          "response": []
        },
        {
          "name": "POST /v5/tot/quick",
          "request": {
            "method": "POST",
            "header": [
              {
                "key": "Authorization",
                "value": "Bearer {{api_key}}",
                "type": "text"
              },
              {
                "key": "Content-Type",
                "value": "application/json",
                "type": "text"
              }
            ],
            "url": {
              "raw": "{{base_url}}/v5/tot/quick",
              "host": [
                "{{base_url}}"
              ],
              "path": [
                "v5",
                "tot",
                "quick"
              ]
            },
            "description": "Tot Quick"
          },
          "response": []
        },
        {
          "name": "POST /v5/tot/reason",
          "request": {
            "method": "POST",
            "header": [
              {
                "key": "Authorization",
                "value": "Bearer {{api_key}}",
                "type": "text"
              },
              {
                "key": "Content-Type",
                "value": "application/json",
                "type": "text"
              }
            ],
            "url": {
              "raw": "{{base_url}}/v5/tot/reason",
              "host": [
                "{{base_url}}"
              ],
              "path": [
                "v5",
                "tot",
                "reason"
              ]
            },
            "description": "Tot Reason"
          },
          "response": []
        },
        {
          "name": "POST /v5/usage/record",
          "request": {
            "method": "POST",
            "header": [
              {
                "key": "Authorization",
                "value": "Bearer {{api_key}}",
                "type": "text"
              },
              {
                "key": "Content-Type",
                "value": "application/json",
                "type": "text"
              }
            ],
            "url": {
              "raw": "{{base_url}}/v5/usage/record",
              "host": [
                "{{base_url}}"
              ],
              "path": [
                "v5",
                "usage",
                "record"
              ]
            },
            "description": "Usage Record"
          },
          "response": []
        },
        {
          "name": "GET /v5/usage/{api_key}",
          "request": {
            "method": "GET",
            "header": [
              {
                "key": "Authorization",
                "value": "Bearer {{api_key}}",
                "type": "text"
              },
              {
                "key": "Content-Type",
                "value": "application/json",
                "type": "text"
              }
            ],
            "url": {
              "raw": "{{base_url}}/v5/usage/{api_key}",
              "host": [
                "{{base_url}}"
              ],
              "path": [
                "v5",
                "usage",
                "{api_key}"
              ]
            },
            "description": "Usage Get"
          },
          "response": []
        },
        {
          "name": "POST /v5/workflows",
          "request": {
            "method": "POST",
            "header": [
              {
                "key": "Authorization",
                "value": "Bearer {{api_key}}",
                "type": "text"
              },
              {
                "key": "Content-Type",
                "value": "application/json",
                "type": "text"
              }
            ],
            "url": {
              "raw": "{{base_url}}/v5/workflows",
              "host": [
                "{{base_url}}"
              ],
              "path": [
                "v5",
                "workflows"
              ]
            },
            "description": "Workflow Create"
          },
          "response": []
        },
        {
          "name": "GET /v5/workflows",
          "request": {
            "method": "GET",
            "header": [
              {
                "key": "Authorization",
                "value": "Bearer {{api_key}}",
                "type": "text"
              },
              {
                "key": "Content-Type",
                "value": "application/json",
                "type": "text"
              }
            ],
            "url": {
              "raw": "{{base_url}}/v5/workflows",
              "host": [
                "{{base_url}}"
              ],
              "path": [
                "v5",
                "workflows"
              ]
            },
            "description": "Workflow List"
          },
          "response": []
        },
        {
          "name": "GET /v5/workflows/{name}",
          "request": {
            "method": "GET",
            "header": [
              {
                "key": "Authorization",
                "value": "Bearer {{api_key}}",
                "type": "text"
              },
              {
                "key": "Content-Type",
                "value": "application/json",
                "type": "text"
              }
            ],
            "url": {
              "raw": "{{base_url}}/v5/workflows/{name}",
              "host": [
                "{{base_url}}"
              ],
              "path": [
                "v5",
                "workflows",
                "{name}"
              ]
            },
            "description": "Workflow Get"
          },
          "response": []
        },
        {
          "name": "DELETE /v5/workflows/{name}",
          "request": {
            "method": "DELETE",
            "header": [
              {
                "key": "Authorization",
                "value": "Bearer {{api_key}}",
                "type": "text"
              },
              {
                "key": "Content-Type",
                "value": "application/json",
                "type": "text"
              }
            ],
            "url": {
              "raw": "{{base_url}}/v5/workflows/{name}",
              "host": [
                "{{base_url}}"
              ],
              "path": [
                "v5",
                "workflows",
                "{name}"
              ]
            },
            "description": "Workflow Delete"
          },
          "response": []
        },
        {
          "name": "POST /v5/workflows/{name}/run",
          "request": {
            "method": "POST",
            "header": [
              {
                "key": "Authorization",
                "value": "Bearer {{api_key}}",
                "type": "text"
              },
              {
                "key": "Content-Type",
                "value": "application/json",
                "type": "text"
              }
            ],
            "url": {
              "raw": "{{base_url}}/v5/workflows/{name}/run",
              "host": [
                "{{base_url}}"
              ],
              "path": [
                "v5",
                "workflows",
                "{name}",
                "run"
              ]
            },
            "description": "Workflow Execute"
          },
          "response": []
        },
        {
          "name": "GET /v5/workflows/{name}/runs",
          "request": {
            "method": "GET",
            "header": [
              {
                "key": "Authorization",
                "value": "Bearer {{api_key}}",
                "type": "text"
              },
              {
                "key": "Content-Type",
                "value": "application/json",
                "type": "text"
              }
            ],
            "url": {
              "raw": "{{base_url}}/v5/workflows/{name}/runs",
              "host": [
                "{{base_url}}"
              ],
              "path": [
                "v5",
                "workflows",
                "{name}",
                "runs"
              ]
            },
            "description": "Workflow List Runs"
          },
          "response": []
        }
      ]
    },
    {
      "name": "Intelligence API (api.openrout.ing)",
      "item": [
        {
          "name": "GET /v1/system-status",
          "request": {
            "method": "GET",
            "header": [
              {
                "key": "Authorization",
                "value": "Bearer {{api_key}}",
                "type": "text"
              },
              {
                "key": "Content-Type",
                "value": "application/json",
                "type": "text"
              }
            ],
            "url": {
              "raw": "{{intel_url}}/v1/system-status",
              "host": [
                "{{intel_url}}"
              ],
              "path": [
                "v1",
                "system-status"
              ]
            },
            "description": "System Status"
          },
          "response": []
        },
        {
          "name": "GET /v1/agents",
          "request": {
            "method": "GET",
            "header": [
              {
                "key": "Authorization",
                "value": "Bearer {{api_key}}",
                "type": "text"
              },
              {
                "key": "Content-Type",
                "value": "application/json",
                "type": "text"
              }
            ],
            "url": {
              "raw": "{{intel_url}}/v1/agents",
              "host": [
                "{{intel_url}}"
              ],
              "path": [
                "v1",
                "agents"
              ]
            },
            "description": "List Agents (904)"
          },
          "response": []
        },
        {
          "name": "GET /v1/agents/{agent_id}",
          "request": {
            "method": "GET",
            "header": [
              {
                "key": "Authorization",
                "value": "Bearer {{api_key}}",
                "type": "text"
              },
              {
                "key": "Content-Type",
                "value": "application/json",
                "type": "text"
              }
            ],
            "url": {
              "raw": "{{intel_url}}/v1/agents/{agent_id}",
              "host": [
                "{{intel_url}}"
              ],
              "path": [
                "v1",
                "agents",
                "{agent_id}"
              ]
            },
            "description": "Get Agent"
          },
          "response": []
        },
        {
          "name": "POST /v1/agents/create",
          "request": {
            "method": "POST",
            "header": [
              {
                "key": "Authorization",
                "value": "Bearer {{api_key}}",
                "type": "text"
              },
              {
                "key": "Content-Type",
                "value": "application/json",
                "type": "text"
              }
            ],
            "url": {
              "raw": "{{intel_url}}/v1/agents/create",
              "host": [
                "{{intel_url}}"
              ],
              "path": [
                "v1",
                "agents",
                "create"
              ]
            },
            "description": "Create Agent"
          },
          "response": []
        },
        {
          "name": "POST /v1/agents/{agent_id}/chat",
          "request": {
            "method": "POST",
            "header": [
              {
                "key": "Authorization",
                "value": "Bearer {{api_key}}",
                "type": "text"
              },
              {
                "key": "Content-Type",
                "value": "application/json",
                "type": "text"
              }
            ],
            "url": {
              "raw": "{{intel_url}}/v1/agents/{agent_id}/chat",
              "host": [
                "{{intel_url}}"
              ],
              "path": [
                "v1",
                "agents",
                "{agent_id}",
                "chat"
              ]
            },
            "description": "Agent Chat"
          },
          "response": []
        },
        {
          "name": "GET /v1/agents/{agent_id}/recall",
          "request": {
            "method": "GET",
            "header": [
              {
                "key": "Authorization",
                "value": "Bearer {{api_key}}",
                "type": "text"
              },
              {
                "key": "Content-Type",
                "value": "application/json",
                "type": "text"
              }
            ],
            "url": {
              "raw": "{{intel_url}}/v1/agents/{agent_id}/recall",
              "host": [
                "{{intel_url}}"
              ],
              "path": [
                "v1",
                "agents",
                "{agent_id}",
                "recall"
              ]
            },
            "description": "Recall Memory"
          },
          "response": []
        },
        {
          "name": "POST /v1/agents/{agent_id}/remember",
          "request": {
            "method": "POST",
            "header": [
              {
                "key": "Authorization",
                "value": "Bearer {{api_key}}",
                "type": "text"
              },
              {
                "key": "Content-Type",
                "value": "application/json",
                "type": "text"
              }
            ],
            "url": {
              "raw": "{{intel_url}}/v1/agents/{agent_id}/remember",
              "host": [
                "{{intel_url}}"
              ],
              "path": [
                "v1",
                "agents",
                "{agent_id}",
                "remember"
              ]
            },
            "description": "Store Memory"
          },
          "response": []
        },
        {
          "name": "GET /v1/agents/{agent_id}/recommend",
          "request": {
            "method": "GET",
            "header": [
              {
                "key": "Authorization",
                "value": "Bearer {{api_key}}",
                "type": "text"
              },
              {
                "key": "Content-Type",
                "value": "application/json",
                "type": "text"
              }
            ],
            "url": {
              "raw": "{{intel_url}}/v1/agents/{agent_id}/recommend",
              "host": [
                "{{intel_url}}"
              ],
              "path": [
                "v1",
                "agents",
                "{agent_id}",
                "recommend"
              ]
            },
            "description": "Recommend"
          },
          "response": []
        },
        {
          "name": "GET /v1/workflows",
          "request": {
            "method": "GET",
            "header": [
              {
                "key": "Authorization",
                "value": "Bearer {{api_key}}",
                "type": "text"
              },
              {
                "key": "Content-Type",
                "value": "application/json",
                "type": "text"
              }
            ],
            "url": {
              "raw": "{{intel_url}}/v1/workflows",
              "host": [
                "{{intel_url}}"
              ],
              "path": [
                "v1",
                "workflows"
              ]
            },
            "description": "List Workflows"
          },
          "response": []
        },
        {
          "name": "POST /v1/workflows/{template_id}/execute",
          "request": {
            "method": "POST",
            "header": [
              {
                "key": "Authorization",
                "value": "Bearer {{api_key}}",
                "type": "text"
              },
              {
                "key": "Content-Type",
                "value": "application/json",
                "type": "text"
              }
            ],
            "url": {
              "raw": "{{intel_url}}/v1/workflows/{template_id}/execute",
              "host": [
                "{{intel_url}}"
              ],
              "path": [
                "v1",
                "workflows",
                "{template_id}",
                "execute"
              ]
            },
            "description": "Execute Workflow"
          },
          "response": []
        },
        {
          "name": "POST /v1/delegate",
          "request": {
            "method": "POST",
            "header": [
              {
                "key": "Authorization",
                "value": "Bearer {{api_key}}",
                "type": "text"
              },
              {
                "key": "Content-Type",
                "value": "application/json",
                "type": "text"
              }
            ],
            "url": {
              "raw": "{{intel_url}}/v1/delegate",
              "host": [
                "{{intel_url}}"
              ],
              "path": [
                "v1",
                "delegate"
              ]
            },
            "description": "Delegate Task"
          },
          "response": []
        },
        {
          "name": "POST /v1/collaborate",
          "request": {
            "method": "POST",
            "header": [
              {
                "key": "Authorization",
                "value": "Bearer {{api_key}}",
                "type": "text"
              },
              {
                "key": "Content-Type",
                "value": "application/json",
                "type": "text"
              }
            ],
            "url": {
              "raw": "{{intel_url}}/v1/collaborate",
              "host": [
                "{{intel_url}}"
              ],
              "path": [
                "v1",
                "collaborate"
              ]
            },
            "description": "Collaborate"
          },
          "response": []
        },
        {
          "name": "GET /v1/marketplace",
          "request": {
            "method": "GET",
            "header": [
              {
                "key": "Authorization",
                "value": "Bearer {{api_key}}",
                "type": "text"
              },
              {
                "key": "Content-Type",
                "value": "application/json",
                "type": "text"
              }
            ],
            "url": {
              "raw": "{{intel_url}}/v1/marketplace",
              "host": [
                "{{intel_url}}"
              ],
              "path": [
                "v1",
                "marketplace"
              ]
            },
            "description": "List Marketplace"
          },
          "response": []
        },
        {
          "name": "GET /v1/health-check",
          "request": {
            "method": "GET",
            "header": [
              {
                "key": "Authorization",
                "value": "Bearer {{api_key}}",
                "type": "text"
              },
              {
                "key": "Content-Type",
                "value": "application/json",
                "type": "text"
              }
            ],
            "url": {
              "raw": "{{intel_url}}/v1/health-check",
              "host": [
                "{{intel_url}}"
              ],
              "path": [
                "v1",
                "health-check"
              ]
            },
            "description": "Health Check"
          },
          "response": []
        },
        {
          "name": "GET /v1/keys/verify",
          "request": {
            "method": "GET",
            "header": [
              {
                "key": "Authorization",
                "value": "Bearer {{api_key}}",
                "type": "text"
              },
              {
                "key": "Content-Type",
                "value": "application/json",
                "type": "text"
              }
            ],
            "url": {
              "raw": "{{intel_url}}/v1/keys/verify",
              "host": [
                "{{intel_url}}"
              ],
              "path": [
                "v1",
                "keys",
                "verify"
              ]
            },
            "description": "Verify Key"
          },
          "response": []
        },
        {
          "name": "GET /v1/reputation",
          "request": {
            "method": "GET",
            "header": [
              {
                "key": "Authorization",
                "value": "Bearer {{api_key}}",
                "type": "text"
              },
              {
                "key": "Content-Type",
                "value": "application/json",
                "type": "text"
              }
            ],
            "url": {
              "raw": "{{intel_url}}/v1/reputation",
              "host": [
                "{{intel_url}}"
              ],
              "path": [
                "v1",
                "reputation"
              ]
            },
            "description": "Reputation"
          },
          "response": []
        },
        {
          "name": "POST /v1/abtest/create",
          "request": {
            "method": "POST",
            "header": [
              {
                "key": "Authorization",
                "value": "Bearer {{api_key}}",
                "type": "text"
              },
              {
                "key": "Content-Type",
                "value": "application/json",
                "type": "text"
              }
            ],
            "url": {
              "raw": "{{intel_url}}/v1/abtest/create",
              "host": [
                "{{intel_url}}"
              ],
              "path": [
                "v1",
                "abtest",
                "create"
              ]
            },
            "description": "Create A/B Test"
          },
          "response": []
        },
        {
          "name": "GET /v1/heatmap",
          "request": {
            "method": "GET",
            "header": [
              {
                "key": "Authorization",
                "value": "Bearer {{api_key}}",
                "type": "text"
              },
              {
                "key": "Content-Type",
                "value": "application/json",
                "type": "text"
              }
            ],
            "url": {
              "raw": "{{intel_url}}/v1/heatmap",
              "host": [
                "{{intel_url}}"
              ],
              "path": [
                "v1",
                "heatmap"
              ]
            },
            "description": "Agent Heatmap"
          },
          "response": []
        },
        {
          "name": "GET /v1/costs",
          "request": {
            "method": "GET",
            "header": [
              {
                "key": "Authorization",
                "value": "Bearer {{api_key}}",
                "type": "text"
              },
              {
                "key": "Content-Type",
                "value": "application/json",
                "type": "text"
              }
            ],
            "url": {
              "raw": "{{intel_url}}/v1/costs",
              "host": [
                "{{intel_url}}"
              ],
              "path": [
                "v1",
                "costs"
              ]
            },
            "description": "Cost Analysis"
          },
          "response": []
        },
        {
          "name": "GET /v1/performance",
          "request": {
            "method": "GET",
            "header": [
              {
                "key": "Authorization",
                "value": "Bearer {{api_key}}",
                "type": "text"
              },
              {
                "key": "Content-Type",
                "value": "application/json",
                "type": "text"
              }
            ],
            "url": {
              "raw": "{{intel_url}}/v1/performance",
              "host": [
                "{{intel_url}}"
              ],
              "path": [
                "v1",
                "performance"
              ]
            },
            "description": "Performance"
          },
          "response": []
        }
      ]
    }
  ]
}