All modelsOpen in Console Get started free
Ecommerce Long Image
vecbasevecbase/ecommerce-long-image
Production-ready product detail model that turns product references and merchant intent into multiple commerce-ready panels.
Input
Image and prompt
Output
Generated images
Tools
IMAGE
Reasoning
No
Pricing
This model is billed as one Vecbase image model. Responses include usage.cost_micro_usd.
Routed providers
- vecbase
Requests are automatically routed to the highest-priority healthy upstream. Failures fall back to the next route transparently.
Quickstart
from openai import OpenAI
client = OpenAI(
base_url="https://api.vecbase.com/v1",
api_key="sk-vbc-...",
)
with open("product.jpg", "rb") as image:
response = client.images.edit(
model="vecbase/ecommerce-long-image",
image=image,
prompt="Create a commerce-ready vertical product detail image.",
size="1024x1024",
quality="low",
)
print(len(response.data), response.usage)Ready to ship?
Create a project, mint an API key, and call this model from any OpenAI-compatible client.