YepAPI
AI Models

Riverflow 2.5 Pro

Sourceful's flagship Riverflow 2.5 model. Design and brand-focused AI image generation and editing.

POST/v1/media/queue
from $0.36/image

Overview

Sourceful's flagship Riverflow 2.5 model — design and brand-focused image generation and editing. Async operation — submit a job, poll for completion.

PropertyValue
Model IDsourceful/riverflow-v2.5-pro
ProviderSourceful
Aspect Ratios1:1, 4:3, 3:4, 3:2, 2:3, 16:9, 9:16, 21:9, auto
Output Formatspng, jpeg, webp
Reference ImagesSupported
BillingDynamic (actual cost per job)
Typical Cost~$0.36 per image

Usage

All media models use the async job queue. Submit a job, then poll for the result.

Step 1: Submit Job

Text-to-Image

const res = await fetch('https://api.yepapi.com/v1/media/queue', {
  method: 'POST',
  headers: {
    'x-api-key': 'YOUR_API_KEY',
    'Content-Type': 'application/json',
  },
  body: JSON.stringify({
    model: 'sourceful/riverflow-v2.5-pro',
    prompt: 'A futuristic city skyline at sunset with flying vehicles',
    options: { aspectRatio: '1:1' },
  }),
});
const { data } = await res.json();
// data.jobId — use this to poll for results
curl -X POST https://api.yepapi.com/v1/media/queue \
  -H "x-api-key: YOUR_API_KEY" \
  -H "Content-Type: application/json" \
  -d '{"model": "sourceful/riverflow-v2.5-pro", "prompt": "A futuristic city skyline at sunset with flying vehicles", "options": {"aspectRatio": "1:1"}}'

Image-to-Image (Edit / Transform)

Pass a reference image via imageData alongside your prompt to edit or transform an existing image.

const res = await fetch('https://api.yepapi.com/v1/media/queue', {
  method: 'POST',
  headers: {
    'x-api-key': 'YOUR_API_KEY',
    'Content-Type': 'application/json',
  },
  body: JSON.stringify({
    model: 'sourceful/riverflow-v2.5-pro',
    prompt: 'Make the sky purple and add northern lights',
    options: { aspectRatio: '1:1' },
    imageData: {
      mimeType: 'image/png',
      base64: '...', // Base64-encoded image
    },
  }),
});

Step 2: Poll for Result

const status = await fetch(`https://api.yepapi.com/v1/media/status/${data.jobId}`, {
  headers: { 'x-api-key': 'YOUR_API_KEY' },
});
const { data: job } = await status.json();
// job.status — "pending" | "processing" | "completed" | "failed"
// job.result.image — { mimeType, base64 } when completed
curl https://api.yepapi.com/v1/media/status/JOB_ID \
  -H "x-api-key: YOUR_API_KEY"

Request Body

ParameterTypeRequiredDescriptionDefault
modelstringYessourceful/riverflow-v2.5-pro or alias riverflow
promptstringYesText description of the image to generate or edit
options.aspectRatiostringNoOne of: 1:1, 4:3, 3:4, 3:2, 2:3, 16:9, 9:16, 21:9, auto1:1
options.outputFormatstringNopng, jpeg, webppng
imageData.mimeTypestringNoMIME type of input image (image/png, image/jpeg, image/webp)
imageData.base64stringNoBase64-encoded input image for image-to-image editing

Pricing

Billing is dynamic — each job is billed from the actual cost of that generation.

MetricCost
Typical cost per image~$0.36
Info

Image jobs typically complete in 5–60 seconds. Results retained for 1 hour.

Under the Hood

Powered by Sourceful's Riverflow 2.5 Pro via our AI provider. 100% margin on upstream costs.

On this page