{
  "schemaVersion": "1.0",
  "item": {
    "slug": "manus-api",
    "name": "Manus",
    "source": "tencent",
    "type": "skill",
    "category": "开发工具",
    "sourceUrl": "https://clawhub.ai/byungkyu/manus-api",
    "canonicalUrl": "https://clawhub.ai/byungkyu/manus-api",
    "targetPlatform": "OpenClaw"
  },
  "install": {
    "downloadMode": "redirect",
    "downloadUrl": "/downloads/manus-api",
    "sourceDownloadUrl": "https://wry-manatee-359.convex.site/api/v1/download?slug=manus-api",
    "sourcePlatform": "tencent",
    "targetPlatform": "OpenClaw",
    "installMethod": "Manual import",
    "extraction": "Extract archive",
    "prerequisites": [
      "OpenClaw"
    ],
    "packageFormat": "ZIP package",
    "includedAssets": [
      "SKILL.md",
      "LICENSE.txt"
    ],
    "primaryDoc": "SKILL.md",
    "quickSetup": [
      "Download the package from Yavira.",
      "Extract the archive and review SKILL.md first.",
      "Import or place the package into your OpenClaw setup."
    ],
    "agentAssist": {
      "summary": "Hand the extracted package to your coding agent with a concrete install brief instead of figuring it out manually.",
      "steps": [
        "Download the package from Yavira.",
        "Extract it into a folder your agent can access.",
        "Paste one of the prompts below and point your agent at the extracted folder."
      ],
      "prompts": [
        {
          "label": "New install",
          "body": "I downloaded a skill package from Yavira. Read SKILL.md from the extracted folder and install it by following the included instructions. Tell me what you changed and call out any manual steps you could not complete."
        },
        {
          "label": "Upgrade existing",
          "body": "I downloaded an updated skill package from Yavira. Read SKILL.md from the extracted folder, compare it with my current installation, and upgrade it while preserving any custom configuration unless the package docs explicitly say otherwise. Summarize what changed and any follow-up checks I should run."
        }
      ]
    },
    "sourceHealth": {
      "source": "tencent",
      "status": "healthy",
      "reason": "direct_download_ok",
      "recommendedAction": "download",
      "checkedAt": "2026-04-30T16:55:25.780Z",
      "expiresAt": "2026-05-07T16:55:25.780Z",
      "httpStatus": 200,
      "finalUrl": "https://wry-manatee-359.convex.site/api/v1/download?slug=network",
      "contentType": "application/zip",
      "probeMethod": "head",
      "details": {
        "probeUrl": "https://wry-manatee-359.convex.site/api/v1/download?slug=network",
        "contentDisposition": "attachment; filename=\"network-1.0.0.zip\"",
        "redirectLocation": null,
        "bodySnippet": null
      },
      "scope": "source",
      "summary": "Source download looks usable.",
      "detail": "Yavira can redirect you to the upstream package for this source.",
      "primaryActionLabel": "Download for OpenClaw",
      "primaryActionHref": "/downloads/manus-api"
    },
    "validation": {
      "installChecklist": [
        "Use the Yavira download entry.",
        "Review SKILL.md after the package is downloaded.",
        "Confirm the extracted package contains the expected setup assets."
      ],
      "postInstallChecks": [
        "Confirm the extracted package includes the expected docs or setup files.",
        "Validate the skill or prompts are available in your target agent workspace.",
        "Capture any manual follow-up steps the agent could not complete."
      ]
    },
    "downloadPageUrl": "https://openagent3.xyz/downloads/manus-api",
    "agentPageUrl": "https://openagent3.xyz/skills/manus-api/agent",
    "manifestUrl": "https://openagent3.xyz/skills/manus-api/agent.json",
    "briefUrl": "https://openagent3.xyz/skills/manus-api/agent.md"
  },
  "agentAssist": {
    "summary": "Hand the extracted package to your coding agent with a concrete install brief instead of figuring it out manually.",
    "steps": [
      "Download the package from Yavira.",
      "Extract it into a folder your agent can access.",
      "Paste one of the prompts below and point your agent at the extracted folder."
    ],
    "prompts": [
      {
        "label": "New install",
        "body": "I downloaded a skill package from Yavira. Read SKILL.md from the extracted folder and install it by following the included instructions. Tell me what you changed and call out any manual steps you could not complete."
      },
      {
        "label": "Upgrade existing",
        "body": "I downloaded an updated skill package from Yavira. Read SKILL.md from the extracted folder, compare it with my current installation, and upgrade it while preserving any custom configuration unless the package docs explicitly say otherwise. Summarize what changed and any follow-up checks I should run."
      }
    ]
  },
  "documentation": {
    "source": "clawhub",
    "primaryDoc": "SKILL.md",
    "sections": [
      {
        "title": "Manus",
        "body": "Access the Manus AI Agent API with managed API key authentication. Create and manage AI agent tasks, projects, files, and webhooks."
      },
      {
        "title": "Quick Start",
        "body": "# Create a task\npython <<'EOF'\nimport urllib.request, os, json\ndata = json.dumps({'prompt': 'What is the capital of France?'}).encode()\nreq = urllib.request.Request('https://gateway.maton.ai/manus/v1/tasks', data=data, method='POST')\nreq.add_header('Authorization', f'Bearer {os.environ[\"MATON_API_KEY\"]}')\nreq.add_header('Content-Type', 'application/json')\nprint(json.dumps(json.load(urllib.request.urlopen(req)), indent=2))\nEOF"
      },
      {
        "title": "Base URL",
        "body": "https://gateway.maton.ai/manus/{native-api-path}\n\nReplace {native-api-path} with the actual Manus API endpoint path. The gateway proxies requests to api.manus.ai and automatically injects your API key."
      },
      {
        "title": "Authentication",
        "body": "All requests require the Maton API key in the Authorization header:\n\nAuthorization: Bearer $MATON_API_KEY\n\nEnvironment Variable: Set your API key as MATON_API_KEY:\n\nexport MATON_API_KEY=\"YOUR_API_KEY\""
      },
      {
        "title": "Getting Your API Key",
        "body": "Sign in or create an account at maton.ai\nGo to maton.ai/settings\nCopy your API key"
      },
      {
        "title": "Connection Management",
        "body": "Manage your Manus API key connections at https://ctrl.maton.ai."
      },
      {
        "title": "List Connections",
        "body": "python <<'EOF'\nimport urllib.request, os, json\nreq = urllib.request.Request('https://ctrl.maton.ai/connections?app=manus&status=ACTIVE')\nreq.add_header('Authorization', f'Bearer {os.environ[\"MATON_API_KEY\"]}')\nprint(json.dumps(json.load(urllib.request.urlopen(req)), indent=2))\nEOF"
      },
      {
        "title": "Create Connection",
        "body": "python <<'EOF'\nimport urllib.request, os, json\ndata = json.dumps({'app': 'manus'}).encode()\nreq = urllib.request.Request('https://ctrl.maton.ai/connections', data=data, method='POST')\nreq.add_header('Authorization', f'Bearer {os.environ[\"MATON_API_KEY\"]}')\nreq.add_header('Content-Type', 'application/json')\nprint(json.dumps(json.load(urllib.request.urlopen(req)), indent=2))\nEOF"
      },
      {
        "title": "Get Connection",
        "body": "python <<'EOF'\nimport urllib.request, os, json\nreq = urllib.request.Request('https://ctrl.maton.ai/connections/{connection_id}')\nreq.add_header('Authorization', f'Bearer {os.environ[\"MATON_API_KEY\"]}')\nprint(json.dumps(json.load(urllib.request.urlopen(req)), indent=2))\nEOF\n\nResponse:\n\n{\n  \"connection\": {\n    \"connection_id\": \"f85eb0d5-87d6-41a7-8271-0449d3e407bd\",\n    \"status\": \"ACTIVE\",\n    \"creation_time\": \"2026-02-28T00:12:24.030143Z\",\n    \"last_updated_time\": \"2026-02-28T00:16:08.920760Z\",\n    \"url\": \"https://connect.maton.ai/?session_token=...\",\n    \"app\": \"manus\",\n    \"metadata\": {},\n    \"method\": \"API_KEY\"\n  }\n}\n\nOpen the returned url in a browser to enter your Manus API key."
      },
      {
        "title": "Delete Connection",
        "body": "python <<'EOF'\nimport urllib.request, os, json\nreq = urllib.request.Request('https://ctrl.maton.ai/connections/{connection_id}', method='DELETE')\nreq.add_header('Authorization', f'Bearer {os.environ[\"MATON_API_KEY\"]}')\nprint(json.dumps(json.load(urllib.request.urlopen(req)), indent=2))\nEOF"
      },
      {
        "title": "Specifying Connection",
        "body": "If you have multiple Manus connections, specify which one to use with the Maton-Connection header:\n\npython <<'EOF'\nimport urllib.request, os, json\nreq = urllib.request.Request('https://gateway.maton.ai/manus/v1/tasks')\nreq.add_header('Authorization', f'Bearer {os.environ[\"MATON_API_KEY\"]}')\nreq.add_header('Maton-Connection', 'f85eb0d5-87d6-41a7-8271-0449d3e407bd')\nprint(json.dumps(json.load(urllib.request.urlopen(req)), indent=2))\nEOF\n\nIf omitted, the gateway uses the default (oldest) active connection."
      },
      {
        "title": "Projects",
        "body": "List Projects\n\nGET /manus/v1/projects\n\nResponse:\n\n{\n  \"object\": \"list\",\n  \"data\": [\n    {\n      \"id\": \"SJhyBaLtYgQwurQoaT5APi\",\n      \"name\": \"My Project\"\n    }\n  ]\n}\n\nCreate Project\n\nPOST /manus/v1/projects\nContent-Type: application/json\n\n{\n  \"name\": \"My Project\",\n  \"default_instructions\": \"You are a helpful assistant.\"\n}\n\nResponse:\n\n{\n  \"id\": \"SJhyBaLtYgQwurQoaT5APi\",\n  \"object\": \"project\",\n  \"name\": \"My Project\",\n  \"created_at\": \"1772238309\"\n}"
      },
      {
        "title": "Tasks",
        "body": "List Tasks\n\nGET /manus/v1/tasks\n\nResponse:\n\n{\n  \"object\": \"list\",\n  \"data\": [\n    {\n      \"id\": \"X7PPAMPNRovuyTXejNeEpv\",\n      \"object\": \"task\",\n      \"created_at\": \"1772191227\",\n      \"updated_at\": \"1772191230\",\n      \"status\": \"completed\",\n      \"model\": \"manus-1.6-lite-adaptive\",\n      \"metadata\": {\n        \"task_title\": \"What is 2+2?\",\n        \"task_url\": \"https://manus.im/app/X7PPAMPNRovuyTXejNeEpv\"\n      },\n      \"output\": [...],\n      \"credit_usage\": 0\n    }\n  ]\n}\n\nGet Task\n\nGET /manus/v1/tasks/{task_id}\n\nResponse:\n\n{\n  \"id\": \"X7PPAMPNRovuyTXejNeEpv\",\n  \"object\": \"task\",\n  \"created_at\": \"1772191227\",\n  \"updated_at\": \"1772191230\",\n  \"status\": \"completed\",\n  \"model\": \"manus-1.6-lite-adaptive\",\n  \"metadata\": {\n    \"task_title\": \"What is 2+2?\",\n    \"task_url\": \"https://manus.im/app/X7PPAMPNRovuyTXejNeEpv\"\n  },\n  \"output\": [\n    {\n      \"id\": \"J9LlYFIfTlMWvR5hrC9FUL\",\n      \"status\": \"completed\",\n      \"role\": \"user\",\n      \"type\": \"message\",\n      \"content\": [\n        {\n          \"type\": \"output_text\",\n          \"text\": \"What is 2+2? Reply in one word.\"\n        }\n      ]\n    },\n    {\n      \"id\": \"kR8Tj0ys7uwzorcSgzqMvZ\",\n      \"status\": \"completed\",\n      \"role\": \"assistant\",\n      \"type\": \"message\",\n      \"content\": [\n        {\n          \"type\": \"output_text\",\n          \"text\": \"Four\"\n        }\n      ]\n    }\n  ],\n  \"credit_usage\": 0\n}\n\nTask status values: pending, running, completed, failed\n\nCreate Task\n\nPOST /manus/v1/tasks\nContent-Type: application/json\n\n{\n  \"prompt\": \"What is the capital of France?\"\n}\n\nOptional fields:\n\nproject_id (string): Associate task with a project\nfile_ids (array): Attach files to the task\n\nResponse:\n\n{\n  \"task_id\": \"3cbKzkyC9WwRoMwAH8dKuY\",\n  \"task_title\": \"Capital of France?\",\n  \"task_url\": \"https://manus.im/app/3cbKzkyC9WwRoMwAH8dKuY\"\n}\n\nDelete Task\n\nDELETE /manus/v1/tasks/{task_id}\n\nResponse:\n\n{\n  \"id\": \"3cbKzkyC9WwRoMwAH8dKuY\",\n  \"object\": \"file\",\n  \"deleted\": true\n}"
      },
      {
        "title": "Files",
        "body": "List Files\n\nGET /manus/v1/files\n\nReturns the 10 most recently uploaded files.\n\nResponse:\n\n{\n  \"object\": \"list\",\n  \"data\": [\n    {\n      \"id\": \"file-2Gpoz5yhB8seSu9dxZdquR\",\n      \"object\": \"file\",\n      \"filename\": \"test.txt\",\n      \"status\": \"pending\",\n      \"created_at\": \"1772238309\",\n      \"expires_at\": \"1772411109\"\n    }\n  ]\n}\n\nFile status values: pending, ready, expired\n\nGet File\n\nGET /manus/v1/files/{file_id}\n\nResponse:\n\n{\n  \"id\": \"file-2Gpoz5yhB8seSu9dxZdquR\",\n  \"object\": \"file\",\n  \"filename\": \"test.txt\",\n  \"status\": \"pending\",\n  \"created_at\": \"1772238309\",\n  \"expires_at\": \"1772411109\"\n}\n\nCreate File\n\nCreates a file record and returns a presigned S3 upload URL.\n\nPOST /manus/v1/files\nContent-Type: application/json\n\n{\n  \"filename\": \"document.pdf\"\n}\n\nResponse:\n\n{\n  \"id\": \"file-2Gpoz5yhB8seSu9dxZdquR\",\n  \"object\": \"file\",\n  \"filename\": \"document.pdf\",\n  \"status\": \"pending\",\n  \"upload_url\": \"https://vida-private.s3.us-east-1.amazonaws.com/...\",\n  \"upload_expires_at\": \"1772238489\",\n  \"created_at\": \"1772238309\"\n}\n\nUpload your file to the upload_url using a PUT request within the expiration time.\n\nDelete File\n\nDELETE /manus/v1/files/{file_id}\n\nResponse:\n\n{\n  \"id\": \"file-2Gpoz5yhB8seSu9dxZdquR\",\n  \"object\": \"file\",\n  \"deleted\": true\n}"
      },
      {
        "title": "Webhooks",
        "body": "Create Webhook\n\nRegister a webhook URL to receive task lifecycle notifications.\n\nPOST /manus/v1/webhooks\nContent-Type: application/json\n\n{\n  \"webhook\": {\n    \"url\": \"https://example.com/webhook\"\n  }\n}\n\nResponse:\n\n{\n  \"webhook_id\": \"J4dD3mwzZiWuJFiEWAvGnK\"\n}\n\nDelete Webhook\n\nDELETE /manus/v1/webhooks/{webhook_id}\n\nResponse:\n\n{}"
      },
      {
        "title": "JavaScript",
        "body": "// Create a task\nconst response = await fetch(\n  'https://gateway.maton.ai/manus/v1/tasks',\n  {\n    method: 'POST',\n    headers: {\n      'Authorization': `Bearer ${process.env.MATON_API_KEY}`,\n      'Content-Type': 'application/json'\n    },\n    body: JSON.stringify({ prompt: 'Summarize the latest news' })\n  }\n);\nconst data = await response.json();\nconsole.log(data.task_url);"
      },
      {
        "title": "Python",
        "body": "import os\nimport requests\n\n# Create a task\nresponse = requests.post(\n    'https://gateway.maton.ai/manus/v1/tasks',\n    headers={\n        'Authorization': f'Bearer {os.environ[\"MATON_API_KEY\"]}',\n        'Content-Type': 'application/json'\n    },\n    json={'prompt': 'Summarize the latest news'}\n)\ntask = response.json()\nprint(task['task_url'])"
      },
      {
        "title": "Notes",
        "body": "Tasks are executed asynchronously. Use GET /manus/v1/tasks/{task_id} to poll for completion or set up a webhook\nFile uploads use presigned S3 URLs that expire within 3 minutes\nFiles expire after ~48 hours if not used\nWebhook payloads are signed with RSA-SHA256 for verification\nAvailable models: manus-1.6, manus-1.6-lite, manus-1.6-max, manus-1.5, manus-1.5-lite, speed\nConnection uses API_KEY authentication method (not OAuth)"
      },
      {
        "title": "Error Handling",
        "body": "StatusMeaning400Invalid request (missing required fields, invalid format)401Invalid or missing Maton API key404Resource not found4xx/5xxPassthrough error from Manus API"
      },
      {
        "title": "Troubleshooting: API Key Issues",
        "body": "Check that the MATON_API_KEY environment variable is set:\n\necho $MATON_API_KEY\n\nVerify the API key is valid by listing connections:\n\npython <<'EOF'\nimport urllib.request, os, json\nreq = urllib.request.Request('https://ctrl.maton.ai/connections')\nreq.add_header('Authorization', f'Bearer {os.environ[\"MATON_API_KEY\"]}')\nprint(json.dumps(json.load(urllib.request.urlopen(req)), indent=2))\nEOF"
      },
      {
        "title": "Troubleshooting: Invalid App Name",
        "body": "Ensure your URL path starts with manus. For example:\n\nCorrect: https://gateway.maton.ai/manus/v1/tasks\nIncorrect: https://gateway.maton.ai/v1/tasks"
      },
      {
        "title": "Resources",
        "body": "Manus API Overview\nManus API Reference\nManus Website\nMaton Community\nMaton Support"
      }
    ],
    "body": "Manus\n\nAccess the Manus AI Agent API with managed API key authentication. Create and manage AI agent tasks, projects, files, and webhooks.\n\nQuick Start\n# Create a task\npython <<'EOF'\nimport urllib.request, os, json\ndata = json.dumps({'prompt': 'What is the capital of France?'}).encode()\nreq = urllib.request.Request('https://gateway.maton.ai/manus/v1/tasks', data=data, method='POST')\nreq.add_header('Authorization', f'Bearer {os.environ[\"MATON_API_KEY\"]}')\nreq.add_header('Content-Type', 'application/json')\nprint(json.dumps(json.load(urllib.request.urlopen(req)), indent=2))\nEOF\n\nBase URL\nhttps://gateway.maton.ai/manus/{native-api-path}\n\n\nReplace {native-api-path} with the actual Manus API endpoint path. The gateway proxies requests to api.manus.ai and automatically injects your API key.\n\nAuthentication\n\nAll requests require the Maton API key in the Authorization header:\n\nAuthorization: Bearer $MATON_API_KEY\n\n\nEnvironment Variable: Set your API key as MATON_API_KEY:\n\nexport MATON_API_KEY=\"YOUR_API_KEY\"\n\nGetting Your API Key\nSign in or create an account at maton.ai\nGo to maton.ai/settings\nCopy your API key\nConnection Management\n\nManage your Manus API key connections at https://ctrl.maton.ai.\n\nList Connections\npython <<'EOF'\nimport urllib.request, os, json\nreq = urllib.request.Request('https://ctrl.maton.ai/connections?app=manus&status=ACTIVE')\nreq.add_header('Authorization', f'Bearer {os.environ[\"MATON_API_KEY\"]}')\nprint(json.dumps(json.load(urllib.request.urlopen(req)), indent=2))\nEOF\n\nCreate Connection\npython <<'EOF'\nimport urllib.request, os, json\ndata = json.dumps({'app': 'manus'}).encode()\nreq = urllib.request.Request('https://ctrl.maton.ai/connections', data=data, method='POST')\nreq.add_header('Authorization', f'Bearer {os.environ[\"MATON_API_KEY\"]}')\nreq.add_header('Content-Type', 'application/json')\nprint(json.dumps(json.load(urllib.request.urlopen(req)), indent=2))\nEOF\n\nGet Connection\npython <<'EOF'\nimport urllib.request, os, json\nreq = urllib.request.Request('https://ctrl.maton.ai/connections/{connection_id}')\nreq.add_header('Authorization', f'Bearer {os.environ[\"MATON_API_KEY\"]}')\nprint(json.dumps(json.load(urllib.request.urlopen(req)), indent=2))\nEOF\n\n\nResponse:\n\n{\n  \"connection\": {\n    \"connection_id\": \"f85eb0d5-87d6-41a7-8271-0449d3e407bd\",\n    \"status\": \"ACTIVE\",\n    \"creation_time\": \"2026-02-28T00:12:24.030143Z\",\n    \"last_updated_time\": \"2026-02-28T00:16:08.920760Z\",\n    \"url\": \"https://connect.maton.ai/?session_token=...\",\n    \"app\": \"manus\",\n    \"metadata\": {},\n    \"method\": \"API_KEY\"\n  }\n}\n\n\nOpen the returned url in a browser to enter your Manus API key.\n\nDelete Connection\npython <<'EOF'\nimport urllib.request, os, json\nreq = urllib.request.Request('https://ctrl.maton.ai/connections/{connection_id}', method='DELETE')\nreq.add_header('Authorization', f'Bearer {os.environ[\"MATON_API_KEY\"]}')\nprint(json.dumps(json.load(urllib.request.urlopen(req)), indent=2))\nEOF\n\nSpecifying Connection\n\nIf you have multiple Manus connections, specify which one to use with the Maton-Connection header:\n\npython <<'EOF'\nimport urllib.request, os, json\nreq = urllib.request.Request('https://gateway.maton.ai/manus/v1/tasks')\nreq.add_header('Authorization', f'Bearer {os.environ[\"MATON_API_KEY\"]}')\nreq.add_header('Maton-Connection', 'f85eb0d5-87d6-41a7-8271-0449d3e407bd')\nprint(json.dumps(json.load(urllib.request.urlopen(req)), indent=2))\nEOF\n\n\nIf omitted, the gateway uses the default (oldest) active connection.\n\nAPI Reference\nProjects\nList Projects\nGET /manus/v1/projects\n\n\nResponse:\n\n{\n  \"object\": \"list\",\n  \"data\": [\n    {\n      \"id\": \"SJhyBaLtYgQwurQoaT5APi\",\n      \"name\": \"My Project\"\n    }\n  ]\n}\n\nCreate Project\nPOST /manus/v1/projects\nContent-Type: application/json\n\n{\n  \"name\": \"My Project\",\n  \"default_instructions\": \"You are a helpful assistant.\"\n}\n\n\nResponse:\n\n{\n  \"id\": \"SJhyBaLtYgQwurQoaT5APi\",\n  \"object\": \"project\",\n  \"name\": \"My Project\",\n  \"created_at\": \"1772238309\"\n}\n\nTasks\nList Tasks\nGET /manus/v1/tasks\n\n\nResponse:\n\n{\n  \"object\": \"list\",\n  \"data\": [\n    {\n      \"id\": \"X7PPAMPNRovuyTXejNeEpv\",\n      \"object\": \"task\",\n      \"created_at\": \"1772191227\",\n      \"updated_at\": \"1772191230\",\n      \"status\": \"completed\",\n      \"model\": \"manus-1.6-lite-adaptive\",\n      \"metadata\": {\n        \"task_title\": \"What is 2+2?\",\n        \"task_url\": \"https://manus.im/app/X7PPAMPNRovuyTXejNeEpv\"\n      },\n      \"output\": [...],\n      \"credit_usage\": 0\n    }\n  ]\n}\n\nGet Task\nGET /manus/v1/tasks/{task_id}\n\n\nResponse:\n\n{\n  \"id\": \"X7PPAMPNRovuyTXejNeEpv\",\n  \"object\": \"task\",\n  \"created_at\": \"1772191227\",\n  \"updated_at\": \"1772191230\",\n  \"status\": \"completed\",\n  \"model\": \"manus-1.6-lite-adaptive\",\n  \"metadata\": {\n    \"task_title\": \"What is 2+2?\",\n    \"task_url\": \"https://manus.im/app/X7PPAMPNRovuyTXejNeEpv\"\n  },\n  \"output\": [\n    {\n      \"id\": \"J9LlYFIfTlMWvR5hrC9FUL\",\n      \"status\": \"completed\",\n      \"role\": \"user\",\n      \"type\": \"message\",\n      \"content\": [\n        {\n          \"type\": \"output_text\",\n          \"text\": \"What is 2+2? Reply in one word.\"\n        }\n      ]\n    },\n    {\n      \"id\": \"kR8Tj0ys7uwzorcSgzqMvZ\",\n      \"status\": \"completed\",\n      \"role\": \"assistant\",\n      \"type\": \"message\",\n      \"content\": [\n        {\n          \"type\": \"output_text\",\n          \"text\": \"Four\"\n        }\n      ]\n    }\n  ],\n  \"credit_usage\": 0\n}\n\n\nTask status values: pending, running, completed, failed\n\nCreate Task\nPOST /manus/v1/tasks\nContent-Type: application/json\n\n{\n  \"prompt\": \"What is the capital of France?\"\n}\n\n\nOptional fields:\n\nproject_id (string): Associate task with a project\nfile_ids (array): Attach files to the task\n\nResponse:\n\n{\n  \"task_id\": \"3cbKzkyC9WwRoMwAH8dKuY\",\n  \"task_title\": \"Capital of France?\",\n  \"task_url\": \"https://manus.im/app/3cbKzkyC9WwRoMwAH8dKuY\"\n}\n\nDelete Task\nDELETE /manus/v1/tasks/{task_id}\n\n\nResponse:\n\n{\n  \"id\": \"3cbKzkyC9WwRoMwAH8dKuY\",\n  \"object\": \"file\",\n  \"deleted\": true\n}\n\nFiles\nList Files\nGET /manus/v1/files\n\n\nReturns the 10 most recently uploaded files.\n\nResponse:\n\n{\n  \"object\": \"list\",\n  \"data\": [\n    {\n      \"id\": \"file-2Gpoz5yhB8seSu9dxZdquR\",\n      \"object\": \"file\",\n      \"filename\": \"test.txt\",\n      \"status\": \"pending\",\n      \"created_at\": \"1772238309\",\n      \"expires_at\": \"1772411109\"\n    }\n  ]\n}\n\n\nFile status values: pending, ready, expired\n\nGet File\nGET /manus/v1/files/{file_id}\n\n\nResponse:\n\n{\n  \"id\": \"file-2Gpoz5yhB8seSu9dxZdquR\",\n  \"object\": \"file\",\n  \"filename\": \"test.txt\",\n  \"status\": \"pending\",\n  \"created_at\": \"1772238309\",\n  \"expires_at\": \"1772411109\"\n}\n\nCreate File\n\nCreates a file record and returns a presigned S3 upload URL.\n\nPOST /manus/v1/files\nContent-Type: application/json\n\n{\n  \"filename\": \"document.pdf\"\n}\n\n\nResponse:\n\n{\n  \"id\": \"file-2Gpoz5yhB8seSu9dxZdquR\",\n  \"object\": \"file\",\n  \"filename\": \"document.pdf\",\n  \"status\": \"pending\",\n  \"upload_url\": \"https://vida-private.s3.us-east-1.amazonaws.com/...\",\n  \"upload_expires_at\": \"1772238489\",\n  \"created_at\": \"1772238309\"\n}\n\n\nUpload your file to the upload_url using a PUT request within the expiration time.\n\nDelete File\nDELETE /manus/v1/files/{file_id}\n\n\nResponse:\n\n{\n  \"id\": \"file-2Gpoz5yhB8seSu9dxZdquR\",\n  \"object\": \"file\",\n  \"deleted\": true\n}\n\nWebhooks\nCreate Webhook\n\nRegister a webhook URL to receive task lifecycle notifications.\n\nPOST /manus/v1/webhooks\nContent-Type: application/json\n\n{\n  \"webhook\": {\n    \"url\": \"https://example.com/webhook\"\n  }\n}\n\n\nResponse:\n\n{\n  \"webhook_id\": \"J4dD3mwzZiWuJFiEWAvGnK\"\n}\n\nDelete Webhook\nDELETE /manus/v1/webhooks/{webhook_id}\n\n\nResponse:\n\n{}\n\nCode Examples\nJavaScript\n// Create a task\nconst response = await fetch(\n  'https://gateway.maton.ai/manus/v1/tasks',\n  {\n    method: 'POST',\n    headers: {\n      'Authorization': `Bearer ${process.env.MATON_API_KEY}`,\n      'Content-Type': 'application/json'\n    },\n    body: JSON.stringify({ prompt: 'Summarize the latest news' })\n  }\n);\nconst data = await response.json();\nconsole.log(data.task_url);\n\nPython\nimport os\nimport requests\n\n# Create a task\nresponse = requests.post(\n    'https://gateway.maton.ai/manus/v1/tasks',\n    headers={\n        'Authorization': f'Bearer {os.environ[\"MATON_API_KEY\"]}',\n        'Content-Type': 'application/json'\n    },\n    json={'prompt': 'Summarize the latest news'}\n)\ntask = response.json()\nprint(task['task_url'])\n\nNotes\nTasks are executed asynchronously. Use GET /manus/v1/tasks/{task_id} to poll for completion or set up a webhook\nFile uploads use presigned S3 URLs that expire within 3 minutes\nFiles expire after ~48 hours if not used\nWebhook payloads are signed with RSA-SHA256 for verification\nAvailable models: manus-1.6, manus-1.6-lite, manus-1.6-max, manus-1.5, manus-1.5-lite, speed\nConnection uses API_KEY authentication method (not OAuth)\nError Handling\nStatus\tMeaning\n400\tInvalid request (missing required fields, invalid format)\n401\tInvalid or missing Maton API key\n404\tResource not found\n4xx/5xx\tPassthrough error from Manus API\nTroubleshooting: API Key Issues\nCheck that the MATON_API_KEY environment variable is set:\necho $MATON_API_KEY\n\nVerify the API key is valid by listing connections:\npython <<'EOF'\nimport urllib.request, os, json\nreq = urllib.request.Request('https://ctrl.maton.ai/connections')\nreq.add_header('Authorization', f'Bearer {os.environ[\"MATON_API_KEY\"]}')\nprint(json.dumps(json.load(urllib.request.urlopen(req)), indent=2))\nEOF\n\nTroubleshooting: Invalid App Name\n\nEnsure your URL path starts with manus. For example:\n\nCorrect: https://gateway.maton.ai/manus/v1/tasks\nIncorrect: https://gateway.maton.ai/v1/tasks\nResources\nManus API Overview\nManus API Reference\nManus Website\nMaton Community\nMaton Support"
  },
  "trust": {
    "sourceLabel": "tencent",
    "provenanceUrl": "https://clawhub.ai/byungkyu/manus-api",
    "publisherUrl": "https://clawhub.ai/byungkyu/manus-api",
    "owner": "byungkyu",
    "version": "1.0.0",
    "license": null,
    "verificationStatus": "Indexed source record"
  },
  "links": {
    "detailUrl": "https://openagent3.xyz/skills/manus-api",
    "downloadUrl": "https://openagent3.xyz/downloads/manus-api",
    "agentUrl": "https://openagent3.xyz/skills/manus-api/agent",
    "manifestUrl": "https://openagent3.xyz/skills/manus-api/agent.json",
    "briefUrl": "https://openagent3.xyz/skills/manus-api/agent.md"
  }
}