GET
/
api
/
v1
/
projects
List all projects
curl --request GET \
  --url https://app.miget.com/api/v1/projects \
  --header 'Authorization: <api-key>'
[
  {
    "uuid": 123,
    "name": "<string>",
    "description": "<string>",
    "created_at": "2023-11-07T05:31:56Z",
    "updated_at": "2023-11-07T05:31:56Z"
  }
]

Authorizations

Authorization
string
header
required

Bearer token for authentication. Format: 'Bearer {token}'

Headers

X-Workspace-Id
string

Workspace ID (uses default workspace if not provided)

Response

List all projects

uuid
integer<int32>
required

Project UUID

name
string
required

Project name

description
string
required

Project description

created_at
string<date-time>
required

Creation timestamp

updated_at
string<date-time>
required

Last update timestamp