Bevy API GDG
  1. Search
Bevy API GDG
  • Attendee
    • Add Attendees
      POST
    • Get Attendee Search
      GET
    • Update Attendee
      PUT
    • Send Event Email
      PUT
    • Resend Event Email
      POST
    • Get Event Attendees
      GET
    • Checkin Attendee
      PUT
    • Delete attendee registration
      DELETE
    • Get Attendee by ID
      GET
    • Delete all attendee registrations by event
      DELETE
  • Order
    • Add Order
      POST
    • Update Order
      PUT
    • Check Order by ID
      GET
  • Membership
    • Add Membership
      POST
  • Bevy Virtual
    • Get Main Stage Video
      GET
    • Get Session Video IDs
      GET
    • Get Session Video URLs
      GET
  • Chapter
    • Get Chapters Status
      GET
    • Get Chapter Regions
      GET
    • Create Chapter
      POST
    • List chapters
      GET
    • Get Chapter by ID
      GET
    • List Chapter Events
      GET
    • List Chapter Members
      GET
    • Add Chapter Member
      POST
    • List Chapter Team
      GET
    • Add Chapter Team Member
      POST
    • Update Chapter Team Member
      PUT
    • Partial Update Chapter Team Member
      PATCH
    • Delete Chapter Team Member
      DELETE
    • Add chapter's members in batch
      POST
    • Delete chapter's member
      DELETE
  • Cohosted Events
    • List collaborating chapters
    • Delete cohosted event
    • Add all chapters as cohosts
    • Chapters a user can add as a cohost
  • Event
    • Get Event Counts
    • Get Event by ID
    • List events
    • List event types
    • Get Event Type by ID
    • List Event Attendees
    • List event tags
  • Search
    • Search chapters
      GET
    • Search events
      GET
  • User
    • List users
    • Get User by ID or Email
    • Update User
    • Delete User
    • Deactivate User
    • List user's events
    • List user's chapters
    • List user's chapter teams
    • Create Prospective User
    • Opt out of emails
    • Get User Counts
  1. Search

Search events

GET
/search/event/
Search
Retrieves a list of event records matching the given parameters.
Request Request Example
Shell
JavaScript
Java
Swift
curl --location --request GET '/search/event/'
Response Response Example
200 - Example 1
{
    "count": 1,
    "links": {
        "previous": null,
        "next": null
    },
    "pagination": {
        "current_page": 1,
        "next_page": 2,
        "page_size": 500,
        "previous_page": null
    },
    "results": [
        {
            "_geoloc": {
                "lat": 39.5696005,
                "lng": 2.6501603
            },
            "audience_type": "Virtual",
            "banner": {
                "url": "https://res.cloudinary.com/startup-grind/image/upload/.../image.png",
                "path": "image.png",
                "thumbnail_width": 720,
                "thumbnail_height": 540,
                "thumbnail_format": "auto",
                "thumbnail_url": "https://res.cloudinary.com/startup-grind/image/upload/.../image.png"
            },
            "chapter_city": "Palma",
            "chapter_id": 9,
            "chapter_location": "Palma, IB (ES)",
            "chapter_title": "My Chapter",
            "chapter_url": "https://support.bevylabs.com/anas-chapter/",
            "cropped_banner_url": "",
            "description_short": "Testing End Event for all warning",
            "end_date_iso": "2022-05-26T21:00:00+02:00",
            "event_timezone": "Europe/Madrid",
            "event_type": 3,
            "event_type_allow_new_agenda": false,
            "event_type_rsvp_only": true,
            "event_type_slug": "virtual-event-type",
            "event_type_title": "Virtual Event type",
            "id": 98,
            "mobile_relative_event_type": "in-person",
            "objectID": "98",
            "picture_url": "",
            "relative_url": "/events/details/support-anas-chapter-presents-testing-end-event-for-all-warning-1/",
            "start_date_iso": "2022-05-26T12:30:00+02:00",
            "title": "Testing End Event for all warning",
            "url": "https://support.bevylabs.com/events/details/support-anas-chapter-presents-testing-end-event-for-all-warning-1/",
            "venue_address": "Parque Saavedra",
            "venue_city": "CABA",
            "venue_name": "MSQ",
            "venue_zip_code": "CP12423",
            "virtual_event_type": "internal"
        }
    ]
}

