Application Process
Before use, please enter the Nano Banana Images API on the Ace Data Cloud platform and click Acquire to apply for activation. The first application usually has free quotas available. Once activated, you can obtain the Bearer Token used to call the API from the platform.Interface Overview
- Base URL:
https://api.acedata.cloud - Endpoint:
POST /nano-banana/images - Authentication Method: Carry
authorization: Bearer {token}in the HTTP Header - Request Headers:
accept: application/jsoncontent-type: application/json
- Action:
generate: Generate images based on text promptsedit: Edit based on given images
- Model (optional):
nano-banana(default): Based on Gemini 2.5 Flash Image, fast speed, low costnano-banana-2: Based on Gemini 3.1 Flash Image Preview, Pro-level quality + Flash speednano-banana-pro: Based on Gemini 3 Pro Image Preview, highest quality
- Asynchronous Callback: Optional, receive task completion notifications and results via
callback_url
Quick Start: Generate Image (action=generate)
Minimum Required Parameters: action, prompt
When you only want to generate an image based on a prompt, set action to generate and provide a clear prompt.
Request Example (cURL)
Request Example (Python)
Successful Response Example
Field Explanation
success: Whether the request was successful.task_id: Task ID.trace_id: Trace ID for troubleshooting.data[]: Result list.prompt: The prompt used for generation (echo).image_url: Direct URL of the generated image.
Note: Onlyactionandpromptare required to generate an image at/nano-banana/images.
Edit Image (action=edit)
When you want to edit based on an existing image, set action to edit, and pass the list of image URLs to be edited through image_urls (1 or more), while providing a prompt describing the editing goal.
For example, if we provide a photo of a person and a photo of a shirt, we can have the person wear that shirt by passing the image URLs and specifying the action as edit. The URLs can be public accessible links using https or http, or they can be Base64 encoded images, such as data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAA+gAAAVGCAMAAAA6u2FyAAADAFBMVEXq6uwdHCEeHyMdHS....
Request Example (cURL)
Request Example (Python)
Successful Response Example
Field Explanation
image_urls[]: List of URLs of images to be edited (must be publicly accessible). Multiple images can be passed, and the service will combine these materials with thepromptto complete the editing.- Other fields are the same as the “Generate Image” response.
Asynchronous Callback (Optional, Recommended)
Generating or editing may take some time. To avoid long connections occupying resources, it is recommended to use Webhook Callback viacallback_url:
- Add
callback_urlin the request body, for example, your server’s Webhook address (must be publicly accessible and support POST JSON). - The API will immediately return a response containing
task_id(or basic results). - When the task is completed, the platform will send the complete JSON to
callback_urlviaPOST. You can associate the request with the result usingtask_id.
Error Handling
When a call fails, a standard error format and trace ID will be returned. Common errors are as follows:- 400
token_mismatched: The request is invalid or parameters are incorrect. - 400
api_not_implemented: The interface is not implemented (please contact support). - 401
invalid_token: Authentication failed or token is missing. - 429
too_many_requests: Request frequency limit exceeded. - 500
api_error: Server exception.
Error Response Example
Parameter Correspondence and Notes
- Required:
action,prompt - Edit Only:
image_urls(array, at least 1 item) - Optional:
model(defaultnano-banana, optionalnano-banana-2ornano-banana-pro),aspect_ratio(width-to-height ratio, such as1:1,16:9),resolution(resolution, such as1K,2K,4K),callback_url(for asynchronous callback) - Headers: Must provide
authorization: Bearer {token};acceptis recommended to be set toapplication/json - Image Accessibility:
image_urlsmust be direct links accessible publicly (HTTP/HTTPS), HTTPS is recommended - Idempotency and Tracking: Retain
task_idandtrace_idfor troubleshooting and result association

