Skip to main content
GET
/
api
/
v1
/
projects
List projects
import requests

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

headers = {"X-API-Key": "<api-key>"}

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

print(response.text)
[
  {
    "id": "3c90c3cc-0d44-4b50-8888-8dd25736052a",
    "name": "<string>",
    "organization_id": "3c90c3cc-0d44-4b50-8888-8dd25736052a",
    "created_by_user_id": "3c90c3cc-0d44-4b50-8888-8dd25736052a",
    "is_active": true,
    "created_at": "2023-11-07T05:31:56Z",
    "updated_at": "2023-11-07T05:31:56Z"
  }
]

Authorizations

X-API-Key
string
header
required

Memic API key. Every key is bound to exactly one environment — get one from the Memic dashboard under API Keys.

Response

Successful Response

id
string<uuid>
required
name
string
required
organization_id
string<uuid>
required
created_by_user_id
string<uuid>
required
is_active
boolean
required
created_at
string<date-time>
required
updated_at
string<date-time>
required