PROMPT 详情

Surreal photorealistic composite: a Victorian reading room o

Surreal photorealistic composite: a Victorian reading room opening through a large ornate doorway directly onto the surface of the Moon, warm lamplight from the room spilling onto grey lunar regolith, Earth's curve visible on the horizon through the doorway, a Victorian-dressed figure standing at the threshold looking out, equal photographic realism on both interior and exterior, lighting continuity across the boundary
/api/v1/runapi/text_to_image
运行信息
模型
提供方
Runapi
服务
Runapi
Endpoint
Text To Image
1. claude mcp add runapi -s user -- npx -y @runapi.ai/mcp
2. 重启 Claude Code
3. 粘贴这个 prompt:生成一张图像:"Surreal photorealistic composite: a Victorian reading room opening through a large ornate doorway directly onto the surface of the Moon, warm lamplight from the room spilling onto grey lunar regolith, Earth's curve visible on the horizon through the doorway, a Victorian-dressed figure standing at the threshold looking out, equal photographic realism on both interior and exterior, lighting continuity across the boundary"
1. codex plugin install runapi-mcp@agents
2. 重启 Codex
3. 粘贴这个 prompt:生成一张图像:"Surreal photorealistic composite: a Victorian reading room opening through a large ornate doorway directly onto the surface of the Moon, warm lamplight from the room spilling onto grey lunar regolith, Earth's curve visible on the horizon through the doorway, a Victorian-dressed figure standing at the threshold looking out, equal photographic realism on both interior and exterior, lighting continuity across the boundary"
1. npx @runapi.ai/mcp init cursor
2. 重启 Cursor
3. 粘贴这个 prompt:生成一张图像:"Surreal photorealistic composite: a Victorian reading room opening through a large ornate doorway directly onto the surface of the Moon, warm lamplight from the room spilling onto grey lunar regolith, Earth's curve visible on the horizon through the doorway, a Victorian-dressed figure standing at the threshold looking out, equal photographic realism on both interior and exterior, lighting continuity across the boundary"
1. npx @runapi.ai/mcp init windsurf
2. 重启 Windsurf
3. 粘贴这个 prompt:生成一张图像:"Surreal photorealistic composite: a Victorian reading room opening through a large ornate doorway directly onto the surface of the Moon, warm lamplight from the room spilling onto grey lunar regolith, Earth's curve visible on the horizon through the doorway, a Victorian-dressed figure standing at the threshold looking out, equal photographic realism on both interior and exterior, lighting continuity across the boundary"
curl -X POST https://runapi.ai/api/v1/runapi/text_to_image \
  -H "Authorization: Bearer $RUNAPI_KEY" \
  -H "Content-Type: application/json" \
  --data-binary @- <<'JSON'
{
  "prompt": "Surreal photorealistic composite: a Victorian reading room opening through a large ornate doorway directly onto the surface of the Moon, warm lamplight from the room spilling onto grey lunar regolith, Earth's curve visible on the horizon through the doorway, a Victorian-dressed figure standing at the threshold looking out, equal photographic realism on both interior and exterior, lighting continuity across the boundary"
}
JSON
import { RunapiClient } from "@runapi.ai/runapi";

const client = new RunapiClient({
  apiKey: process.env.RUNAPI_API_KEY,
});

const result = await client.textToImage.run({
  "prompt": "Surreal photorealistic composite: a Victorian reading room opening through a large ornate doorway directly onto the surface of the Moon, warm lamplight from the room spilling onto grey lunar regolith, Earth's curve visible on the horizon through the doorway, a Victorian-dressed figure standing at the threshold looking out, equal photographic realism on both interior and exterior, lighting continuity across the boundary"
});
console.log(result.id);
require "runapi/runapi"

client = RunApi::Runapi::Client.new
result = client.text_to_image.run(
  prompt: "Surreal photorealistic composite: a Victorian reading room opening through a large ornate doorway directly onto the surface of the Moon, warm lamplight from the room spilling onto grey lunar regolith, Earth's curve visible on the horizon through the doorway, a Victorian-dressed figure standing at the threshold looking out, equal photographic realism on both interior and exterior, lighting continuity across the boundary"
)
puts result.id
package main

