---
title: "List available projects"
method: GET
path: "/project"
tags: ["Project"]
---

# List available projects

`GET /project`

Lists available projects

## Query parameters

- `page` integer — Page number - used for pagination
- `limit` integer — Page limit - used to limit the result set to a number of records per page
- `sort` string — Allows to sort the results by single field
- `filter` string — Allows filtering results using odata filter syntax

## Response `200`

Ok

- ProjectListResponse
  - `_links` object, required — A collection of Hypermedia Application Language (HATEOS) links
    - `previous` string, uri — When using pagination, The URI link to the previous page of results
    - `next` string, uri — When using pagination, The URI link to the next page of results
    - `last` string, uri — When using pagination, The URI link to the last page of results
    - `first` string, uri — When using pagination, the URI link to the first page of results
    - `self` string, uri, required — The URI link to the current resource
  - `_pagination` object, required — Pagination metadata
    - `totalPages` integer, required — Total pages available
    - `totalRecords` integer, required — Total results available
    - `pageSize` integer, required — Page size
    - `records` integer, required — The count of records returned in the current page
    - `pageNumber` integer, required — Current pagination page number
  - `data` BaseProject[], required — List of projects
    - `id` integer, required — ID is a generic type that is used to represent a unique identifier
    - `name` string, required — Project name
    - `url` string, uri — Project url
    - `logo` string, uri — Logo url
    - `isArchived` boolean, required — If true, the project has been archived An archived project is not accessible in Userback and will eventually be deleted
    - `created` string, date-time, required — The date and time when the project was created in RFC 3339 format
    - `createdBy` integer, required — ID is a generic type that is used to represent a unique identifier

## Other responses

- `401` — Not Authorized
- `422` — Validation Error
- `429` — Too Many Requests
- `500` — Interal Server Error

---

[API](https://skmtc.net/userback/apis/userback-rest-api.md) · [All operations](https://skmtc.net/userback/apis/userback-rest-api/llms.txt) · [OpenAPI document](https://skmtc-service-staging.skmtc.workers.dev/v1/apis/userback/userback-rest-api/versions/7fb30e1173ca/schema)
