> ## Documentation Index
> Fetch the complete documentation index at: https://docs.modelslab.com/llms.txt
> Use this file to discover all available pages before exploring further.

# Fetch Image

> Fetch Queued Image.

## Request

Send a `POST` request to below endpoint to fetch a queued image.

```curl curl theme={null}
--request POST 'https://modelslab.com/api/v1/enterprise/nano_banana/fetch/{id}' \
```

## Body

```json json theme={null}
{
    "key": "enterprise_api_key"
}
```


## OpenAPI

````yaml POST /nano_banana/fetch/{id}
openapi: 3.0.0
info:
  title: ModelsLab Enterprise Nano Banana API
  version: 1.0.0
  description: Server management endpoints for the Nano Banana enterprise API.
servers:
  - url: https://modelslab.com/api/v1/enterprise
security: []
paths:
  /nano_banana/fetch/{id}:
    post:
      summary: Fetch Image
      description: Retrieve a queued or generated image by request ID.
      parameters:
        - name: id
          in: path
          required: true
          schema:
            type: string
          description: The request ID returned from the generation endpoint.
      requestBody:
        required: true
        content:
          application/json:
            schema:
              $ref: '#/components/schemas/KeyOnlyRequest'
      responses:
        '200':
          description: Fetched image response
          content:
            application/json:
              example:
                status: success
                output:
                  - https://cdn.modelslab.com/generated/image.png
components:
  schemas:
    KeyOnlyRequest:
      type: object
      required:
        - key
      properties:
        key:
          type: string
          description: Your enterprise API key used for request authorization.

````