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/

GEThttps://influexaicreator.com/api/v1/meKostenlos

User-Info, Plan, Credits und API-Nutzung heute.

Response
{
  "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
  }
}
POSThttps://influexaicreator.com/api/v1/script2 Credits

Generiert ein Short-Form Video-Script inkl. optionaler Hook-Varianten.

NameTypPflichtBeschreibung
topicstringyesVideo-Thema oder Titel
durationstringnoz.B. 60s, 90s
tonestringnoz.B. energetic, calm
languagestringnode, en, …
hooksbooleanno3 Hook-Varianten (default: true)
Response
{
  "success": true,
  "data": {
    "script": "...",
    "hookVariants": ["...", "..."],
    "wordCount": 89,
    "estimatedSeconds": 62
  },
  "credits_used": 2,
  "credits_remaining": 48
}
POSThttps://influexaicreator.com/api/v1/niche2 Credits

Analysiert ein Thema und liefert profitable Nischen-Ideen.

NameTypPflichtBeschreibung
topicstringyesHauptthema
audiencestringnoZielgruppe, z.B. 25-34
formatstringnoshorts, longform, …
Response
{
  "success": true,
  "data": { "niches": [{ "title": "...", "potential": 5 }] },
  "credits_used": 2,
  "credits_remaining": 46
}
POSThttps://influexaicreator.com/api/v1/image5 Credits

Generiert ein KI-Bild (Standard 5 Credits, high_res: 8 Credits).

NameTypPflichtBeschreibung
promptstringyesBildbeschreibung
categorystringnocreator, product, …
aspect_ratiostringnolandscape_16_9, portrait_9_16, …
high_resbooleannoHigh-Res Modell (3 Credits)
Response
{
  "success": true,
  "data": {
    "generation_id": "uuid",
    "image_url": "/api/generated-image/uuid?variant=preview",
    "width": 1344,
    "height": 768
  },
  "credits_used": 1,
  "credits_remaining": 47
}
POSThttps://influexaicreator.com/api/v1/viral-score2 Credits

Berechnet Viral Score für Script + Thumbnail-Idee.

NameTypPflichtBeschreibung
scriptstringyesMin. 20 Zeichen
thumbnail_ideastringyesThumbnail-Konzept
nichestringyesNische
languagestringnode, en, …
Response
{
  "success": true,
  "data": {
    "score": {
      "total_score": 78,
      "hook_score": 20,
      "verdict": "Starker Hook, CTR verbesserbar."
    }
  },
  "credits_used": 2,
  "credits_remaining": 45
}
GEThttps://influexaicreator.com/api/v1/generationsKostenlos

Listet deine gespeicherten Generierungen (paginiert).

NameTypPflichtBeschreibung
limitqueryno1–50, default 20
offsetquerynoPagination
typequerynoz.B. image, viral_score
Response
{
  "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).