Skip to main content
GET
/
projects
List Projects
curl --request GET \
  --url https://api.supapost.so/projects
[
  {
    "id": "uuid-1234",
    "name": "Morning Routine Carousel",
    "type": "slideshow",
    "thumbnail_url": "https://cdn.supapost.so/assets/team/thumb.jpg",
    "status": "draft",
    "created_at": "2026-04-01T12:00:00Z",
    "updated_at": "2026-04-07T15:30:00Z"
  }
]
Returns all projects for the current team, sorted by most recently updated.

Authentication

Authorization
string
Bearer token. Bearer <supabase-jwt>.

Query Parameters

type
string
Filter projects by type, e.g. "slideshow".
[
  {
    "id": "uuid-1234",
    "name": "Morning Routine Carousel",
    "type": "slideshow",
    "thumbnail_url": "https://cdn.supapost.so/assets/team/thumb.jpg",
    "status": "draft",
    "created_at": "2026-04-01T12:00:00Z",
    "updated_at": "2026-04-07T15:30:00Z"
  }
]