Use this file to discover all available pages before exploring further.
This guide walks you from zero to a successful image generation, then a video generation.
Prerequisites: an account at app.rimp.example and an API key from Settings → API keys.
This is Rimp’s headline feature — same prompt, N models, atomic credit reservation.
const cmp = await client.comparisons.create({ prompt: 'cinematic portrait of a fisherman at golden hour, 35mm film', models: ['flux-pro', 'imagen-4', 'ideogram-v2'], params_shared: { aspect_ratio: '1:1' },});// Poll once, get all three resultsconst result = await client.comparisons.waitFor(cmp.id);result.generations.forEach((g) => console.log(g.model, g.outputs[0].url));
If your wallet can’t cover the sum of all three estimates, the API returns 402 Insufficient creditsbefore charging anything.