Skip to main content
GET
/
v1
/
projects
ListProjects
curl --request GET \
  --url https://api.manus.ai/v1/projects \
  --header 'API_KEY: <api-key>'
{
  "data": [
    {
      "id": "<string>",
      "name": "<string>",
      "instruction": "<string>",
      "created_at": 123
    }
  ]
}

Documentation Index

Fetch the complete documentation index at: https://open.manus.ai/docs/llms.txt

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

API v1 is deprecated and will be removed in the future. Please migrate to API v2 for new features and long-term support.
Retrieve a list of all projects in your account with optional pagination.

Query Parameters

  • limit: Maximum number of projects to return (default: 100, range: 1-1000)

Example Request

curl -X GET "https://api.manus.ai/v1/projects?limit=100" \
  -H "API_KEY: your-api-key"

Example Response

{
  "data": [
    {
      "id": "proj_abc123",
      "name": "My Research Project",
      "instruction": "You must always cite your sources",
      "created_at": 1699900000
    },
    {
      "id": "proj_def456",
      "name": "Customer Support",
      "instruction": "Be friendly and helpful",
      "created_at": 1699800000
    }
  ]
}

Authorizations

API_KEY
string
header
required

Query Parameters

limit
integer<int32>

Maximum number of projects to return. Default: 100, Range: 1-1000.

Response

200 - application/json

Projects retrieved successfully.

data
object[]