Skip to main content
GET
/
v1
/
projects
ListProjects
curl --request GET \
  --url https://api.manus.ai/v1/projects \
  --header 'API_KEY: <api-key>'
import requests

url = "https://api.manus.ai/v1/projects"

headers = {"API_KEY": "<api-key>"}

response = requests.get(url, headers=headers)

print(response.text)
const options = {method: 'GET', headers: {API_KEY: '<api-key>'}};

fetch('https://api.manus.ai/v1/projects', options)
.then(res => res.json())
.then(res => console.log(res))
.catch(err => console.error(err));
<?php

$curl = curl_init();

curl_setopt_array($curl, [
CURLOPT_URL => "https://api.manus.ai/v1/projects",
CURLOPT_RETURNTRANSFER => true,
CURLOPT_ENCODING => "",
CURLOPT_MAXREDIRS => 10,
CURLOPT_TIMEOUT => 30,
CURLOPT_HTTP_VERSION => CURL_HTTP_VERSION_1_1,
CURLOPT_CUSTOMREQUEST => "GET",
CURLOPT_HTTPHEADER => [
"API_KEY: <api-key>"
],
]);

$response = curl_exec($curl);
$err = curl_error($curl);

curl_close($curl);

if ($err) {
echo "cURL Error #:" . $err;
} else {
echo $response;
}
package main

import (
"fmt"
"net/http"
"io"
)

func main() {

url := "https://api.manus.ai/v1/projects"

req, _ := http.NewRequest("GET", url, nil)

req.Header.Add("API_KEY", "<api-key>")

res, _ := http.DefaultClient.Do(req)

defer res.Body.Close()
body, _ := io.ReadAll(res.Body)

fmt.Println(string(body))

}
HttpResponse<String> response = Unirest.get("https://api.manus.ai/v1/projects")
.header("API_KEY", "<api-key>")
.asString();
require 'uri'
require 'net/http'

url = URI("https://api.manus.ai/v1/projects")

http = Net::HTTP.new(url.host, url.port)
http.use_ssl = true

request = Net::HTTP::Get.new(url)
request["API_KEY"] = '<api-key>'

response = http.request(request)
puts response.read_body
{
  "data": [
    {
      "id": "<string>",
      "name": "<string>",
      "instruction": "<string>",
      "created_at": 123
    }
  ]
}
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[]