Create a Thumbnail Job
Create an asynchronous thumbnail generation job by making a POST request to https://api.opus.pro/api/generative-jobs. Returns a jobId to poll. Charges 7 credits when the job completes successfully; refunds on failure.
Documentation Index
Fetch the complete documentation index at: https://help.opus.pro/llms.txt
Use this file to discover all available pages before exploring further.
thumbnail.Authorizations
Bearer authentication header of the form Bearer <token>, where <token> is your auth token.
Body
The type of generative job to create. Currently the only published value is thumbnail.
thumbnail URL of the source video to extract thumbnails from.
"https://youtube.com/watch?v=..."
Optional reference image URL. The thumbnail composition draws stylistic cues from this image. Upload via POST /api/upload-links with usecase: 'FreeToolMedia', then pass the returned cdnUrl here.
"https://cdn.opus.pro/uploads/.../ref.png"
Optional mask image URL for inpainting.
"https://cdn.opus.pro/uploads/.../mask.png"
Optional text prompt steering the thumbnail composition.
"punchy red overlay, bold sans-serif title"
Response
The generated job ID. Use it with GET /api/generative-jobs/{jobId} to poll status and fetch results.
"thumbnail-aB3xR7nQ8z"