Website logo
⌘K
API quickstart
Welcome
Forming API requests
Response status codes
Rate-limiting & pagination
How data is structured in Brella
A note on external_id fields
Authentication & API keys
Changelog
Events
Invites
Attendees
RSVP & Session check-in
Get all RSVPs by attendee id
Get all RSVPs by timeslot id
Create RSVP for timeslot
Delete RSVP from timeslot
Sponsors
Speakers
Schedule
Statistics & analytics
Get all meetings & chats by attendee id (cloned)
Get meeting or chat by id
Get tracking sessions by attendee id
Get tracking session slices by attendee id
Webhooks
Docs powered by Archbee
Events

Find event by name

1min
Find and retrieve the relevant data for a specific event within an organization by using the event's name as a query parameter
GET
Params
Path Params
{organizationId}
required
Number
The id of the Brella organization you are trying to retrieve data from
{eventId}
required
Number
The id of the Brella event you are trying to retrieve data from
Query Parameters
name
required
String
The name of the event you are searching for. This can also be found in the details tab of your event's Admin Panel.
Header Parameters
Brella-API-Access-Token
required
String
Your unique Brella API key
Accept
required
String
application/vnd.brella.v4+json
Content-Type
required
String
application/json
Curl
curl --location -g --request GET 'https://api.brella.io/api/integration/organizations/{organizationId}/events/{eventId}/?name={url_slug}' \
--header 'Brella-API-Access-Token: String' \
--header 'Accept: application/vnd.brella.v4+json' \
--header 'Content-Type: application/json'
Responses
200
{
  "data": {
    "id": "6523",
    "type": "event",
    "attributes": {
      "id": "6523",
      "name": "Worchester Test",
      "location": "",
      "address": "",
      "start-date": "2027-11-01",
      "end-date": "2027-11-03",
      "past": "false",
      "table-nickname": "table",
      "infoarea-photo-url": "",
      "cover-photo-url": {},
      "logo-large-url": {},
      "logo-small-url": {},
      "uses-interests": "true",
      "uses-timeslots": "true",
      "uses-tables": "false",
      "uses-sponsors": "true",
      "uses-speakers": "true",
      "event-type": "hybrid",
      "uses-stream-link": "false",
      "uses-meeting-slots": "true",
      "uses-event-chat": "true",
      "uses-timeslot-chat": "false",
      "uses-wizard": "false",
      "uses-ticketing": "true",
      "uses-sponsor-booth-links": "false",
      "industry": "Artificial Intelligence",
      "city": {},
      "country": "Finland",
      "region": {},
      "created-at": "2022-11-10T11:42:10.884Z",
      "updated-at": "2022-12-13T16:39:34.890Z",
      "content": {},
      "sponsors-name": "Partners",
      "primary-color": {},
      "secondary-color": {},
      "intent-pair-ids": {},
      "uses-reception-page": "true",
      "launches-at": "2022-11-22T06:38:46.000Z",
      "start-time-utc": "2027-10-31T22:00:00.000Z",
      "end-time-utc": "2027-11-02T22:00:00.000Z",
      "chat-channel-id": "event-6523",
      "slug": "woesttest",
      "time-zone": "Europe/Helsinki"
    },
    "relationships": {
      "tickets": {
        "data": []
      }
    }
  }
}




Updated 13 Apr 2023
Did this page help you?
PREVIOUS
Find event by URL slug
NEXT
List all user groups / attendee groups
Docs powered by Archbee
TABLE OF CONTENTS
GET
Find event by name
Docs powered by Archbee