Your work earns royalties.
- Create
- List on shelf or drop to auction
- Buyer buys or wins bid
- Rights ship
- You get 85%
MARKETPLACE
Brands post paid briefs. Creators sell assets on the shelf. Signature work goes to auction.
HOW IT WORKS
BRIEF BOARD · 7 OPEN
Hot
Open
Open
Hot
Open
New
Open DROPS · LIVE AUCTIONS
Ed. 1 / 5 HOT 2h 14m
Ed. 1 / 1 18h 03m
Ed. 3 / 10 4d 12h
Ed. 1 / 25 HOT 1h 42m ON THE SHELF · 6+ LIVE
INTEGRATIONS
import { Studiark } from "@studiark/sdk";
const sk = new Studiark({ token: process.env.STUDIARK_TOKEN });
const job = await sk.generate.video({
prompt: "cinematic product spot, 5s",
preset: "DOLLY_ZOOM_IN",
aspectRatio: "16:9",
routing: "auto", // picks Veo, Sora, Kling…
rights: { channels: ["youtube", "tiktok"] },
});
// sk.on("job.completed", …)from studiark import Studiark
sk = Studiark(token=os.environ["STUDIARK_TOKEN"])
job = sk.generate.video(
prompt="cinematic product spot, 5s",
preset="DOLLY_ZOOM_IN",
aspect_ratio="16:9",
routing="auto", # picks Veo, Sora, Kling…
rights={"channels": ["youtube", "tiktok"]},
)
# sk.on("job.completed", …)sk := studiark.New(os.Getenv("STUDIARK_TOKEN"))
job, err := sk.Generate.Video(ctx, &studiark.VideoReq{
Prompt: "cinematic product spot, 5s",
Preset: "DOLLY_ZOOM_IN",
AspectRatio: "16:9",
Routing: "auto", // picks Veo, Sora, Kling…
Rights: &studiark.Rights{Channels: []string{"youtube", "tiktok"}},
})
// sk.On("job.completed", …) REST / Connect SDK
Typed clients for TypeScript, Python, and Go.
Webhooks
Event stream for job and rights lifecycle events.
Batch API
Thousands of generations per request with credit estimates upfront.
Embed SDK
Drop review links or preset pickers into your own app.