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
    • Add Attendees New
      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 Chapter Member by ID
      GET
    • List Chapter Members Copy
      GET
    • Search Member
      POST
    • 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/
Retrieves a list of event records matching the given parameters.

Request

Query Params

Responses

🟢200OK
application/json
successful operation
Body

🟠403Forbidden
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"
        }
    ]
}
Modified at 2025-04-13 12:07:25
Previous
Search chapters
Next
List users
Built with