InfluexAI API
Integriere KI-Content in deine App in 5 Minuten
API Key holen →Quick Start
Authentifiziere jeden Request mit deinem API-Key im Authorization-Header.
curl -X POST https://influexaicreator.com/api/v1/script \
-H "Authorization: Bearer inf_live_YOUR_KEY" \
-H "Content-Type: application/json" \
-d '{"topic": "Morning Routine", "duration": "60s", "tone": "energetic"}'Authentication
Header: Authorization: Bearer inf_live_…
Keys werden als SHA-256-Hash gespeichert. Du siehst den vollen Key nur einmal bei der Erstellung.
Die Public API ist im Pro- und Business-Plan verfügbar. Andere Pläne erhalten 403 PLAN_REQUIRED.
Endpoints
Base URL: https://influexaicreator.com/api/v1/
https://influexaicreator.com/api/v1/meKostenlosUser-Info, Plan, Credits und API-Nutzung heute.
{
"success": true,
"data": {
"user_id": "uuid",
"email": "you@example.com",
"plan": "business",
"credits_remaining": 48,
"credits_used_this_month": 156,
"requests_today": 12,
"rate_limit_per_day": 1000
}
}https://influexaicreator.com/api/v1/script2 CreditsGeneriert ein Short-Form Video-Script inkl. optionaler Hook-Varianten.
| Name | Typ | Pflicht | Beschreibung |
|---|---|---|---|
| topic | string | yes | Video-Thema oder Titel |
| duration | string | no | z.B. 60s, 90s |
| tone | string | no | z.B. energetic, calm |
| language | string | no | de, en, … |
| hooks | boolean | no | 3 Hook-Varianten (default: true) |
{
"success": true,
"data": {
"script": "...",
"hookVariants": ["...", "..."],
"wordCount": 89,
"estimatedSeconds": 62
},
"credits_used": 2,
"credits_remaining": 48
}https://influexaicreator.com/api/v1/niche2 CreditsAnalysiert ein Thema und liefert profitable Nischen-Ideen.
| Name | Typ | Pflicht | Beschreibung |
|---|---|---|---|
| topic | string | yes | Hauptthema |
| audience | string | no | Zielgruppe, z.B. 25-34 |
| format | string | no | shorts, longform, … |
{
"success": true,
"data": { "niches": [{ "title": "...", "potential": 5 }] },
"credits_used": 2,
"credits_remaining": 46
}https://influexaicreator.com/api/v1/image5 CreditsGeneriert ein KI-Bild (Standard 5 Credits, high_res: 8 Credits).
| Name | Typ | Pflicht | Beschreibung |
|---|---|---|---|
| prompt | string | yes | Bildbeschreibung |
| category | string | no | creator, product, … |
| aspect_ratio | string | no | landscape_16_9, portrait_9_16, … |
| high_res | boolean | no | High-Res Modell (3 Credits) |
{
"success": true,
"data": {
"generation_id": "uuid",
"image_url": "/api/generated-image/uuid?variant=preview",
"width": 1344,
"height": 768
},
"credits_used": 1,
"credits_remaining": 47
}https://influexaicreator.com/api/v1/viral-score2 CreditsBerechnet Viral Score für Script + Thumbnail-Idee.
| Name | Typ | Pflicht | Beschreibung |
|---|---|---|---|
| script | string | yes | Min. 20 Zeichen |
| thumbnail_idea | string | yes | Thumbnail-Konzept |
| niche | string | yes | Nische |
| language | string | no | de, en, … |
{
"success": true,
"data": {
"score": {
"total_score": 78,
"hook_score": 20,
"verdict": "Starker Hook, CTR verbesserbar."
}
},
"credits_used": 2,
"credits_remaining": 45
}https://influexaicreator.com/api/v1/generationsKostenlosListet deine gespeicherten Generierungen (paginiert).
| Name | Typ | Pflicht | Beschreibung |
|---|---|---|---|
| limit | query | no | 1–50, default 20 |
| offset | query | no | Pagination |
| type | query | no | z.B. image, viral_score |
{
"success": true,
"data": {
"generations": [{ "id": "uuid", "type": "image", "prompt": "…" }],
"limit": 20,
"offset": 0
}
}Rate Limits
- Business: 1000 Requests pro Tag (UTC)
- Pro (Referenz): 100 Requests/Tag — API-Zugang nur mit Business
- Credits werden mit dem Dashboard-Guthaben geteilt
- Kein zusätzlicher API-Aufschlag — normale Credit-Preise
{
"success": false,
"error": "Rate limit exceeded",
"code": "RATE_LIMITED",
"limit_per_day": 1000,
"retry_after": 43200
}Playground
Teste Endpoints direkt im Browser. Business-Plan und gültiger API-Key erforderlich. Der Key wird nur für diese Browser-Sitzung gespeichert.
Der Key wird nur für diese Browser-Sitzung gespeichert (sessionStorage).