Skip to main content
GET
/
applications
/
v1
/
projects
List projects
curl --request GET \
  --url https://api.case.dev/applications/v1/projects \
  --header 'Authorization: Bearer <token>'
{
  "projects": [
    {
      "id": "<string>",
      "name": "<string>",
      "vercelProjectId": "<string>",
      "gitRepo": "<string>",
      "gitBranch": "<string>",
      "framework": "<string>",
      "status": "<string>",
      "domains": [
        {
          "id": "<string>",
          "domain": "<string>",
          "isPrimary": true,
          "isVerified": true
        }
      ],
      "createdAt": "<string>",
      "updatedAt": "<string>"
    }
  ]
}

Authorizations

Authorization
string
header
required

API key starting with sk_case_

Response

200 - application/json

List of projects

projects
object[]