PixelDance
V1InpaintHistory

Get inpaint history

Returns paginated inpaint session history, deduplicated by storageKey.

GET
/v1/inpaint/history

Returns paginated inpaint session history, deduplicated by storageKey.

Authorization

cookieAuth
better-auth.session_token<token>

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

In: cookie

Query Parameters

cursor?string

Response Body

application/json

curl -X GET "http://localhost:3002/v1/inpaint/history"
{
  "items": [
    {
      "id": "string",
      "taskId": "string",
      "storageKey": "string",
      "prompt": "string",
      "createdAt": "string",
      "sourceImageUrl": "string",
      "maskImageUrl": "string"
    }
  ],
  "nextCursor": "string"
}