List Blueprints

Retrieve all blueprints owned by or cloned to your account.


GET/api/v1/blueprints

Response

Returns a flat array of blueprints. Each blueprint includes its ID, title, description, and other metadata.

[
  {
    "blueprintId": "bp_...",
    "accountId": "acc_...",
    "title": "Product Demo Video",
    "description": "Generates a polished product demo from images and a script",
    "aspectRatio": "16:9",
    "durationSeconds": 30,
    "isPublic": false,
    "thumbnailMediaId": "med_...",
    "thumbnailUrl": "https://storage.example.com/thumb.webp",
    "isTemplate": false,
    "isUserTemplate": false,
    "isFeatured": false,
    "sourceBlueprintId": null,
    "isFavorited": false,
    "isPublished": false,
    "tags": [{ "name": "Demo", "slug": "demo" }],
    "createdAt": "2025-01-15T10:30:00Z",
    "updatedAt": "2025-02-01T14:00:00Z"
  }
]

Example

GET/api/v1/blueprints
curl -X GET https://api.wondercat.ai/api/v1/blueprints \
  -H "Authorization: Bearer YOUR_API_KEY"