API v1 Beta
Build with Pictura API
Add AI image generation to any app. Simple REST API with SDKs for Node.js and Python. Start with $2 free credits.
How It Works
1
Send Request
POST your prompt and parameters to our API endpoint
POST
2
Pictura Engine
Our proprietary AI engine processes your prompt
3
Get Response
Receive your generated image URL and metadata
200 OK
Quick Start
Get up and running in under a minute
import Pictura from '@pictura/sdk'
const client = new Pictura({ apiKey: 'pk_live_...' })
const image = await client.images.generate({
prompt: 'A mountain at sunset',
model: 'pi-1.5-turbo'
})
console.log(image.url)Built for developers
Fast
Under 10 seconds
Secure
API key auth
99.9% Uptime
Reliable
SDKs
Node & Python
API Reference
Authentication
All API requests require authentication. Include your API key in the Authorization header:
Authorization: Bearer pk_live_your_api_key