Skip to main content
GET
/
api
/
v1
/
projects
List projects
curl --request GET \
  --url https://api.dualship.run/api/v1/projects \
  --header 'Authorization: Bearer <token>' \
  --header 'X-Workspace-Id: <x-workspace-id>'
{
  "projects": [
    {
      "created_at": "2024-01-15T10:30:00Z",
      "description": "API backend for mobile app",
      "id": "550e8400-e29b-41d4-a716-446655440000",
      "name": "My API Project",
      "organization_id": "550e8400-e29b-41d4-a716-446655440001",
      "slug": "my-api-project",
      "status": "active",
      "updated_at": "2024-01-15T10:30:00Z"
    }
  ]
}

Authorizations

Authorization
string
header
required

JWT Bearer token authentication

Headers

X-Workspace-Id
string
required

Workspace ID

Response

List of projects

List of projects

projects
object[]