GET
/
api
/
v1
/
orgs
/
organizations
/
{org_id}
/
projects
/
{project_id}
# To use the Python SDK, install the package:
# pip install mem0ai

from mem0 import MemoryClient

client = MemoryClient(api_key="your_api_key", org_id="your_org_id", project_id="your_project_id")

response = client.get_project()
print(response)
{
  "id": 123,
  "project_id": "<string>",
  "name": "<string>",
  "description": "<string>",
  "created_at": "2023-11-07T05:31:56Z",
  "updated_at": "2023-11-07T05:31:56Z",
  "members": [
    {
      "username": "<string>",
      "role": "<string>"
    }
  ]
}

Authorizations

Authorization
string
header
required

API key authentication. Prefix your Mem0 API key with 'Token '. Example: 'Token your_api_key'

Path Parameters

org_id
string
required

Unique identifier of the organization

project_id
string
required

Unique identifier of the project

Response

200
application/json
Successful response
id
integer

Unique numeric identifier of the project

project_id
string

Unique string identifier of the project

name
string

Name of the project

description
string

Description of the project

created_at
string

Timestamp of when the project was created

updated_at
string

Timestamp of when the project was last updated

members
object[]

List of members belonging to the project