Request

Query Params
status
string 
optional
past or upcoming (including live) or live events. values can be
  • past
  • live
  • upcoming
  • upcoming_only
q
string 
optional
The search query.
latitude
number 
optional
The latitude of the location to search around. Filters by chapter's location hosting the event. -90.0 … +90.0.
Default is unset.
longitude
number 
optional
The longitude of the location to search around. Filters by chapter's location hosting the event. -180.0 … +180.0.
Default is unset.
around_radius
number 
optional
The radius in kilometers to search around the location specified by latitude and longitude. 1 … 20,000
Default is 50.
chapter
integer 
optional
The ID of the chapter to retrieve events for.
region_id
integer 
optional
The ID of the region to retrieve events for.
event_type_ids
string 
optional
Event type ids to filter events by.
Example:
event_types_ids=1&event_types_ids=2
event_tags_ids
string 
optional
Event tag ids to filter events by.
Example:
event_tags_ids=meetup&event_tags_ids=learning
mobile_relative_event_type
string 
optional
The relative event type to filter events by. Values can be
  • BVC
  • BV
  • in-person

Responses

🟢200OK
application/json
successful operation
Body
count
number 
optional
Example:
1
links
object (Links) 
optional
previous
string  | null 
required
Example:
null
next
string  | null 
required
Example:
null
pagination
object (Pagination) 
optional
current_page
number 
required
Example:
1
next_page
number  | null 
required
Example:
2
page_size
number 
required
Example:
500
previous_page
number  | null 
required
Example:
null
results
array[object (SearchEvent) {30}] 
optional
_geoloc
object 
optional
audience_type
string 
optional
Example:
Virtual
banner
object (Image) 
optional
chapter_city
string 
optional
Example:
Palma
chapter_id
integer 
optional
Example:
9
chapter_location
string 
optional
Example:
Palma, IB (ES)
chapter_title
string 
optional
Example:
My Chapter
chapter_url
string 
optional
Example:
https://support.bevylabs.com/anas-chapter/
cropped_banner_url
string 
optional
Example:
description_short
string 
optional
Example:
Testing End Event for all warning
end_date_iso
string 
optional
Example:
2022-05-26T21:00:00+02:00
event_timezone
string 
optional
Example:
Europe/Madrid
event_type
number 
optional
Example:
3
event_type_allow_new_agenda
boolean 
optional
Example:
false
event_type_rsvp_only
boolean 
optional
Example:
true
event_type_slug
string 
optional
Example:
virtual-event-type
event_type_title
string 
optional
Example:
Virtual Event type
id
integer 
optional
Example:
98
mobile_relative_event_type
string 
optional
Example:
in-person
objectID
string 
optional
Example:
98
picture_url
string 
optional
Example:
relative_url
string 
optional
Example:
/events/details/support-anas-chapter-presents-testing-end-event-for-all-warning-1/
start_date_iso
string 
optional
Example:
2022-05-26T12:30:00+02:00
title
string 
optional
Example:
Testing End Event for all warning
url
string 
optional
Example:
https://support.bevylabs.com/events/details/support-anas-chapter-presents-testing-end-event-for-all-warning-1/
venue_address
string  | null 
optional
Example:
Parque Saavedra
venue_city
string  | null 
optional
Example:
CABA
venue_name
string  | null 
optional
Example:
MSQ
venue_zip_code
string  | null 
optional
Example:
CP12423
virtual_event_type
string 
optional
Example:
internal
🟠403Forbidden
Previous
Search chapters
Next
List users
Built with