AI Instagram Model API Documentation

AI Instagram Model API Documentation

Playground

Try it on WaveSpeedAI!

AI Instagram Model generates stunning Instagram-style photos from your image and prompt. Choose from 10 style presets — influencer, street fashion, beach, fitness, luxury, casual chic, night glam, anime, cyberpunk, and vintage retro. Ready-to-use REST inference API, no coldstarts, affordable pricing.

Features

AI Instagram Model transforms your photos into professional, Instagram-worthy shots in seconds. Upload a photo, describe the look you want, and pick from 10 curated style presets — from influencer glam to cyberpunk vibes — and let AI handle the rest.


Why Choose This?

  • 10 curated style presets Choose from influencer, street fashion, beach, fitness, luxury, casual chic, night glam, anime, cyberpunk, or vintage retro — each with a distinct, polished aesthetic.

  • Prompt-driven creativity Describe exactly what you want and the model brings your vision to life alongside the chosen style.

  • Instant, professional results No editing skills required. Scroll-stopping, photo-ready output in seconds.


Parameters

ParameterRequiredDescription
promptYesText description of the desired photo look and feel.
imageYesInput photo (URL or file upload).
styleNoStyle preset. Default: influencer. See options below.

Style Options

StyleDescription
influencerInfluencer portrait, retouched skin, professional lighting. (default)
street_fashionStreet style, urban background, editorial look.
beachBeach vacation, golden tan, summer vibes.
fitnessFitness model, sportswear, muscle definition.
luxuryLuxury fashion, designer clothing, jewelry.
casual_chicCasual fashion, café setting, natural light.
night_glamEvening gown, night club, neon lighting.
animeAnime-style character, big eyes, cel shading.
cyberpunkNeon sci-fi, cyberpunk aesthetic, futuristic feel.
vintage_retroRetro 60s–70s, film grain, Hollywood look.

How to Use

  1. Upload your photo — a clear, well-lit, front-facing photo works best.
  2. Write a prompt — describe the look, mood, or specific details you want.
  3. Pick a style — choose from 10 presets, or leave as default (influencer).
  4. Submit — download your Instagram-ready result.

Pricing

Just $0.05 per image.


Best Use Cases

  • Social media content — Create scroll-stopping Instagram posts without a photoshoot.
  • Personal branding — Build a consistent, polished aesthetic across your feed.
  • Fashion lookbooks — Generate styled photos in multiple aesthetics from a single source image.
  • Creative exploration — Try anime, cyberpunk, or vintage looks on your own photos.

Pro Tips

  • Clear, well-lit portraits with a visible face and body produce the best results.
  • Be specific in your prompt — describe lighting, mood, outfit details, or setting for more accurate output.
  • Try multiple styles on the same photo to find your perfect look before committing to one.
  • Front-facing photos with a simple background are easiest for the model to work with.

Notes

  • Both prompt and image are required fields.
  • Style defaults to influencer if not specified.
  • Ensure image URLs are publicly accessible if using a link rather than a direct upload.
  • Please ensure your content complies with WaveSpeed AI’s usage policies.

Authentication

For authentication details, please refer to the Authentication Guide.

API Endpoints

Submit Task & Query Result

set -euo pipefail

export WAVESPEED_API_KEY="your-api-key"

REQUEST_BODY=$(cat <<'JSON'
{
  "image": "https://interactive-examples.mdn.mozilla.net/media/cc0-images/painted-hand-298-332.jpg",
  "style": "influencer"
}
JSON
)

# 1. Submit the prediction.
SUBMIT_RESPONSE=$(curl --silent --show-error --fail-with-body \
  -X POST "https://api.wavespeed.ai/api/v3/wavespeed-ai/ai-instagram-model" \
  -H "Authorization: Bearer ${WAVESPEED_API_KEY}" \
  -H "Content-Type: application/json" \
  -d "${REQUEST_BODY}")

TASK=$(printf '%s' "${SUBMIT_RESPONSE}" | jq 'if type == "object" and has("data") then .data else . end')
PREDICTION_ID=$(printf '%s' "${TASK}" | jq -r '.id // empty')
if [ -z "${PREDICTION_ID}" ]; then
  printf 'Submission response did not contain a prediction id
' >&2
  exit 1
fi
RESULT_URL=$(printf '%s' "${TASK}" | jq -r '.urls.get // empty')
if [ -z "${RESULT_URL}" ]; then RESULT_URL="https://api.wavespeed.ai/api/v3/predictions/${PREDICTION_ID}/result"; fi

# 2. Poll until the prediction finishes.
while true; do
  RESPONSE=$(curl --silent --show-error --fail-with-body \
    "${RESULT_URL}" \
    -H "Authorization: Bearer ${WAVESPEED_API_KEY}")
  RESULT=$(printf '%s' "${RESPONSE}" | jq 'if type == "object" and has("data") then .data else . end')
  STATUS=$(printf '%s' "${RESULT}" | jq -r '.status // empty')

  case "${STATUS}" in
    completed) printf '%s\n' "${RESULT}" | jq '.outputs'; break ;;
    failed|cancelled|timeout) printf '%s\n' "${RESULT}" | jq . >&2; exit 1 ;;
    created|processing) sleep 2 ;;
    *) printf 'Unexpected status: %s
' "${STATUS}" >&2; exit 1 ;;
  esac
done

Parameters

Task Submission Parameters

Request Parameters

ParameterTypeRequiredDefaultRangeDescription
imagestringYes-The URL of the input image.
promptstringNo-Text prompt describing the desired Instagram-style photo.
stylestringNoinfluencerinfluencer, street_fashion, beach, fitness, luxury, casual_chic, night_glam, anime, cyberpunk, vintage_retroStyle preset for the generated photo.

Response Parameters

ParameterTypeDescription
codeintegerHTTP status code (e.g., 200 for success)
messagestringStatus message (e.g., “success”)
data.idstringUnique identifier for the prediction, Task Id
data.modelstringModel ID used for the prediction
data.outputsarrayOutput values, usually URL strings; some models return text strings or structured result objects (empty when status is not completed)
data.urlsobjectObject containing related API endpoints
data.urls.getstringURL to retrieve the prediction result
data.statusstringStatus of the task: created, processing, completed, or failed
data.created_atstringISO timestamp of when the request was created (e.g., “2023-04-01T12:34:56.789Z”)
data.errorstringError message (empty if no error occurred)
data.timingsobjectObject containing timing details
data.timings.inferenceintegerInference time in milliseconds

Result Request Parameters

ParameterTypeRequiredDefaultDescription
idstringYes-Task ID

Result Response Parameters

ParameterTypeDescription
codeintegerHTTP status code (e.g., 200 for success)
messagestringStatus message (e.g., “success”)
dataobjectThe prediction data object containing all details
data.idstringUnique identifier for the prediction
data.modelstringModel ID used for the prediction
data.outputsarray<string | object>Array of generated outputs (empty when status is not completed). Items are usually URL strings, but may be text strings or structured result objects, depending on the model.
data.urlsobjectObject containing related API endpoints
data.urls.getstringURL to poll for the prediction result
data.statusstringStatus: created, processing, completed, or failed
data.created_atstringISO timestamp of when the request was created
data.errorstringError message (empty if no error occurred)
data.timingsobjectObject containing timing details
data.timings.inferenceintegerInference time in milliseconds
© 2026 WaveSpeedAI. All rights reserved.