Playground

Flux Studio Pro

Use this page to configure input, run a prediction, inspect status and output, and then lift the same call pattern into your product.

Playground
Run this model now
prediction output
3.1s
Homepage hero that feels product-ready
Balanced contrast, premium shadows, and UI framing that feels ready for a pricing page, docs page, or product hero section.
2.8s
Poster-ready campaign visual
Built to leave enough negative space for messaging, badges, and model stats overlays.
curl
API sample
curl -s -X POST https://www.founderhooks.com/api/v1/predictions \
  -H "Authorization: Bearer $FOUNDERHOOKS_API_TOKEN" \
  -H "Content-Type: application/json" \
  -d '{
    "model": "black-forest-labs/flux-schnell",
    "input": {
      "prompt": "Generate a polished product visual for an AI platform homepage"
    },
    "wait": 10
  }'
JavaScript
API sample
const response = await fetch("https://www.founderhooks.com/api/v1/predictions", {
  method: "POST",
  headers: {
    Authorization: `Bearer ${process.env.FOUNDERHOOKS_API_TOKEN}`,
    "Content-Type": "application/json",
  },
  body: JSON.stringify({
    model: "black-forest-labs/flux-schnell",
    input: {
      "prompt": "Generate a polished product visual for an AI platform homepage"
    },
    wait: 10,
  }),
});

const prediction = await response.json();
Python
API sample
import os
import requests

response = requests.post(
    "https://www.founderhooks.com/api/v1/predictions",
    headers={
        "Authorization": "Bearer " + os.environ["FOUNDERHOOKS_API_TOKEN"],
        "Content-Type": "application/json",
    },
    json={
        "model": "black-forest-labs/flux-schnell",
        "input": {
            "prompt": "Generate a polished product visual for an AI platform homepage"
        },
        "wait": 10,
    },
)
print(response.json())