FruxonDocs
AgentsCore

Lists the Agents canonically owned by an Application.

Returns only the Agents whose canonical owner is the Application in the route — unlike `GET /v1/tenants/{tenant}/agents`, which spans every Application the caller can reach. The response is cursor-paginated and the caller needs at least the Viewer role on the Application. Returns 404 if the Application does not exist or is not accessible.

GET
/v1/tenants/{tenant}/networks/{network}/agents
AuthorizationBearer <token>

JWT Authorization header using the Bearer scheme. Enter 'Bearer' [space] and then your token.

In: header

Path Parameters

network*string

Id of the owning Application.

Formatuuid
tenant*string

The tenant identifier

Query Parameters

PageSize?integer

The maximum number of items to return per page

Formatint32
PageToken.Skip?integer
Formatint32
PageToken.Cursor?string

Opaque cursor token from an external system (e.g. RAG API). When set, M:Fruxon.Common.Collections.PageToken.AsString returns this value directly instead of encoding Fruxon.Common.Collections.PageToken.Skip.

search?string

Optional case-insensitive substring filter matched against the Agent id, display name, and description. Omit for the unfiltered list.

tags?array<string>

Optional tag filter (repeatable). Agents carrying any of the supplied tags match. Use GET .../agents/facets to discover the available tags.

shape?string

Optional flow-shape filter. Narrows to Agents whose current deployed revision has that structural Fruxon.Model.Agents.FlowShape. Omit for all shapes.

Value in"UNSPECIFIED" | "AGENT" | "WORKFLOW" | "TOOL_ONLY" | "EMPTY" | "INVALID"

Response Body

curl -X GET "https://api.fruxon.com/v1/tenants/string/networks/497f6eca-6276-4993-bfeb-53cbbbba6f08/agents"
{
  "items": [
    {
      "id": "string",
      "displayName": "string",
      "description": "string",
      "avatarFileId": "string",
      "tags": [
        "string"
      ],
      "type": "SUMMARIZATION",
      "enabled": false,
      "enabledBeforeDeletion": false,
      "currentRevision": 0,
      "shape": "AGENT",
      "runnableType": "AGENT",
      "createdAt": 0,
      "modifiedAt": 0,
      "tenantId": "00000000-0000-0000-0000-000000000000",
      "networkId": "00000000-0000-0000-0000-000000000000",
      "solutionId": "string",
      "deletedAt": 0,
      "evaluationMetrics": [],
      "origin": "NATIVE",
      "externalConfig": {
        "parameters": {}
      },
      "redactLlmMessages": false
    }
  ],
  "nextPageToken": "string",
  "totalCount": 0
}
Empty
Empty
{
  "type": "string",
  "title": "string",
  "status": 0,
  "detail": "string",
  "instance": "string",
  "property1": null,
  "property2": null
}