Skip to main content
GET https://api.craftkit.dev/v1/projects
Returns every non-deleted project owned by the authenticated account, newest-created first.

Authorization

Authorization
string
required
Bearer ck_acct_… — an account key.

Response

projects
object[]
The list item is lighter than GET /v1/projects/:id — it omits updatedAt. Fetch a single project if you need it.
Only projects owned by the authenticated account are ever returned — there is no way to list or discover another account’s projects through this endpoint.
cURL
curl https://api.craftkit.dev/v1/projects \
  -H "Authorization: Bearer $CRAFTKIT_ACCOUNT_KEY"
200
{
  "projects": [
    {
      "id": "3f9b6c2e-1a2b-4c3d-9e8f-7a6b5c4d3e2f",
      "slug": "acme-corp",
      "name": "Acme Corp",
      "createdAt": "2026-06-01T09:00:00.000Z"
    }
  ]
}