{ "opencollection": "1.0.0", "info": { "name": "Krea Assets API", "version": "v1" }, "request": { "auth": { "type": "bearer", "token": "{{bearerToken}}" } }, "items": [ { "info": { "name": "Assets", "type": "folder" }, "items": [ { "info": { "name": "List assets", "type": "http" }, "http": { "method": "GET", "url": "https://api.krea.ai/assets", "params": [ { "name": "limit", "value": "", "type": "query", "description": "Number of items to return (1-1000, default: 100)" }, { "name": "cursor", "value": "", "type": "query", "description": "Cursor for pagination" } ] }, "docs": "List assets with pagination." }, { "info": { "name": "Upload an asset", "type": "http" }, "http": { "method": "POST", "url": "https://api.krea.ai/assets", "body": { "type": "multipart-form", "data": [ { "name": "file", "type": "text", "value": "" }, { "name": "description", "type": "text", "value": "" } ] } }, "docs": "Upload a new asset (image, video, audio, or 3D model). Accepts multipart/form-data with a file and optional description. Maximum file size: 75MB." }, { "info": { "name": "Get an asset", "type": "http" }, "http": { "method": "GET", "url": "https://api.krea.ai/assets/:id", "params": [ { "name": "id", "value": "", "type": "path", "description": "Asset ID" } ] }, "docs": "Get a single asset by ID" }, { "info": { "name": "Delete an asset", "type": "http" }, "http": { "method": "DELETE", "url": "https://api.krea.ai/assets/:id", "params": [ { "name": "id", "value": "", "type": "path", "description": "Asset ID" } ] }, "docs": "Delete an asset." } ] } ], "bundled": true }