> ## Documentation Index
> Fetch the complete documentation index at: https://docs.mem0.ai/llms.txt
> Use this file to discover all available pages before exploring further.

# Get Project

> Retrieve details of a specific project by its organization and project ID using the GET endpoint.



## OpenAPI

````yaml get /api/v1/orgs/organizations/{org_id}/projects/{project_id}/
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/{project_id}/:
    get:
      tags:
        - projects
      summary: Get project details
      description: Retrieve details of a specific project within an organization.
      operationId: get_project
      parameters:
        - name: org_id
          in: path
          required: true
          description: Unique identifier of the organization.
          schema:
            type: string
        - name: project_id
          in: path
          required: true
          description: Unique identifier of the project.
          schema:
            type: string
      responses:
        '200':
          description: Successful response.
          content:
            application/json:
              schema:
                type: object
                properties:
                  id:
                    type: integer
                    description: Unique numeric identifier of the project
                  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.
                    description: List of members belonging to the project
        '404':
          description: Organization or project not found.
          content:
            application/json:
              schema:
                type: object
                properties:
                  message:
                    type: string
                    example: Organization or project not found
      x-code-samples:
        - lang: Python
          source: |-
            # To use the Python SDK, install the package:
            # pip install mem0ai

            from mem0 import MemoryClient

            client = MemoryClient(api_key="your_api_key")

            response = client.get_project()
            print(response)
        - lang: JavaScript
          source: |-
            // To use the JavaScript SDK, install the package:
            // npm i mem0ai

            import MemoryClient from 'mem0ai';
            const client = new MemoryClient({ apiKey: "your-api-key" });

            client.getProject()
              .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/{project_id}/ \
              --header 'Authorization: Token <api-key>'
        - lang: Go
          source: "// To use the Go SDK, install the package:\n// go get github.com/mem0ai/mem0-go\n\npackage main\n\nimport (\n\t\"fmt\"\n\t\"github.com/mem0ai/mem0-go\"\n)\n\nfunc main() {\n\tclient := mem0.NewClient(\"your-api-key\")\n\n\tresponse, err := client.GetProject()\n\tif err != nil {\n\t\tfmt.Printf(\"Error: %v\\n\", err)\n\t\treturn\n\t}\n\tfmt.Printf(\"%+v\\n\", response)\n}"
        - lang: PHP
          source: |-
            <?php
            // To use the PHP SDK, install the package:
            // composer require mem0ai/mem0-php

            require_once('vendor/autoload.php');

            use Mem0\MemoryClient;

            $client = new MemoryClient('your-api-key');

            try {
                $response = $client->getProject();
                print_r($response);
            } catch (Exception $e) {
                echo 'Error: ' . $e->getMessage();
            }
        - lang: Java
          source: |-
            // To use the Java SDK, add this dependency to your pom.xml:
            // <dependency>
            //     <groupId>ai.mem0</groupId>
            //     <artifactId>mem0-java</artifactId>
            //     <version>1.0.0</version>
            // </dependency>

            import ai.mem0.MemoryClient;

            public class Example {
                public static void main(String[] args) {
                    MemoryClient client = new MemoryClient("your-api-key");
                    
                    try {
                        Object response = client.getProject();
                        System.out.println(response);
                    } catch (Exception e) {
                        System.err.println("Error: " + e.getMessage());
                    }
                }
            }
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'

````