> For clean Markdown of any page, append .md to the page URL.
> For a complete documentation index, see https://docs.nvidia.com/nemo-platform/llms.txt.
> For AI client integration (Claude Code, Cursor, etc.), connect to the MCP server at https://docs.nvidia.com/nemo-platform/_mcp/server.

# List all projects

GET https://host.com/apis/entities/v2/workspaces/{workspace}/projects

List all projects in a workspace with pagination.

Query Parameters:
- page, page_size: Pagination
- sort: Sort field
- filter: Advanced filters

Example:
```
GET /apis/entities/v2/workspaces/default/projects?sort=-created_at&page=1&page_size=10
```

Reference: https://docs.nvidia.com/nemo-platform/nemo-platform/documentation/reference/api-reference/entity-store/list-projects-apis-entities-v-2-workspaces-workspace-projects-get

## OpenAPI Specification

```yaml
openapi: 3.1.0
info:
  title: Nemo Platform API
  version: 1.0.0
paths:
  /apis/entities/v2/workspaces/{workspace}/projects:
    get:
      operationId: list-projects-apis-entities-v-2-workspaces-workspace-projects-get
      summary: List all projects
      description: >-
        List all projects in a workspace with pagination.


        Query Parameters:

        - page, page_size: Pagination

        - sort: Sort field

        - filter: Advanced filters


        Example:

        ```

        GET
        /apis/entities/v2/workspaces/default/projects?sort=-created_at&page=1&page_size=10

        ```
      tags:
        - subpackage_entityStore
      parameters:
        - name: workspace
          in: path
          required: true
          schema:
            type: string
        - name: page
          in: query
          description: Page number
          required: false
          schema:
            type: integer
            default: 1
        - name: page_size
          in: query
          description: Items per page
          required: false
          schema:
            type: integer
            default: 100
        - name: sort
          in: query
          description: Sort field
          required: false
          schema:
            $ref: '#/components/schemas/ProjectSortField'
            default: '-created_at'
        - name: filter
          in: query
          description: >-
            Query filter expression. Supports text and JSON syntaxes:

            - Text: name:"value" AND status>500 with operators : ~ > >= < <= IN
            NOT IN AND OR and negation prefix -

            - Object (JSON): {"name":{"$like":"value"}} with operators $eq,
            $like, $lt, $lte, $gt, $gte, $in, $nin, $and, $or, $not

            - Bracket notation: ?filter[name][$like]=value

            - Relationship traversal: ?filter[relationship][$exists]=true or
            ?filter[relationship][field]=value
          required: false
          schema:
            type: string
      responses:
        '200':
          description: Successful Response
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/ProjectsPage'
        '422':
          description: Validation Error
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/HTTPValidationError'
servers:
  - url: https://host.com
    description: Default
components:
  schemas:
    ProjectSortField:
      type: string
      enum:
        - created_at
        - '-created_at'
        - updated_at
        - '-updated_at'
        - name
        - '-name'
      description: Fields available for sorting project results.
      title: ProjectSortField
    Project:
      type: object
      properties:
        id:
          type: string
          description: Unique identifier
        name:
          type: string
          description: Project name
        workspace:
          type: string
          description: Workspace identifier
        description:
          type: string
          description: Project description
        created_at:
          type: string
          format: date-time
          description: Creation timestamp
        updated_at:
          type: string
          format: date-time
          description: Last update timestamp
      required:
        - id
        - name
        - workspace
        - created_at
        - updated_at
      description: Schema for Project responses.
      title: Project
    PaginationData:
      type: object
      properties:
        page:
          type: integer
          description: The current page number.
        page_size:
          type: integer
          description: The page size used for the query.
        current_page_size:
          type: integer
          description: The size for the current page.
        total_pages:
          type: integer
          description: The total number of pages.
        total_results:
          type: integer
          description: The total number of results.
      required:
        - page
        - page_size
        - current_page_size
        - total_pages
        - total_results
      title: PaginationData
    ProjectsPage:
      type: object
      properties:
        data:
          type: array
          items:
            $ref: '#/components/schemas/Project'
        pagination:
          $ref: '#/components/schemas/PaginationData'
          description: Pagination information.
        sort:
          type: string
          description: The field on which the results are sorted.
        filter:
          type: object
          additionalProperties:
            description: Any type
          description: Filtering information.
      required:
        - data
      title: ProjectsPage
    ValidationErrorLocItems:
      oneOf:
        - type: string
        - type: integer
      title: ValidationErrorLocItems
    ValidationError:
      type: object
      properties:
        loc:
          type: array
          items:
            $ref: '#/components/schemas/ValidationErrorLocItems'
        msg:
          type: string
        type:
          type: string
        input:
          description: Any type
        ctx:
          type: object
          additionalProperties:
            description: Any type
      required:
        - loc
        - msg
        - type
      title: ValidationError
    HTTPValidationError:
      type: object
      properties:
        detail:
          type: array
          items:
            $ref: '#/components/schemas/ValidationError'
      title: HTTPValidationError

```