import (
  "context"
  "fmt"
  "log"
  "net/http"
  "os"
  "strings"
)

func main() {
  body := strings.NewReader("{\"prompt\":\"Surreal photorealistic composite: a Victorian reading room opening through a large ornate doorway directly onto the surface of the Moon, warm lamplight from the room spilling onto grey lunar regolith, Earth's curve visible on the horizon through the doorway, a Victorian-dressed figure standing at the threshold looking out, equal photographic realism on both interior and exterior, lighting continuity across the boundary\"}")
  req, err := http.NewRequestWithContext(context.Background(), http.MethodPost, "https://runapi.ai/api/v1/runapi/text_to_image", body)
  if err != nil {
    log.Fatal(err)
  }

  req.Header.Set("Authorization", "Bearer "+os.Getenv("RUNAPI_API_KEY"))
  req.Header.Set("Content-Type", "application/json")

  resp, err := http.DefaultClient.Do(req)
  if err != nil {
    log.Fatal(err)
  }
  defer resp.Body.Close()

  fmt.Println(resp.Status)
}
/api/v1/runapi/text_to_image 获取 API Key
相关 PROMPTS

更多相似 prompts

IM
图像
Abstract and Artistic

Abstract geometric pattern designed for surface printing, ov

Abstract geometric pattern designed for surface printing, overlapping circles forming a grid generating Vesica piscis shapes, deep indigo, terracotta, and cream color palette, flat graphic rendering with zero shadow, mathematically precise edges, dense repeating tile with fractal edge qualities, contemporary textile and wallpaper surface design, vector aesthetic

查看 API 代码
curl -X POST https://runapi.ai/api/v1/runapi/text_to_image \
  -H "Authorization: Bearer $RUNAPI_KEY" \
  -H "Content-Type: application/json" \
  --data-binary @- <<'JSON'
{
  "prompt": "Abstract geometric pattern designed for surface printing, overlapping circles forming a grid generating Vesica piscis shapes, deep indigo, terracotta, and cream color palette, flat graphic rendering with zero shadow, mathematically precise edges, dense repeating tile with fractal edge qualities, contemporary textile and wallpaper surface design, vector aesthetic"
}
JSON
IM
图像
Abstract and Artistic

Vast library spiraling upward without a visible ceiling, boo

Vast library spiraling upward without a visible ceiling, bookshelves curving inward following impossible non-Euclidean architecture, warm amber light emanating from inside the books themselves rather than any external light fixtures, a small solitary figure reading on the floor in the lower center for scale, warm amber, mahogany, and pale gold tones, atmosphere dense with the weight of accumulated knowledge, shot with ultra-wide lens

查看 API 代码
curl -X POST https://runapi.ai/api/v1/runapi/text_to_image \
  -H "Authorization: Bearer $RUNAPI_KEY" \
  -H "Content-Type: application/json" \
  --data-binary @- <<'JSON'
{
  "prompt": "Vast library spiraling upward without a visible ceiling, bookshelves curving inward following impossible non-Euclidean architecture, warm amber light emanating from inside the books themselves rather than any external light fixtures, a small solitary figure reading on the floor in the lower center for scale, warm amber, mahogany, and pale gold tones, atmosphere dense with the weight of accumulated knowledge, shot with ultra-wide lens"
}
JSON
IM
图像
Abstract and Artistic

High-resolution abstract digital painting featuring vivid co

High-resolution abstract digital painting featuring vivid colors in constant fluid motion, layered textured brush strokes creating depth and movement, inspired by the emotional intensity of Van Gogh's swirling skies merged with the chaotic energy of Jackson Pollock's drip technique, deep blues bleeding into fiery oranges and electric purples, thick impasto texture visible throughout

查看 API 代码
curl -X POST https://runapi.ai/api/v1/runapi/text_to_image \
  -H "Authorization: Bearer $RUNAPI_KEY" \
  -H "Content-Type: application/json" \
  --data-binary @- <<'JSON'
{
  "prompt": "High-resolution abstract digital painting featuring vivid colors in constant fluid motion, layered textured brush strokes creating depth and movement, inspired by the emotional intensity of Van Gogh's swirling skies merged with the chaotic energy of Jackson Pollock's drip technique, deep blues bleeding into fiery oranges and electric purples, thick impasto texture visible throughout"
}
JSON
IM
图像
Abstract and Artistic

