Skip to documentation
MakeInfluencer.ai
v1

MakeInfluencer · image model

MakeInfluencer Flagship API

Generate character-consistent AI influencer images with optional trained-character LoRA support.

Endpoint overview

POSThttps://www.makeinfluencer.ai/api/v1/models/makeinfluencer-flagship/generations

Model ID

makeinfluencer-flagship

Typical time

8s

Sample quote

1,605 credits

The displayed price is input-specific

The sample quote is MakeInfluencer Flagship LoRA model for enhanced generation. Preview your exact payload before generating; previews do not charge.

Create a generation

Send the model fields inside input. The request returns HTTP 202 with an owned generation ID.

cURL
curl --request POST \
  https://www.makeinfluencer.ai/api/v1/models/makeinfluencer-flagship/generations \
  --header "Authorization: Bearer $MAKEINFLUENCER_API_KEY" \
  --header "Idempotency-Key: makeinfluencer-flagship-001" \
  --header "Content-Type: application/json" \
  --data '{
  "input": {
    "prompt": "Editorial portrait of a fashion creator in a sunlit studio",
    "aspectRatio": "1:1",
    "numOutputs": 1
  }
}'

Model parameters

FieldTypeDefaultAccepted values
promptrequiredtext
aspectRatioenum1:11:1, 16:9, 21:9, 3:2, 2:3, 4:5, 5:4, 3:4, 4:3, 9:16, 9:21
imageUrlsimageArrayUp to 1 items

The same contract is available fromGET /models/makeinfluencer-flagship for server-side validation and dynamic tooling.

Preview credits

POST · no charge
curl --request POST \
  https://www.makeinfluencer.ai/api/v1/models/makeinfluencer-flagship/preview-credits \
  --header "Authorization: Bearer $MAKEINFLUENCER_API_KEY" \
  --header "Content-Type: application/json" \
  --data '{
  "input": {
    "prompt": "Editorial portrait of a fashion creator in a sunlit studio",
    "aspectRatio": "1:1",
    "numOutputs": 1
  }
}'

A valid response returns the exact credit cost and pricing description. The dashboard, REST API, and MCP use one balance at the same model price.

Poll the result

GET · image
curl \
  https://www.makeinfluencer.ai/api/v1/generations/image/GENERATION_ID \
  --header "Authorization: Bearer $MAKEINFLUENCER_API_KEY"

Poll until terminal is true. On success, ready is true. Readurl for video orurls for image output. See the polling guide for statuses and backoff.

MakeInfluencer Flagship API FAQ

How much does the MakeInfluencer Flagship API cost?

The documented sample request costs 1,605 MakeInfluencer credits. Final cost depends on the exact model inputs, and the preview-credits endpoint returns an exact quote without charging.

Does the MakeInfluencer Flagship API use a separate balance?

No. REST, MCP, and the MakeInfluencer dashboard use the same account credit balance.

How do I receive MakeInfluencer Flagship results?

Creation returns HTTP 202 with a generation ID. Poll the image generation-status endpoint until terminal is true. On success, ready is true and the response contains the output URL.