Partner Program

Refer CreativeAI.
Earn rewards.

Share CreativeAI with developers, agencies, and creators in your network. Earn credit rewards for every person who signs up through your referral link.

How it works

Start earning in minutes. No application, no approval wait.

1

Sign up for CreativeAI

Create a free account to get your unique referral link and code.

2

Share with your network

Send your referral link to colleagues, clients, followers, or community members.

3

They sign up and generate

When someone joins through your link, both of you receive credit rewards.

4

Earn and grow

Track your referrals in your dashboard. The more you share, the more you earn.

Built for every kind of partner

Whether you build software, run an agency, create content, or lead a community β€” there are people in your network who need CreativeAI.

Developers & SaaS Builders

Recommend CreativeAI to fellow developers integrating image or video generation into their products.

  • Share in dev communities and forums
  • Mention in blog posts or tutorials
  • Include in open-source project READMEs

Agencies & Consultancies

Introduce your clients to a single API that replaces multiple AI subscriptions.

  • Consolidate client AI tooling
  • White-label creative workflows
  • Reduce per-seat subscription costs

Creators & Influencers

Share CreativeAI with your audience and earn rewards when they sign up and start generating.

  • YouTube or TikTok tool reviews
  • Newsletter recommendations
  • Social media affiliate links

Community Leaders & Educators

Help your community discover affordable AI generation with pay-per-use pricing.

  • Workshop and course materials
  • Discord / Slack community shares
  • Conference talks and demos

Why partners love it

A referral program that is simple, transparent, and rewarding.

Credit rewards for every referral

Earn credits when someone signs up through your link. They get a bonus too.

No caps or limits

Refer as many people as you like. There is no ceiling on rewards.

Real-time tracking

See your referral count, credits earned, and recent signups in your dashboard.

Easy sharing tools

One-click copy for your referral link and code. Share on Twitter, email, or anywhere.

Global program

Open to anyone, anywhere. No application required for the referral program.

Instant activation

Your referral link is ready the moment you create your account.

Backend Partners

Use CreativeAI as your backend

Building a product-video app, creative tool, or e-commerce automation? Ship faster by plugging into our API instead of managing model infrastructure yourself.

Per-Client API Keys

Issue separate API keys per client or product line. Track spend, set limits, and revoke access independently.

Zero Branding

No CreativeAI branding in API responses, webhooks, or error messages. Your users never see our name.

Webhook Reliability

Signed webhooks with exponential retry, 7-day dedup, and idempotent delivery. Built for production catalog-scale workloads.

Volume Pricing

Pay-per-generation with no subscriptions, no seat fees. Bulk usage drives lower effective cost per image or video.

Multi-Model Failover

Automatic 429/5xx failover across providers. Your app stays up even when upstream models hit capacity limits.

Image + Video in One API

OpenAI-compatible endpoints for both image and video generation. One integration, one billing relationship.

Quick integration β€” image + async video in one API
import openai  # standard OpenAI SDK

client = openai.OpenAI(
    base_url="https://api.creativeai.run/v1",
    api_key="rph_live_YOUR_KEY",  # per-client key
)

# Image generation β€” synchronous
image = client.images.generate(
    model="gpt-image-1",
    prompt="Product photo: wireless earbuds on marble surface",
)

# Video generation β€” async with webhook delivery
import requests
resp = requests.post(
    "https://api.creativeai.run/v1/video/generations",
    headers={"Authorization": "Bearer rph_live_YOUR_KEY"},
    json={
        "model": "kling-v2-master",
        "image_url": image.data[0].url,
        "prompt": "Slow 360-degree rotation, studio lighting",
        "webhook_url": "https://your-app.com/hooks/render-done",
    },
)
# β†’ webhook fires on completion with signed payload
Catalog-scale β€” batch product videos with webhook delivery
import asyncio, httpx

API = "https://api.creativeai.run/v1"
KEY = "rph_live_YOUR_KEY"
HEADERS = {"Authorization": f"Bearer {KEY}"}
WEBHOOK = "https://your-app.com/hooks/render-done"

# Your product catalog β€” CSV, database, or Shopify API
products = [
    {"sku": "WE-100", "image": "https://cdn.shop.com/earbuds.jpg"},
    {"sku": "WE-200", "image": "https://cdn.shop.com/headphones.jpg"},
    {"sku": "WE-300", "image": "https://cdn.shop.com/speaker.jpg"},
    # ... hundreds of SKUs
]

async def generate_product_video(client, product):
    """Submit one product video β€” webhook delivers result."""
    resp = await client.post(f"{API}/video/generations", json={
        "model": "kling-v2-master",
        "image_url": product["image"],
        "prompt": "Slow 360-degree rotation, studio lighting",
        "webhook_url": WEBHOOK,
        "metadata": {"sku": product["sku"]},
    }, headers=HEADERS)
    return {"sku": product["sku"], "job_id": resp.json()["id"]}

async def main():
    async with httpx.AsyncClient() as client:
        # Process in bounded batches to respect rate limits
        batch_size = 10
        for i in range(0, len(products), batch_size):
            batch = products[i:i + batch_size]
            jobs = await asyncio.gather(
                *[generate_product_video(client, p) for p in batch]
            )
            print(f"Submitted {len(jobs)} jobs: {jobs}")
            await asyncio.sleep(1)  # pace between batches

asyncio.run(main())
# β†’ each webhook fires independently as renders complete
# β†’ match by metadata.sku to update your product catalog

Built for teams like yours

If your product sells repeat visual output β€” product videos, ad creatives, catalog imagery, or automated content β€” our API is built to be your backend.

Product-Video Apps

Turn product images into PDP-ready videos at catalog scale. Async jobs, webhook delivery, SKU-level metadata.

Shopify video playbook

Ad Creative Platforms

Generate hundreds of ad variations per campaign. Multi-model failover keeps your pipeline running even during upstream outages.

Webhook reliability proof

Shopify & E-Commerce Tools

Batch product stills and videos from CSV or store API. Reference fidelity preserves logos, text, and packaging details.

Catalog seller workflows

Automation & Workflow Services

Plug into Make, Zapier, or custom pipelines via standard HTTP. Auto-posting, multilingual output, scheduled generation.

Automation proof

Try-On & UGC Platforms

Generate model shots, virtual try-ons, and UGC-style creatives from existing product assets. Reference fidelity keeps logos, text, and packaging consistent across scenes and SKUs.

Reference fidelity proof
Coming Soon

Advanced partner opportunities

We are building out expanded partner tiers with higher rewards, co-marketing opportunities, and dedicated support for high-volume partners. Interested in early access?

Start earning today

Sign up, grab your referral link, and share CreativeAI with people who will love it. No minimum, no approval process, no waiting.