Wan 2.7 Image Generation Serverless API

2K image generation with precise multilingual text rendering.

~21.81s
$0.037 per generation
 1import requests
 2import json
 3
 4url = "https://api.segmind.com/v1/wan2.7-image"
 5headers = {
 6    "x-api-key": "YOUR_API_KEY",
 7    "Content-Type": "application/json"
 8}
 9
10data = {
11    "prompt": "A cinematic aerial view of a dense green forest at golden hour, rays of sunlight piercing through the canopy, misty valleys below, photorealistic, 8K",
12    "negative_prompt": "blurry, low quality, distorted, watermark",
13    "size": "2K",
14    "watermark": false
15}
16
17response = requests.post(url, headers=headers, json=data)
18
19if response.status_code == 200:
20    result = response.json()
21    print(json.dumps(result, indent=2))
22else:
23    print(f"Error: {response.status_code}")
24    print(response.text)

API Endpoint

POSThttps://api.segmind.com/v1/wan2.7-image

Parameters

promptrequired
string

Describe image: subject, setting, style, and mood.

Default: "A cinematic aerial view of a dense green forest at golden hour, rays of sunlight piercing through the canopy, misty valleys below, photorealistic, 8K"
imageoptional
string (uri)

Reference or source image for editing or style transfer.

Default: null
negative_promptoptional
string

Elements to exclude. Removes artifacts and unwanted styles.

Default: "blurry, low quality, distorted, watermark"
seedoptional
integer

Fixed seed for reproducible results. Leave empty for unique.

Default: null
sizeoptional
string

Output resolution. 1K for drafts, 2K for production quality.

Default: "2K"
Allowed values :
"1K""2K"
watermarkoptional
boolean

Add AI watermark to output. Disable for production assets.

Default: false

Response Type

Returns: Text/JSON

Common Error Codes

The API returns standard HTTP status codes. Detailed error messages are provided in the response body.

400

Bad Request

Invalid parameters or request format

401

Unauthorized

Missing or invalid API key

403

Forbidden

Insufficient permissions

404

Not Found

Model or endpoint not found

406

Insufficient Credits

Not enough credits to process request

429

Rate Limited

Too many requests

500

Server Error

Internal server error

502

Bad Gateway

Service temporarily unavailable

504

Timeout

Request timed out