Enjoy Limited-Time50% OFF!
Piooy
Piooy
HomeImage GeneratorVideo Generator
AI Photo RestorationHot
Restore old photos, improve quality
Watermark RemoverHot
Remove watermarks from images
AI ID PhotoNew
Professional AI ID photo generator
3D Cartoon AvatarNew
Convert photos to 3D animation style
Nano Banana Watermark RemoverPro
Extract clean images without watermarks
All Tools5
Explore all AI tools
Pricing
Piooy
Piooy

Piooy is a powerful next-gen AI image generator platform, capable of ultra-realistic scenes, accurate text rendering and fine-grained simulation.
Providing access to advanced models like Nano Banana Pro, it delivers unmatched precision and professional-grade output.

About Us

FAQShowcasesPricingChangelogAPI

AI Models

Nano Banana ProSeedream 4.5GPT-Image 1.5Veo3

AI Tools

AI ID PhotoWatermark RemoverAI Photo RestorationNano Banana Watermark Remover3D Cartoon Avatar
© 2024 Piooy, All rights reserved
Privacy PolicyTerms of ServiceRefund PolicyRefund RequestAbout Us
deDeutschenEnglishesEspañolfrFrançaiszh-HK繁体中文ja日本語ko한국어trTürkçezh中文heעבריתplPolski
This service is powered by advanced AI API technology. We are an independent third-party service provider dedicated to providing optimized technical support to users. This site has no direct affiliation with Google or other model providers.
Developer API

Piooy API

Integrate powerful AI generation capabilities into your applications. Generate images, videos, and music programmatically with simple REST API calls.

2
Endpoints
10+
Models
99.9%
Uptime

API Access Request

Tell us about your use case and we will set up your API access.

Why Use Our API

Multiple AI Models

Access a wide range of AI models including Nano Banana, Seedream, GPT Image, Veo and more through a single unified API.

Simple Integration

RESTful API with Bearer token authentication. Get started in minutes with just two endpoints.

Pay Per Use

No monthly minimums. Only pay for what you generate using our flexible credit system.

Async Task System

Submit generation tasks and poll for results. Built for production workloads with automatic retries and status tracking.

API Endpoints

Quick Start Example

1curl -X POST https://piooy.com/api/v1/generate \
2 -H "Authorization: Bearer sk-xxxxx" \
3 -H "Content-Type: application/json" \
4 -d '{
5 "mediaType": "image",
6 "model": "nano-banana-2",
7 "prompt": "a cute cat sitting on a cloud",
8 "scene": "text-to-image",
9 "options": {
10 "aspect_ratio": "1:1",
11 "resolution": "2K"
12 }
13 }'
14
15# Response:
16# { "code": 0, "data": { "taskId": "xxx-xxx" } }
17
18curl https://piooy.com/api/v1/task/{taskId}?refresh=1 \
19 -H "Authorization: Bearer sk-xxxxx"