Split a full name into first and last name.
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: "people:name:split@1",
}],
input: []
})
});