Image Generation
AdCreative.ai
premiumAdCreative.ai is an enterprise-grade image generation provider offering Image Generation through Aweb's unified API. It features none streaming support with standard-tier latency.
Specifications
Capabilities (1)
Quick start
Use AdCreative.ai through Alfred's unified API — no provider-specific SDK needed.
cURL
curl -X POST https://api.alfred-ai.app/v1/execute \
-H "Authorization: Bearer $ALFRED_API_KEY" \
-H "Content-Type: application/json" \
-d '{
"provider": "adcreativeai",
"capability": "image.generate",
"input": { "prompt": "Hello from AdCreative.ai!" }
}'TypeScript
import { Alfred } from '@alfred/core';
const alfred = new Alfred({ apiKey: process.env.ALFRED_API_KEY });
const result = await alfred.execute({
provider: 'adcreativeai',
capability: 'image.generate',
input: { prompt: 'Hello from AdCreative.ai!' },
});
console.log(result.output);