Skip to Content

Custom AI Prompt

Executes configurable AI prompts with structured output fields.

ProviderBilling Mode
Docs
CredentialsCost per record
Docs
P
pipe0
Always
Managed

0.5 credits

const result = await fetch("https://api.pipe0.com/v1/run/sync", {
  method: "POST",
  headers: {
    "Authorization": `Bearer ${API_KEY}`,
  },
  body: JSON.stringify({
    pipes: [{ 
      pipe_id: "run:prompt@1", 
    }],
    input: []
  })
});