From a One-Line Idea to a Full Adult Script
How the Nureta script API turns a single sentence into a titled adult storyboard — characters and per-scene beats — for a flat $0.01, with no render.
2 min read
You have a one-line idea. The Nureta script API turns it into a structured adult storyboard — a title, named characters, and a sequence of scenes each with a setting, a beat, and a duration — for a flat $0.01. It is the same v3 director the video path uses, stopped after the writing. No images, no render, just the script.
One call, one sentence
POST /api/v3/contents/scripts with a single text idea. The director expands it into scenes; duration controls how many. Explicit is native — describe an adult premise plainly and it writes it as one.
curl -s -X POST "$TOKENSTORE_URL/api/v3/contents/scripts" \
-H "Authorization: Bearer sk-..." -H "Content-Type: application/json" \
-d '{
"model": "seahorse-script",
"content": [{ "type": "text", "text": "two strangers share a hotel room after a missed flight" }],
"duration": 40
}'
# => {"id": "cgt-..."}What comes back
Poll GET /api/v3/contents/scripts/:id until succeeded. The response carries content.script: a title, a characters list, and a scenes array — each scene with an index, a setting, a beat (what happens), and a durationSeconds. It is structured data you can render, edit, or hand to the video path.
Duration scales scenes, not price
duration is an integer from 5 to 180 seconds (default 30). It scales how many scenes the script has — a longer duration means a longer storyboard — but the price stays a flat $0.01. Ask for the length your final video will be so the beat count matches.
Why write the script first
- At $0.01 it is the cheapest way to explore a premise before spending on a render.
- You get an editable structure — reorder, rewrite, or cut beats before committing.
- The same scenes drop straight into the video storyboard as segments.
Writing a strong idea line
A good idea line gives the director a situation and a tension: who, where, and what pulls them together. Keep it to one sentence — the director fills in the scenes. Patterns and templates are in how to write an NSFW script with AI and NSFW script prompt templates.
Where to go next
Pace the beats with build-up vs explicit beats, then turn the script into video via script to video handoff. Field reference: script API docs and your API key.
Write a script in the playground →