> ## Documentation Index
> Fetch the complete documentation index at: https://mem0-feature-memo-claude-plugin-v1.mintlify.site/llms.txt
> Use this file to discover all available pages before exploring further.

# Get Projects

> Retrieve a list of all projects within an organization on the Mem0 platform using the GET endpoint.



## OpenAPI

````yaml get /api/v1/orgs/organizations/{org_id}/projects/
openapi: 3.0.1
info:
  title: Mem0 API Docs
  description: mem0.ai API Docs
  contact:
    email: support@mem0.ai
  license:
    name: Apache 2.0
  version: v1
servers:
  - url: https://api.mem0.ai/
security:
  - ApiKeyAuth: []
paths:
  /api/v1/orgs/organizations/{org_id}/projects/:
    get:
      tags:
        - projects
      summary: Get projects
      description: Retrieve a list of projects for a specific organization.
      operationId: get_projects
      parameters:
        - name: org_id
          in: path
          required: true
          description: Unique identifier of the organization.
          schema:
            type: string
      responses:
        '200':
          description: Successful response.
          content:
            application/json:
              schema:
                type: array
                items:
                  type: object
                  properties:
                    project_id:
                      type: string
                      description: Unique string identifier of the project
                    name:
                      type: string
                      description: Name of the project
                    description:
                      type: string
                      description: Description of the project
                    created_at:
                      type: string
                      format: date-time
                      description: Timestamp of when the project was created
                    updated_at:
                      type: string
                      format: date-time
                      description: Timestamp of when the project was last updated
                    members:
                      type: array
                      items:
                        type: object
                        properties:
                          username:
                            type: string
                            description: Username of the project member
                          role:
                            type: string
                            description: Role of the member in the project.
                          email:
                            type: string
                            description: Email address of the project member.
                      description: List of members belonging to the project
                    usecase:
                      type: string
                      nullable: true
                      description: Configured use case for the project.
                    memory_depth:
                      type: string
                      description: Memory extraction depth setting for this project.
                    inclusion_prompt:
                      type: string
                      nullable: true
                      description: >-
                        Custom prompt describing what should be included when
                        extracting memories.
                    exclusion_prompt:
                      type: string
                      nullable: true
                      description: >-
                        Custom prompt describing what should be excluded when
                        extracting memories.
                    custom_categories:
                      type: array
                      items:
                        type: object
                      description: >-
                        List of custom categories configured for memory
                        categorization in this project.
                    custom_instructions:
                      type: string
                      description: >-
                        Custom instructions for memory processing in this
                        project.
                    update_custom_instructions:
                      type: string
                      nullable: true
                      description: >-
                        Custom instructions applied when updating existing
                        memories.
                    summary_custom_instructions:
                      type: string
                      nullable: true
                      description: Custom instructions applied when generating summaries.
                    summary_batch_size:
                      type: integer
                      description: >-
                        Number of items processed per batch when generating
                        summaries.
                    summary_max_tokens:
                      type: integer
                      nullable: true
                      description: Maximum tokens allowed in a generated summary.
                    expiration_date:
                      type: string
                      nullable: true
                      description: >-
                        Default expiration date applied to memories created in
                        this project.
                    enable_graph:
                      type: boolean
                      description: Whether graph memory is enabled for this project.
                    multilingual:
                      type: boolean
                      description: >-
                        Whether to use the input language for memory storage and
                        retrieval.
                    version:
                      type: string
                      description: API version used by this project.
                    is_default:
                      type: boolean
                      description: Whether this is the organization's default project.
                    active_prompt_profile:
                      type: string
                      nullable: true
                      description: >-
                        Identifier of the active prompt profile for this
                        project.
                    decay:
                      type: boolean
                      description: Whether memory decay is enabled for this project.
                    user_role:
                      type: string
                      description: Role of the requesting user within this project.
      x-code-samples:
        - lang: Python
          source: >-
            import requests


            url =
            "https://api.mem0.ai/api/v1/orgs/organizations/{org_id}/projects/"


            headers = {"Authorization": "Token <api-key>"}


            response = requests.request("GET", url, headers=headers)


            print(response.text)
        - lang: JavaScript
          source: >-
            const options = {method: 'GET', headers: {Authorization: 'Token
            <api-key>'}};


            fetch('https://api.mem0.ai/api/v1/orgs/organizations/{org_id}/projects/',
            options)
              .then(response => response.json())
              .then(response => console.log(response))
              .catch(err => console.error(err));
        - lang: cURL
          source: |-
            curl --request GET \
              --url https://api.mem0.ai/api/v1/orgs/organizations/{org_id}/projects/ \
              --header 'Authorization: Token <api-key>'
        - lang: Go
          source: "package main\n\nimport (\n\t\"fmt\"\n\t\"net/http\"\n\t\"io/ioutil\"\n)\n\nfunc main() {\n\n\turl := \"https://api.mem0.ai/api/v1/orgs/organizations/{org_id}/projects/\"\n\n\treq, _ := http.NewRequest(\"GET\", url, nil)\n\n\treq.Header.Add(\"Authorization\", \"Token <api-key>\")\n\n\tres, _ := http.DefaultClient.Do(req)\n\n\tdefer res.Body.Close()\n\tbody, _ := ioutil.ReadAll(res.Body)\n\n\tfmt.Println(res)\n\tfmt.Println(string(body))\n\n}"
        - lang: PHP
          source: |-
            <?php

            $curl = curl_init();

            curl_setopt_array($curl, [
              CURLOPT_URL => "https://api.mem0.ai/api/v1/orgs/organizations/{org_id}/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 => [
                "Authorization: Token <api-key>"
              ],
            ]);

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

            curl_close($curl);

            if ($err) {
              echo "cURL Error #:" . $err;
            } else {
              echo $response;
            }
        - lang: Java
          source: >-
            HttpResponse<String> response =
            Unirest.get("https://api.mem0.ai/api/v1/orgs/organizations/{org_id}/projects/")
              .header("Authorization", "Token <api-key>")
              .asString();
components:
  securitySchemes:
    ApiKeyAuth:
      type: apiKey
      in: header
      name: Authorization
      description: >-
        API key authentication. Prefix your Mem0 API key with 'Token '. Example:
        'Token your_api_key'

````