Skip to main content
GET
/
api
/
crew-templates
List Templates
curl --request GET \
  --url https://api.example.com/api/crew-templates \
  --header 'Authorization: Bearer <token>'
[
  {
    "id": "<string>",
    "name": "<string>",
    "description": "<string>",
    "crew_config": {
      "agents": [
        {
          "role": "<string>",
          "goal": "<string>",
          "backstory": "<string>",
          "id": "<string>",
          "verbose": false,
          "allow_delegation": false,
          "tools": [],
          "use_default_mcps": true
        }
      ],
      "tasks": [
        {
          "description": "<string>",
          "agent_index": 0,
          "expected_output": "",
          "tools": []
        }
      ],
      "id": "<string>",
      "verbose": false,
      "process": "sequential"
    },
    "tags": [
      "<string>"
    ],
    "is_shared": true,
    "created_by": "<string>",
    "updated_by": "<string>",
    "created_at": "<string>",
    "updated_at": "<string>"
  }
]

Documentation Index

Fetch the complete documentation index at: https://docs.nx1cloud.com/llms.txt

Use this file to discover all available pages before exploring further.

Authorizations

Authorization
string
header
required

The access token received from the authorization server in the OAuth 2.0 flow.

Response

200 - application/json

Successful Response

id
string
required
name
string
required
description
string
required
crew_config
CrewConfig · object
required

Configuration model for a CrewAI crew with agents and tasks.

Attributes: id (str | None): Optional unique identifier for the crew. agents (List[AgentConfig]): List of agent configurations that make up the crew. tasks (List[TaskConfig]): List of task configurations to be executed by the crew. verbose (bool): Whether to enable detailed logging output. Defaults to False. process (str): Execution process type for tasks. Defaults to "sequential".

tags
string[]
required
is_shared
boolean
required
created_by
string
required
updated_by
string
required
created_at
string
required
updated_at
string
required