Skip to Content

JSON Extract

Extract nested JSON properteis into new output fields.

ProviderBilling Mode
Docs
CredentialsCost per record
Docs
P
pipe0
Always
Managed

0.00 credits

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: "json:extract@1", 
    }],
    input: []
  })
});