---
title: "List Projects"
method: GET
path: "/api/v2/projects"
tags: ["V2", "Projects"]
---

# List Projects

`GET /api/v2/projects`

List projects in an organization. Requires `organization_id` or a project-scoped API key.

## Query parameters

- `organization_id` string, nullable
- `name` string, nullable
- `page_size` integer, nullable
- `page_token` string, nullable

## Cookies

- `session` string, nullable

## Response `200`

Successful Response

- ProjectQueryResponse — API query response schema for projects.
  - `items` ProjectResponse[], required — The list of items.
    - `id` string, required — The project's unique identifier.
    - `created_at` string, date-time, nullable — Creation datetime
    - `updated_at` string, date-time, nullable — Update datetime
    - `name` string, required — The project's display name.
    - `organization_id` string, required — The organization the project belongs to.
    - `is_default` boolean — Whether this project is the default project for its organization.
  - `next_page_token` string, nullable — A token, which can be sent as page_token to retrieve the next page. If this field is omitted, there are no subsequent pages.
  - `total_size` integer, nullable — The total number of items available. This is only populated when specifically requested. The value may be an estimate and can be used for display purposes only.

## Other responses

- `422` — Validation Error

---

[API](https://skmtc.net/run-llama/apis/llama-platform.md) · [All operations](https://skmtc.net/run-llama/apis/llama-platform/llms.txt) · [OpenAPI document](https://skmtc-service-staging.skmtc.workers.dev/v1/apis/run-llama/llama-platform/versions/b17341164de9/schema)
