Executes configurable AI prompts with structured output fields.
This pipe's input fields can be configured by you.
This pipe's output fields can be configured by you.
const result = await fetch("https://api.pipe0.com/v1/pipes/run", {
method: "POST",
headers: {
"Authorization": `Bearer ${API_KEY}`,
"Content-Type": "application/json",
},
body: JSON.stringify({
pipes: [{
pipe_id: "prompt:run@1",
}],
input: []
})
});