---
title: "List projects"
method: GET
path: "/organizations/{organization_id}/projects"
tags: ["Organization Projects"]
---

# List projects

`GET /organizations/{organization_id}/projects`

Retrieves a list of projects for the specified organization.

## Path parameters

- `organization_id` string, ulid, required

## Query parameters

- `filter[id]` StringFilter
  - `eq` string — Equal
  - `ne` string — Not equal
  - `in` string — In (comma-separated list)
  - `nin` string — Not in (comma-separated list)
  - `between` string — Between (comma-separated list)
  - `contains` string — Contains
  - `starts` string — Starts with
  - `ends` string — Ends with
- `filter[title]` StringFilter
  - `eq` string — Equal
  - `ne` string — Not equal
  - `in` string — In (comma-separated list)
  - `nin` string — Not in (comma-separated list)
  - `between` string — Between (comma-separated list)
  - `contains` string — Contains
  - `starts` string — Starts with
  - `ends` string — Ends with
- `filter[status]` StringFilter
  - `eq` string — Equal
  - `ne` string — Not equal
  - `in` string — In (comma-separated list)
  - `nin` string — Not in (comma-separated list)
  - `between` string — Between (comma-separated list)
  - `contains` string — Contains
  - `starts` string — Starts with
  - `ends` string — Ends with
- `filter[updated_at]` DateTimeFilter
  - `eq` string — Equal
  - `ne` string — Not equal
  - `between` string — Between (comma-separated list)
  - `gt` string — Greater than
  - `gte` string — Greater than or equal
  - `lt` string — Less than
  - `lte` string — Less than or equal
- `filter[created_at]` DateTimeFilter
  - `eq` string — Equal
  - `ne` string — Not equal
  - `between` string — Between (comma-separated list)
  - `gt` string — Greater than
  - `gte` string — Greater than or equal
  - `lt` string — Less than
  - `lte` string — Less than or equal
- `page[size]` integer
- `page[before]` string
- `page[after]` string
- `sort` string

## Response `200`

OK

- object
  - `items` OrganizationProject[]
    - `id` string — The ID of the project.
    - `organization_id` string — The ID of the organization.
    - `subscription_id` string — The ID of the subscription.
    - `vendor` string — Vendor of the project.
    - `region` string — The machine name of the region where the project is located.
    - `title` string — The title of the project.
    - `type` 'grid' | 'dedicated' — The type of projects.
    - `plan` string — The project plan.
    - `timezone` string — Timezone of the project.
    - `default_branch` string — Default branch.
    - `status` 'requested' | 'active' | 'failed' | 'suspended' | 'deleted' — The status of the project.
    - `trial_plan` boolean — Whether the project is currently on a trial plan.
    - `project_ui` string — The URL for the project's user interface.
    - `locked` boolean — Locked
    - `cse_notes` string — CSE notes.
    - `dedicated_tag` string — Dedicated tag.
    - `created_at` string, date-time — The date and time when the resource was created.
    - `updated_at` string, date-time — The date and time when the resource was last updated.
    - `_links` object
      - `self` object — Link to the current project.
        - `href` string — URL of the link.
      - `update` object — Link for updating the current project.
        - `href` string — URL of the link.
        - `method` string — The HTTP method to use.
      - `delete` object — Link for deleting the current project.
        - `href` string — URL of the link.
        - `method` string — The HTTP method to use.
      - `activities` object — Link to the project's activities.
        - `href` string — URL of the link.
      - `addons` object — Link to the project's add-ons.
        - `href` string — URL of the link.
  - `_links` ListLinks
    - `self` Link — A hypermedia link to the {current, next, previous} set of items.
      - `href` string — URL of the link
    - `previous` Link — A hypermedia link to the {current, next, previous} set of items.
      - `href` string — URL of the link
    - `next` Link — A hypermedia link to the {current, next, previous} set of items.
      - `href` string — URL of the link

## Other responses

- `400` — Bad Request
- `403` — Forbidden
- `404` — Not Found

---

[API](https://skmtc.net/upsun/apis/upsun-com-rest-api.md) · [All operations](https://skmtc.net/upsun/apis/upsun-com-rest-api/llms.txt) · [OpenAPI document](https://skmtc-service-staging.skmtc.workers.dev/v1/apis/upsun/upsun-com-rest-api/revisions/6cc88fde6435/schema)
