PixelDance
V1Projects

List projects

Returns paginated projects for the current user/organization context.

GET
/v1/projects

Returns paginated projects for the current user/organization context.

Authorization

cookieAuth
better-auth.session_token<token>

Session cookie set by Better Auth. Login via the app to obtain.

In: cookie

Query Parameters

type*string
Value in"image" | "video" | "inpaint"
cursor?string
limit?integer
Range1 <= value <= 100

Response Body

application/json

curl -X GET "http://localhost:3002/v1/projects?type=image"
{
  "items": [
    {
      "id": "string",
      "title": "string",
      "type": "string",
      "coverUrl": "string",
      "taskCount": 0,
      "updatedAt": "string"
    }
  ],
  "nextCursor": "string"
}