NAME
OpenAPI::Client::OpenAI::Path::images-generations - Documentation for the /images/generations path.
DESCRIPTION
This document describes the API endpoint at /images/generations
.
See the examples/
directory in the distribution for examples of how to use this.
POST /images/generations
Creates an image given a prompt.
Operation ID
createImage
$client->createImage( ... );
Request Body
Content Type: application/json
Example:
{
"style" : "vivid",
"user" : "user-1234",
"prompt" : "A cute baby sea otter",
"model" : "dall-e-3",
"size" : "1024x1024",
"n" : 1,
"quality" : "standard",
"response_format" : "url"
}
Responses
Status Code: 200
OK
Content Types:
application/json
Example:
{ "data" : [ null ] }
SEE ALSO
COPYRIGHT AND LICENSE
Copyright (C) 2023-2025 by Nelson Ferraz
This library is free software; you can redistribute it and/or modify it under the same terms as Perl itself, either Perl version 5.14.0 or, at your option, any later version of Perl 5 you may have available.