Replicate logo

Replicate

Free tier

Run open-source AI models in the cloud via a simple API — images, video, audio, and LLMs.

Free tier available·Technical·Powered by Various (open-source)·API available·Open source

Key strengths

1000s of open-source modelspay-per-secondCog packagingdeployments
Free tier + paid plans
San Francisco, US
Founded 2021
No ratings yet

Running a prediction

import replicate
output = replicate.run(
    "black-forest-labs/flux-schnell",
    input={"prompt": "a photorealistic cat astronaut", "num_outputs": 4}
)
for url in output:
    print(url)  # direct image URLs

Webhooks

Pass webhook + webhook_events_filter to receive async notifications instead of polling. Useful for long-running models.