cURL
curl --request POST \ --url http://localhost:3001/api/v1/resources/generate/image \ --header 'Content-Type: application/json' \ --cookie nut-session= \ --data ' { "prompt": "<string>", "width": 123, "height": 123, "model": "<string>" } '
{ "success": true, "data": { "resource": { "filename": "<string>", "type": "image", "mimeType": "<string>", "size": 123, "description": "<string>", "proposalId": "<string>", "url": "<string>", "thumbnailUrl": "<string>", "createdAt": "2023-11-07T05:31:56Z" } } }
Generate an image using AI
Session cookie authentication
Image generation prompt
Image width
Image height
AI model to use
Generated image resource
Show child attributes