Executes configurable AI prompts with structured output fields.
This pipe supports flexible input and output fields that can be fully defined by the user.
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: []
})
});