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 chapters

GET
/search/chapter/
Search
Retrieves a list of chapter records matching the given parameters.
Request Request Example
Shell
JavaScript
Java
Swift
curl --location --request GET '/search/chapter/'
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": [
        {
            "chapter_location": "Abbottabad (PK)",
            "city": "Abbottabad",
            "country": "Pakistan",
            "country_code": "PK",
            "id": 1234,
            "is_city": false,
            "logo": {
                "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"
            },
            "member_count": 100,
            "picture": {
                "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"
            },
            "region": "Asia",
            "region_id": 1234,
            "state": "KPK",
            "team": [
                {
                    "full_name": "John Doe",
                    "id": 1234
                }
            ],
            "title": "University of Science",
            "url": "https://instance.bevy.com/university-of-science/"
        }
    ]
}

Request

Query Params
q
string 
optional
The search query.
latitude
number 
optional
The latitude of the location to search around. -90.0 … +90.0.
Default is unset.
longitude
number 
optional
The longitude of the location to search around. -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.

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 (SearchChapter) {15}] 
optional
chapter_location
string 
optional
Example:
Abbottabad (PK)
city
string 
optional
Example:
Abbottabad
country
string 
optional
Example:
Pakistan
country_code
string 
optional
Example:
PK
id
integer 
optional
Example:
1234
is_city
boolean 
optional
Example:
false
logo
object (Image) 
optional
member_count
integer  | null 
optional
Example:
100
picture
object (Image) 
optional
region
string 
optional
Example:
Asia
region_id
integer 
optional
Example:
1234
state
string  | null 
optional
Example:
KPK
team
array [object {2}] 
optional
title
string 
optional
Example:
University of Science
url
string 
optional
Example:
https://instance.bevy.com/university-of-science/
🟠403Forbidden
Previous
List event tags
Next
Search events
Built with