Skip to main content

ImageTaskResultSchema

createdstring

Timestamp when the result was produced.

data object[]

Generated images.

  • Array [
  • urlstring

    URL of the generated image. Populated when the output is returned as a URL.

    Default: null
    b64_jsonstring

    Base64-encoded image. Populated instead of url when base64 output is requested.

    Default: null
  • ]
  • ImageTaskResultSchema
    {
    "created": "string",
    "data": [
    {
    "url": null,
    "b64_json": null
    }
    ]
    }