cURL
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 } ] }
Retrieves a list of all projects in your account.
curl -X GET "https://api.manus.ai/v1/projects?limit=100" \ -H "API_KEY: your-api-key"
{ "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 } ] }
Maximum number of projects to return. Default: 100, Range: 1-1000.
Projects retrieved successfully.
Show child attributes
Was this page helpful?