CrewAI Cloud · Schema

CrewAI AMP Kickoff Status

Response payload for GET /status/{kickoff_id} on a CrewAI AMP per-crew endpoint.

AI AgentsAI Agent PlatformAgent OrchestrationMulti-Agent SystemsAgent Management PlatformManaged AgentsAutomationsObservabilityHuman-in-the-Loop
View JSON Schema on GitHub

JSON Schema

crewai-cloud-status-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "https://raw.githubusercontent.com/api-evangelist/crewai-cloud/main/json-schema/crewai-cloud-status-schema.json",
  "title": "CrewAI AMP Kickoff Status",
  "description": "Response payload for GET /status/{kickoff_id} on a CrewAI AMP per-crew endpoint.",
  "oneOf": [
    {
      "type": "object",
      "required": ["status"],
      "properties": {
        "status": { "const": "running" },
        "current_task": { "type": "string" },
        "progress": {
          "type": "object",
          "properties": {
            "completed_tasks": { "type": "integer", "minimum": 0 },
            "total_tasks": { "type": "integer", "minimum": 0 }
          }
        }
      }
    },
    {
      "type": "object",
      "required": ["status"],
      "properties": {
        "status": { "const": "completed" },
        "execution_time": { "type": "number" },
        "result": {
          "type": "object",
          "properties": {
            "output": { "type": "string" },
            "tasks": {
              "type": "array",
              "items": {
                "type": "object",
                "properties": {
                  "task_id": { "type": "string" },
                  "agent": { "type": "string" },
                  "output": { "type": "string" },
                  "execution_time": { "type": "number" }
                }
              }
            }
          }
        }
      }
    },
    {
      "type": "object",
      "required": ["status"],
      "properties": {
        "status": { "const": "error" },
        "error": { "type": "string" },
        "execution_time": { "type": "number" }
      }
    }
  ]
}

Work with this as data

Every JSON Schema here is available over the APIs.io API and to AI agents over MCP.

MCP server

One button, every client — Claude, Cursor, VS Code and the rest.

https://apis.io/mcp

Tools for schemas

4 MCP tools reach this
  • find_json_schemasBrowse and filter every JSON Schema in the catalog.
  • apis_io_searchSTART HERE — APIs, providers and tags for one query, each with its total.
  • resolveTurn a domain, URL or GitHub org into the provider it belongs to.
  • find_cohortsEvery scored population of providers in the catalog.
All 92 tools →

Call it yourself

curl for this page
This JSON Schema
curl "https://apis.io/api/v1/json-schemas/crewai-cloud-status"
All schemas
curl "https://apis.io/api/v1/json-schemas?limit=25"

Discovery needs no key. Ratings and market analysis are Pro.

Get an API key

Free tier, no form to fill in. Signing in shares your email address with us — we store it to create your key and to recognise you if you sign in with another provider. See our Privacy Policy and Terms.

A second provider on the same verified email joins the account you already have.