{ "opencollection": "1.0.0", "info": { "name": "Krea Assets General API", "version": "v1" }, "request": { "auth": { "type": "bearer", "token": "{{bearerToken}}" } }, "items": [ { "info": { "name": "General", "type": "folder" }, "items": [ { "info": { "name": "List jobs", "type": "http" }, "http": { "method": "GET", "url": "https://api.krea.ai/jobs", "params": [ { "name": "cursor", "value": "", "type": "query", "description": "ISO 8601 timestamp cursor for pagination (jobs created before this time)" }, { "name": "limit", "value": "", "type": "query", "description": "Number of items to return (1-1000, default: 100)" }, { "name": "types", "value": "", "type": "query", "description": "Comma-separated list of job types to filter (e.g., \"flux,k1,externalImage\")" }, { "name": "status", "value": "", "type": "query", "description": "Filter by job status" } ] }, "docs": "List jobs with pagination and filtering. Returns jobs belonging to the authenticated user." }, { "info": { "name": "Get a job by ID", "type": "http" }, "http": { "method": "GET", "url": "https://api.krea.ai/jobs/:id", "params": [ { "name": "id", "value": "", "type": "path", "description": "A unique identifier for a job" } ] }, "docs": "Get a job by ID" }, { "info": { "name": "Delete a job by ID", "type": "http" }, "http": { "method": "DELETE", "url": "https://api.krea.ai/jobs/:id", "params": [ { "name": "id", "value": "", "type": "path", "description": "A unique identifier for a job" } ] }, "docs": "Delete a job by ID" } ] } ], "bundled": true }