## Examples



**Request**

```json
{}
```

**Response**

```json
{
  "data": [
    {
      "id": "a3f1c9d2-7b4e-4f8a-9c3d-2e5b7f9a1d6c",
      "name": "Customer Analytics Dashboard",
      "workspace": "marketing-team",
      "created_at": "2024-01-15T09:30:00Z",
      "updated_at": "2024-01-20T14:45:00Z",
      "description": "Dashboard project for tracking customer engagement metrics"
    }
  ],
  "pagination": {
    "page": 1,
    "page_size": 10,
    "current_page_size": 1,
    "total_pages": 3,
    "total_results": 25
  },
  "sort": "-created_at",
  "filter": {}
}
```

**SDK Code**

```python
import requests

url = "https://host.com/apis/entities/v2/workspaces/workspace/projects"

payload = {}
headers = {"Content-Type": "application/json"}

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

print(response.json())
```

```javascript
const url = 'https://host.com/apis/entities/v2/workspaces/workspace/projects';
const options = {method: 'GET', headers: {'Content-Type': 'application/json'}, body: '{}'};

try {
  const response = await fetch(url, options);
  const data = await response.json();
  console.log(data);
} catch (error) {
  console.error(error);
}
```

```go
package main

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

func main() {

	url := "https://host.com/apis/entities/v2/workspaces/workspace/projects"

	payload := strings.NewReader("{}")

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

	req.Header.Add("Content-Type", "application/json")

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

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

	fmt.Println(res)
	fmt.Println(string(body))

}
```

```ruby
require 'uri'
require 'net/http'

url = URI("https://host.com/apis/entities/v2/workspaces/workspace/projects")

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

request = Net::HTTP::Get.new(url)
request["Content-Type"] = 'application/json'
request.body = "{}"

response = http.request(request)
puts response.read_body
```

```java
import com.mashape.unirest.http.HttpResponse;
import com.mashape.unirest.http.Unirest;

HttpResponse<String> response = Unirest.get("https://host.com/apis/entities/v2/workspaces/workspace/projects")
  .header("Content-Type", "application/json")
  .body("{}")
  .asString();
```

```php
<?php
require_once('vendor/autoload.php');

$client = new \GuzzleHttp\Client();

$response = $client->request('GET', 'https://host.com/apis/entities/v2/workspaces/workspace/projects', [
  'body' => '{}',
  'headers' => [
    'Content-Type' => 'application/json',
  ],
]);

echo $response->getBody();
```

```csharp
using RestSharp;

var client = new RestClient("https://host.com/apis/entities/v2/workspaces/workspace/projects");
var request = new RestRequest(Method.GET);
request.AddHeader("Content-Type", "application/json");
request.AddParameter("application/json", "{}", ParameterType.RequestBody);
IRestResponse response = client.Execute(request);
```

```swift
import Foundation

let headers = ["Content-Type": "application/json"]
let parameters = [] as [String : Any]

let postData = JSONSerialization.data(withJSONObject: parameters, options: [])

let request = NSMutableURLRequest(url: NSURL(string: "https://host.com/apis/entities/v2/workspaces/workspace/projects")! as URL,
                                        cachePolicy: .useProtocolCachePolicy,
                                    timeoutInterval: 10.0)
request.httpMethod = "GET"
request.allHTTPHeaderFields = headers
request.httpBody = postData as Data

let session = URLSession.shared
let dataTask = session.dataTask(with: request as URLRequest, completionHandler: { (data, response, error) -> Void in
  if (error != nil) {
    print(error as Any)
  } else {
    let httpResponse = response as? HTTPURLResponse
    print(httpResponse)
  }
})

dataTask.resume()
```