---
title: "List projects"
method: GET
path: "/api/v1/projects"
tags: ["Projects"]
---

# List projects

`GET /api/v1/projects`

List all projects for the authenticated account.

## Query parameters

- `limit` integer
- `offset` integer

## Response `200`

List of projects

- object
  - `success` boolean
  - `data` Project[]
    - `id` string, uuid, required — Unique project identifier
    - `account_id` string, uuid, required — Account this project belongs to
    - `name` string, required — Project name
    - `slug` string, required — URL-friendly project identifier
    - `description` string — Project description
    - `default_region` 'us-east', required — Default region for resources in this project
    - `is_default` boolean, required — Whether this is the account's default project
    - `is_active` boolean, required — Whether the project is active
    - `created_by` string, uuid — User who created the project
    - `created_at` string, date-time, required
    - `updated_at` string, date-time, required
  - `total` integer — Total number of projects

## Other responses

- `401` — Authentication required

---

[API](https://skmtc.dev/rafftechnologies/apis/raff-api.md) · [All operations](https://skmtc.dev/rafftechnologies/apis/raff-api/llms.txt) · [OpenAPI document](https://skmtc-service-production.skmtc.workers.dev/v1/apis/rafftechnologies/raff-api/revisions/2f4df56be77c/schema)
