One API contract
Use consistent authentication, task states, errors, and output formats across model providers.
One API. Better pricing. Cleaner integration. Developer-first.
curl https://api.pixapi.ai/v1/images/generations \ -H "Authorization: Bearer $PIXAPI_KEY" \ -H "Content-Type: application/json" \ -d '{ "model": "gpt-image-2", "prompt": "A cinematic product hero shot", "n": 1, "size": "1024x1024" }'Curated image and video generation models with a unified account, consistent request style, and transparent credit costs.
Gemini 3.1 Flash Lite Image generation and editing for high-volume products where speed and low cost matter most.
Price
2 credits
Gemini 3.1 Flash preview image generation and editing with size-controlled 512, standard, 2K, and 4K outputs.
Price
from 4 credits
High-quality Gemini 3 Pro image generation and editing for premium product visuals, with standard, 2K, and 4K outputs controlled by size.
Price
from 8 credits
OpenAI image generation and editing model with quality tiers, custom sizes, and strong prompt adherence.
Price
from 1 credit
GPT Image 1.5 image generation and editing with strong prompt adherence, text rendering, and commercial composition.
Price
from 1 credit
Copy a single prompt to Codex, Cursor, or any coding agent so it understands Pixapi's models and endpoint patterns before writing code.
Please read Pixapi's AI documentation and write production-ready code based only on the current Pixapi API docs.
Primary reference:
https://pixapi.ai/llms-full.txt
Also check these pages if needed:
https://pixapi.ai/docs/api-reference/
https://pixapi.ai/docs/guides/async-tasks/
https://pixapi.ai/docs/models/gemini-2.5-flash-image/
https://pixapi.ai/docs/models/seedance/
About Pixapi: Pixapi is a unified visual AI API gateway. It uses one account, one API key, usage-based credits, and separate endpoints for image and video workflows.
My task:
Write Node.js code that:
1. Generates an image with gemini-2.5-flash-image using POST /v1/images/generations.
2. Reads the generated image URL from response.data[0].url.
3. Creates a short image-to-video task with model seedance-2-fast using POST /v1/async/videos/generations.
4. Passes the generated image URL as image.
5. Uses seconds for video length (4 to 15 for Seedance 2 Fast) and resolution such as 720p.
6. Polls GET /v1/tasks/{id} until the task is completed.
7. Returns the final video URL from result.data[0].url.
Important constraints:
- Do not use async=true or "async": true.
- Do not use /v1/videos/generations.
- For Seedance 2 Fast, seconds must be between 4 and 15. Use resolution for clarity (for example 720p). Do not use size or duration.
- Do not use image_url or input_image; use image for image-to-video.
- Keep the API key server-side and read it from process.env.PIXAPI_KEY.A familiar REST interface and predictable response format keep integration work small—even when the underlying model changes.
Open the developer console, create a scoped key, and keep it safely in your server environment.
Use the same endpoint for supported image and video models. Change models with one request field.
Monitor credits and requests from one account while Pixapi handles provider routing and availability.
curl --request POST \
--url https://api.pixapi.ai/v1/images/generations \
--header 'Authorization: Bearer <token>' \
--header 'Content-Type: application/json' \
--data '{
"model": "gemini-2.5-flash-image",
"prompt": "A cinematic product shot",
"size": "1:1"
}'One platform, clear usage records, and production-minded support so you can focus on shipping image and video features.
Use consistent authentication, task states, errors, and output formats across model providers.
Estimate model costs before launch and monitor every request from the same developer console.
Access selected provider channels without maintaining separate accounts, SDKs, and invoices.
Familiar REST patterns and compact examples help teams make the first request quickly.
Create, rotate, and revoke API keys while keeping secret credentials on your server.
Open support tickets with request IDs and model details when an integration needs help.
Visual AI API platform
Pixapi keeps model access, API keys, credits, usage records, and async task handling in one developer workflow.
Everything you need to know before routing production image and video workloads through Pixapi.
Create an API key, choose a model, and send your first image or video request in minutes.