Enjoy 50% OFF Vidu Q3 & Q3 Pro models • Only on WaveSpeedAI | May 20 – Jun 2

AI Celebrity Look Alike Finder

wavespeed-ai /

AI Celebrity Look-Alike Finder analyzes a portrait and finds the closest celebrity match. Upload a face photo and discover which celebrity you resemble. Ready-to-use REST inference API, no coldstarts, affordable pricing.

image-to-image
Input

Drag & drop or click to upload

preview

Idle

$0.05per run·~20 / $1

Next:

ExamplesView all

Related Models

README

AI Celebrity Look-Alike Finder

AI Celebrity Look-Alike Finder reveals your celebrity twin. Upload a selfie and discover which famous face you share features with — is it a Hollywood star? A music icon? A sports legend? There's only one way to find out.

Why Choose This?

  • Instant celebrity match Advanced facial recognition analyzes your features and finds your closest celebrity doppelganger.

  • Thousands of celebrities Actors, musicians, athletes, influencers, historical figures — our database spans the A-list and beyond.

  • Accurate facial analysis AI examines facial structure, proportions, and features for surprisingly accurate matches.

  • Shareable results Get results designed for social media — show your friends your celebrity twin.

  • Quick and fun Upload, click, discover. Takes seconds, entertains for hours.

Parameters

ParameterRequiredDescription
imageYesYour portrait photo (URL or upload)

How to Use

  1. Upload your photo — a clear selfie or portrait works best.
  2. Run — AI scans millions of celebrity faces to find your match.
  3. Discover your twin — see which celebrity you resemble most.
  4. Share — brag to your friends (or keep it secret if it's awkward).

Pricing

OutputCost
Per match$0.05

Best Use Cases

  • Social media fun — Share your celebrity match and watch the reactions.
  • Party icebreaker — Who's everyone's celebrity twin? Find out together.
  • Curiosity fix — You've always wondered. Now you'll know.
  • Profile inspiration — Style yourself after your celebrity match.
  • Gift idea — Surprise friends with their celebrity look-alike results.

Pro Tips

  • Front-facing, well-lit photos give the most accurate matches.
  • Neutral expressions work better than big smiles or funny faces.
  • Remove sunglasses and hats — the AI needs to see your full face.
  • Higher resolution photos = better results.
  • Try different photos — you might match different celebrities depending on the angle!

Notes

  • Image is the only required field.
  • Ensure uploaded image URLs are publicly accessible.
  • For entertainment purposes — celebrity matches are based on facial similarity only.
  • Please use responsibly and respect others' likeness.
Accessibility:This website uses AI models provided by third parties.

Ai Celebrity Look Alike Finder API — Quick start

Grab a WaveSpeedAI API key, then call POST https://api.wavespeed.ai/api/v3/wavespeed-ai/ai-celebrity-look-alike-finder with your input as JSON. The endpoint returns a prediction id; poll the prediction endpoint until status flips to completed, then read the output URL from data.outputs[0]. Examples for Ai Celebrity Look Alike Finder below.

HTTP example
# Submit the prediction
curl -X POST "https://api.wavespeed.ai/api/v3/wavespeed-ai/ai-celebrity-look-alike-finder" \
  -H "Content-Type: application/json" \
  -H "Authorization: Bearer $WAVESPEED_API_KEY" \
  -d '{
    "image": "https://example.com/your-input.jpg"
}'

# Response includes a prediction id. Poll for the result:
curl -X GET "https://api.wavespeed.ai/api/v3/predictions/{request_id}/result" \
  -H "Authorization: Bearer $WAVESPEED_API_KEY"

# When status is "completed", read the output from data.outputs[0].
Node.js example
// npm install wavespeed
const WaveSpeed = require('wavespeed');

const client = new WaveSpeed(); // reads WAVESPEED_API_KEY from env

const result = await client.run("wavespeed-ai/ai-celebrity-look-alike-finder", {
        "image": "https://example.com/your-input.jpg"
});

console.log(result.outputs[0]); // → URL of the generated output
Python example
# pip install wavespeed
import wavespeed

output = wavespeed.run(
    "wavespeed-ai/ai-celebrity-look-alike-finder",
    {
    "image": "https://example.com/your-input.jpg"
}
)

print(output["outputs"][0])  # → URL of the generated output

Ai Celebrity Look Alike Finder API — Frequently asked questions

What is the Ai Celebrity Look Alike Finder API?

Ai Celebrity Look Alike Finder is a WaveSpeedAI model for image editing, exposed as a REST API on WaveSpeedAI. AI Celebrity Look-Alike Finder analyzes a portrait and finds the closest celebrity match. Upload a face photo and discover which celebrity you resemble. Ready-to-use REST inference API, no coldstarts, affordable pricing. You can call it programmatically or try it from the playground above.

How do I call the Ai Celebrity Look Alike Finder API?

POST your input parameters to the model's REST endpoint (shown in the API tab of this playground) with your WaveSpeedAI API key in the Authorization header. Submission returns a prediction ID; poll the prediction endpoint until status flips to "completed", then read the output URL from the result. The playground generates a ready-to-paste code sample in Python, JavaScript, or cURL for whatever inputs you've set. Full request/response shape is documented at https://wavespeed.ai/docs/docs-api/wavespeed-ai/ai-celebrity-look-alike-finder.

How much does Ai Celebrity Look Alike Finder cost per run?

Ai Celebrity Look Alike Finder starts at $0.050 per run. That figure is the base price — the final charge scales with the parameters you set in the form (output size, length, count, references, or whatever knobs this model exposes), so a higher-quality or larger output costs more than a minimal one. The exact cost for your current input is shown live next to the Generate button before you submit, and the actual per-call charge is recorded on the prediction afterwards.

What inputs does Ai Celebrity Look Alike Finder accept?

Key inputs: `image`. The full JSON schema (types, defaults, allowed values) is rendered above the Generate button and mirrored in the API reference at https://wavespeed.ai/docs/docs-api/wavespeed-ai/ai-celebrity-look-alike-finder.

How do I get started with the Ai Celebrity Look Alike Finder API?

Sign up for a free WaveSpeedAI account to claim starter credits, copy your API key from /accesskey, then call the endpoint shown in the API tab of the playground. The playground also auto-generates a code sample in Python, JavaScript, or cURL for the parameters you've set.

Can I use Ai Celebrity Look Alike Finder outputs commercially?

Commercial usage rights depend on the model's license, set by its provider (WaveSpeedAI). The license summary appears on the model card above; see WaveSpeedAI's Terms of Service for platform-level conditions.