Abstract macro of layered peeling paint on an old iron surfa

Abstract macro of layered peeling paint on an old iron surface revealing geological-like strata — deep cobalt blue outermost layer, then mint green, then cream, then raw rust beneath — layers separating and curling like mountain ranges, extreme close-up where paint becomes landscape, sharp foreground focus falling to softer depth behind, cobalt, mint, cream, and iron rust palette

查看 API 代码
curl -X POST https://runapi.ai/api/v1/runapi/text_to_image \
  -H "Authorization: Bearer $RUNAPI_KEY" \
  -H "Content-Type: application/json" \
  --data-binary @- <<'JSON'
{
  "prompt": "Abstract macro of layered peeling paint on an old iron surface revealing geological-like strata — deep cobalt blue outermost layer, then mint green, then cream, then raw rust beneath — layers separating and curling like mountain ranges, extreme close-up where paint becomes landscape, sharp foreground focus falling to softer depth behind, cobalt, mint, cream, and iron rust palette"
}
JSON
IM
图像
Abstract and Artistic

Abstract color-field painting with photographic quality, war

Abstract color-field painting with photographic quality, warm raw sienna occupying the upper two-thirds meets cool deep teal in the lower third at an imprecise hand-painted edge with a thin blended transition band, canvas texture visible throughout, single small bright cadmium yellow area near left center as the sole contrast, Rothko-influenced simplicity with contemporary color sensitivity

查看 API 代码
curl -X POST https://runapi.ai/api/v1/runapi/text_to_image \
  -H "Authorization: Bearer $RUNAPI_KEY" \
  -H "Content-Type: application/json" \
  --data-binary @- <<'JSON'
{
  "prompt": "Abstract color-field painting with photographic quality, warm raw sienna occupying the upper two-thirds meets cool deep teal in the lower third at an imprecise hand-painted edge with a thin blended transition band, canvas texture visible throughout, single small bright cadmium yellow area near left center as the sole contrast, Rothko-influenced simplicity with contemporary color sensitivity"
}
JSON
IM
图像
Abstract and Artistic

A frozen cosmic rose floating in deep space, the petals glit

A frozen cosmic rose floating in deep space, the petals glitter with a crystalline shimmer catching starlight, swirling colorful nebulas in the background, 8k unreal engine photorealism quality, ethereal blue and purple lighting, red petals transitioning to ice-blue at the frost-covered tips, nighttime darkness of space, surreal conceptual art

查看 API 代码
curl -X POST https://runapi.ai/api/v1/runapi/text_to_image \
  -H "Authorization: Bearer $RUNAPI_KEY" \
  -H "Content-Type: application/json" \
  --data-binary @- <<'JSON'
{
  "prompt": "A frozen cosmic rose floating in deep space, the petals glitter with a crystalline shimmer catching starlight, swirling colorful nebulas in the background, 8k unreal engine photorealism quality, ethereal blue and purple lighting, red petals transitioning to ice-blue at the frost-covered tips, nighttime darkness of space, surreal conceptual art"
}
JSON
常见问题

使用这个 prompt

如何安全复制这个 prompt?

使用完整 prompt 区块旁边的复制按钮。它只复制 prompt 文本,不包含页面标签,所以可以直接粘贴到 agent 指令、JSON 请求体或你自己的 prompt 库。

为什么详情页会显示参数?

有些 prompt 采集时带有画幅、时长或声音控制等生成设置。存在参数时,页面会单独列出,方便你同时复用 prompt 文本和结构化设置。

应该调用哪个 endpoint?

使用 API 代码块里显示的 endpoint 路径。这个路径由 prompt 的 RunAPI 服务和 endpoint 名称生成,并渲染成 curl 与 SDK 示例使用的公开 API URL。

可以不用代码,直接在 agent 里用吗?

可以。在标签切换器里选择 Claude Code、Codex、Cursor 或 Windsurf,安装 RunAPI MCP Server,然后粘贴生成好的指令。指令会包含完整 prompt 文本。