Humanitix is the humane choice for tickets. We're the first and only not-for-profit ticketing platform that gives 100% of the profit from booking fees to children's charities to create a fairer and more equitable world.
Go to siteWith the Humanitix API, you can build applications that allow users to:
Here are some examples of what you can build with the Humanitix API:
import { axios } from "@pipedream/platform"
export default defineComponent({
props: {
humanitix: {
type: "app",
app: "humanitix",
}
},
async run({steps, $}) {
return await axios($, {
url: `https://api.humanitix.com/v1/tags`,
headers: {
"x-api-key": `${this.humanitix.$auth.api_key}`,
"Content-Type": `application/json`,
},
params: {
page: `1`,
},
})
},
})
Humanitix uses API keys for authentication. When you connect your Humanitix account, Pipedream securely stores the keys so you can easily authenticate to Humanitix APIs in both code and no-code steps.
To retrieve your API key,