← Eventbrite

Get Event Details with Eventbrite API

Pipedream makes it easy to connect APIs for Eventbrite and 1000+ other apps remarkably fast.

Trigger workflow on
HTTP requests, schedules and app events
Next, do this
Get Event Details with the Eventbrite API
No credit card required
Into to Pipedream
Watch us build a workflow
Watch us build a workflow
7 min
Watch now ➜

Trusted by 500,000+ developers from startups to Fortune 500 companies

Adyen logo
Brex logo
Carta logo
Checkr logo
Chameleon logo
DevRev logo
LinkedIn logo
Netflix logo
New Relic logo
OnDeck logo
Replicated logo
Scale AI logo
Teamwork logo
Warner Bros. logo
Xendit logo

Developers Pipedream

Getting Started

Create a workflow to Get Event Details with the Eventbrite API. When you configure and deploy the workflow, it will run on Pipedream's servers 24x7 for free.

  1. Configure the Get Event Details action
    1. Connect your Eventbrite account
    2. Configure Event ID
  2. Select a trigger to run your workflow on HTTP requests, schedules or app events
  3. Deploy the workflow
  4. Send a test event to validate your setup
  5. Turn on the trigger

Integrations

Get Event Details with Eventbrite API on New Requests (Payload Only) from HTTP / Webhook API
HTTP / Webhook + Eventbrite
 
Try it
Get Event Details with Eventbrite API on New Submission from Typeform API
Typeform + Eventbrite
 
Try it
Get Event Details with Eventbrite API on Custom Events from Zoom API
Zoom + Eventbrite
 
Try it
Get Event Details with Eventbrite API on New Submission (Instant) from Jotform API
Jotform + Eventbrite
 
Try it
Get Event Details with Eventbrite API on New Custom Webhook Events from Stripe API
Stripe + Eventbrite
 
Try it

Details

This is a pre-built, source-available component from Pipedream's GitHub repo. The component is developed by Pipedream and the community, and verified and maintained by Pipedream.

To contribute an update to an existing component or create a new component, create a PR on GitHub. If you're new to Pipedream component development, you can start with quickstarts for trigger span and action development, and then review the component API reference.

Get Event Details on Eventbrite
Description:Get details for a specified event. [see docs here](https://www.eventbrite.com/platform/api#/reference/event/retrieve/retrieve-an-event)
Version:0.0.1
Key:eventbrite-get-event-details

Code

import eventbrite from "../../eventbrite.app.mjs";

export default {
  key: "eventbrite-get-event-details",
  name: "Get Event Details",
  description: "Get details for a specified event. [see docs here](https://www.eventbrite.com/platform/api#/reference/event/retrieve/retrieve-an-event)",
  version: "0.0.1",
  type: "action",
  props: {
    eventbrite,
    eventId: {
      propDefinition: [
        eventbrite,
        "eventId",
      ],
    },
  },
  async run({ $ }) {
    const event = await this.eventbrite.getEvent($, this.eventId);
    $.export("$summary", "Successfully fetched event details");
    return event;
  },
};

Configuration

This component may be configured based on the props defined in the component code. Pipedream automatically prompts for input values in the UI and CLI.
LabelPropTypeDescription
EventbriteeventbriteappThis component uses the Eventbrite app.
Event IDeventIdinteger

Enter the ID of an event

Authentication

Eventbrite uses OAuth authentication. When you connect your Eventbrite account, Pipedream will open a popup window where you can sign into Eventbrite and grant Pipedream permission to connect to your account. Pipedream securely stores and automatically refreshes the OAuth tokens so you can easily authenticate any Eventbrite API.

Pipedream requests the following authorization scopes when you connect your account:

About Eventbrite

Eventbrite brings people together through live experiences. Discover events that match your passions, or create your own with online ticketing tools.

More Ways to Use Eventbrite

Triggers

New Attendee Check-In (Instant) from the Eventbrite API

Emit new event when an attendee checks in to an event

 
Try it
New Attendee Registered (Instant) from the Eventbrite API

Emit new event when an attendee registers for an event

 
Try it
New Event (Instant) from the Eventbrite API

Emit new event when an event has been created

 
Try it
New Event Ended from the Eventbrite API

Emit new event when an event has ended

 
Try it
New Event Updated (Instant) from the Eventbrite API

Emit new event when an event has been updated

 
Try it

Actions

Create Event with the Eventbrite API

Create a new Eventbrite event. see docs here

 
Try it
Get Event Attendees with the Eventbrite API

Get event attendees for a specified event. see docs here

 
Try it
Get Event Summary with the Eventbrite API

Get event summary for a specified event. see docs here

 
Try it