Anonymous Chat GPT without registration
Image Generation API
Generate images from text descriptions.
0.04$ image.
Model selection
We constantly monitor and utilize current models on the market.
Currently, these are:
- NanoBananaEdit
- NanoBanana
Endpoint
POST /api/v1/imageRequest Example
{
"apiKey": "your-api-key",
"prompt": "Monkey",
"aspectRatio": "16:9",
"imageUrls": [
"https://url-to-image"
],
"type": "Image"
}
Getting Results
Polling Endpoint
GET /api/v1/result/:taskIdUse the task ID returned from the generation request to poll for results.
Request example
GET /api/v1/result/abc123-def456-ghi789
Response example
Returns a json
{
"taskId":"request-taskId",
"url":"https://result-url"
}
Video Generation API
Generate videos using Sora2 and other models.
- Models:
- Sora2
- 1080p 10 sec : 0.3$
- 1080p 15 sec : 0.45$
- Wan2_7
- 720p 5 sec : 0.45$
- 720p 10 sec : 0.9$
- 720p 15 sec : 1.35$
- 1080p 5 sec : 0.68$
- 1080p 10 sec : 1.35$
- 1080p 15 sec : 2.03$
- Kling_2_5_Pro
- 1080p 5 sec : 0.38$
- 1080p 10 sec : 0.75$
- Kling2_6
- 1080p 5 sec : 0.9$
- 1080p 10 sec : 1.8$
- Kling3
- 1080p 5 sec : 1.5$
- 1080p 8 sec : 2.4$
- 1080p 10 sec : 3.0$
- 1080p 13 sec : 3.9$
- Seedance1_5pro
- 480p 4 sec : 0.05$
- 480p 8 sec : 0.11$
- 480p 12 sec : 0.16$
- 720p 4 sec : 0.08$
- 720p 8 sec : 0.16$
- 720p 12 sec : 0.24$
- 1080p 4 sec : 0.12$
- 1080p 8 sec : 0.24$
- 1080p 12 sec : 0.36$
- Veo3_1Fast
- 720p 8 sec : 0.36$
- Veo3_1_Quality
- 1088p 8 sec : 1.81$
- Hailuo2_3
- 768p 6 sec : 0.32$
- 768p 10 sec : 0.53$
- 1080p 6 sec : 0.45$
- 1080p 10 sec : 0.75$
- Grok_Imagine
- 480p 6 sec : 0.08$
- 480p 10 sec : 0.13$
- 480p 15 sec : 0.2$
- 720p 6 sec : 0.12$
- 720p 10 sec : 0.2$
- 720p 15 sec : 0.3$
Endpoint
POST /api/v1/videoRequest Example
{
"apiKey": "your-api-key",
"prompt": "Monkey",
"modelName": "Sora2",
"durationSec": "10",
"resolution": "720p",
"aspectRatio": "16:9",
"imageUrls": [
"https://url-to-image"
],
"type": "Video"
}
Getting Results
Polling Endpoint
GET /api/v1/result/:taskIdUse the task ID returned from the generation request to poll for results.
Request example
GET /api/v1/result/abc123-def456-ghi789
Response example
Returns a json
{
"taskId":"request-taskId",
"url":"https://result-url"
}
Sound Generation API
Generate sound effects and audio.
0.01$ sec.
Endpoint
POST /api/v1/soundRequest Example
{
"apiKey": "your-api-key",
"prompt": "wind",
"durationMs": 1000,
"isLoop": true,
"type": "Sound"
}
* min durationMs: 500ms
** If isLoop true, the sound will loop seamlessly; if false, it will fade in and out smoothly.
Getting Results
Polling Endpoint
GET /api/v1/result/:taskIdUse the task ID returned from the generation request to poll for results.
Request example
GET /api/v1/result/abc123-def456-ghi789
Response example
Returns a json
{
"taskId":"request-taskId",
"url":"https://result-url"
}
Voice Generation API
Generate speech from text with custom parameters.
0.1$ per 1000 characters.
Endpoint
POST /api/v1/voiceRequest Example
{
"apiKey": "your-api-key",
"name": "Aria",
"text": "How are you?",
"stability": 0.5,
"similarity_boost": 0.75,
"style": 0.0,
"speed": 1.0,
"previousText": "Hi.",
"nextText": "Why are you silent?",
"type": "Voice"
}
stability in 0.0..1.0
similarity_boost in 0.0..1.0
style in 0.0..1.0
speed in 0.7..1.2
Getting Results
Polling Endpoint
GET /api/v1/result/:taskIdUse the task ID returned from the generation request to poll for results.
Request example
GET /api/v1/result/abc123-def456-ghi789
Response example
Returns a json
{
"taskId":"request-taskId",
"url":"https://result-url"
}