cd /news/developer-tools/building-an-accessibility-search-exp… · home topics developer-tools article
[ARTICLE · art-67408] src=serpapi.com ↗ pub= topic=developer-tools verified=true sentiment=· neutral

Building an Accessibility Search Experience with Google Flights, Hotels, and Maps APIs

SerpApi announced that developers can now integrate data from Google Flights, Google Hotels, and Google Maps APIs to build unified accessibility search experiences, retrieving details such as wheelchair-accessible entrances, accessible parking, and airport accessibility information. The company provided code examples using its Python library to query flight accessibility features, starting with a sample search from Austin-Bergstrom International Airport to John F. Kennedy International Airport.

read10 min views1 publishedJul 13, 2026
Building an Accessibility Search Experience with Google Flights, Hotels, and Maps APIs
Image: source

Whether you're building a travel booking platform, an AI travel assistant, a corporate travel tool, or an accessibility-focused application, providing accurate accessibility information can make a meaningful difference for your users. The challenge is that this information is often spread across multiple Google services in different ways.

With SerpApi, you can integrate data from Google Flights, Google Hotels, Google Maps, and other APIs to create a unified accessibility search experience. You can retrieve details such as wheelchair-accessible entrances, accessible parking, elevators, accessible hotel amenities, airport accessibility information, and nearby businesses that meet a traveler's accessibility needs.

Getting Started with SerpApi #

If you are new to SerpApi get started with this blog post:

Now that you are setup with SerpApi and have located your API key, let's take a look at SerpApi's libraries.

Libraries

In this example we will be using SerpApi's Python library.

To install the serpapi package, simply run the following command:

$ pip install serpapi

You can also make a simple GET request or for other programming languages, view our supported libraries here: https://serpapi.com/integrations.

Flights #

Let's say you want to search for flights and you need certain accessibility features, first we'll start with the flight itself.

New to Google Flights? This post walks through the basics:

Google Flights API

Below is a simple example using SerpApi's Google Flights API. We'll be looking for a flight with these details:

  • Airports: Austin-Bergstrom International Airport (AUS) -> John F. Kennedy International Airport (JFK)
  • Dates: 2026-10-10 -> 2026-10-19 (Update these if they have passed)
  • Roundtrip: type

1- For Return Flight: Collect and include the departure_token

from the outbound flight output - For Booking Details: Collect and include the booking_token

from the return flight output

  • For Return Flight: Collect and include the
  • First available flight
  • In this example we're selecting the first available flight, however remember you can compare price, times, length, and more before selecting flight.

Example Query:

import serpapi

def query_serpapi(parameter, token):
    client = serpapi.Client(api_key="YOUR_SECRET_API_KEY")
    results = client.search({
        "engine": "google_flights",
        "departure_id": "AUS",
        "arrival_id": "JFK",
        "type": "1",
        "outbound_date": "2026-10-10",
        "return_date": "2026-10-19",
        parameter: token
    })

    return results
token = ""

results = query_serpapi("", "")
if "best_flights" in results:
    token = results["best_flights"][0]["departure_token"] 
else:
    token = results["other_flights"][0]["departure_token"] 

results = query_serpapi("departure_token", token)
if "best_flights" in results:
    token = results["best_flights"][0]["booking_token"] 
else:
    token = results["other_flights"][0]["booking_token"] 

flights_results = query_serpapi("booking_token", token)

airline = flights_results["selected_flights"][0]["flights"][0]["airline"]
print(airline)

Results

In this example we're just looking at the airline so we can confirm the accessibility details for this airline, however there is so much other relevant data such as:

  • Airports, luggage, length, airlines, booking links, and more!

Looking at our printed result:

Delta

This means Delta is the airline for this flight. Now let's take this data and use additional APIs / search engines to collect additional accessibility data.

Supplemental APIs

The Google Flights search engine doesn't have any accessibility filters built in so we must gather this data manually. SerpApi offers many APIs that are helpful to search for additional details like "Airline accessibility".

In this example we're just going to look at the airline which is "Delta".

For example, using the Google Search API with the query "Delta wheelchair accommodations".

Example Query:

import serpapi

client = serpapi.Client(api_key="YOUR_SECRET_API_KEY")
results = client.search({
  "engine": "google",
  "google_domain": "google.com",
  "q": "Delta wheelchair accommodations"
})

The first result includes details and links to a Delta site for "Wheelchairs, Scooters & Assistive Devices".

Next we'll look at sending a more a prompt to Google AI Mode. This prompt will be more open ended '"Provide all accessibility options Delta airline provides including links".

Example Query:

import serpapi

client = serpapi.Client(api_key="YOUR_SECRET_API_KEY")
results = client.search({
  "engine": "google_ai_mode",
  "q": "Provide all accessibility options Delta airline provides including links",
  "hl": "en",
  "gl": "us"
})

The results include a breakdown of each accessibility option Delta offers including links to relevant Delta resources.

These are just 2 options for looking up additional accessibility information, however we offer many other APIs. You can also search for other specific details like the airplane or airport.

Accommodations #

If you require booking hotels or accommodations, we offer a Google Hotels API. There are a few places we can see accessibility options within Google Hotels.

New to Google Hotels? This post walks through the basics:

Continuing with the destination and dates we used in our Google Flights example, we'll search for:

  • "New York" as our query
  • Dates from 2026-10-10 to 2026-10-19

Using the amenities

Parameter

Google Hotels also offers an amenities

parameter. You can see the full list of available amenities here.

Currently the only accessibility amenity filter is #53 "Wheelchair accessible". That means if you're looking for a wheelchair accessible hotel, we will set the amenities

parameter to "53":

**Example Query: **

import serpapi

client = serpapi.Client(api_key="YOUR_SECRET_API_KEY")
results = client.search({
    "engine": "google_hotels",
    "q": "New York",
    "check_in_date": "2026-10-10",
    "check_out_date": "2026-10-19",
    "amenities": "53"
})

You'll receive all results that have wheelchair accessible set as an amenity:

The unfortunate limitation to this is that there is only a filter for Wheelchair accessibility but not any other accessibility options. However, Google Hotels doesn't stop there.

Using the Property Details Results

There are a lot more details you can get for a specific property by opening the property details. To do this you need to extract the property_token

from the properties

results for the location you want to view further.

For the example above, the first property had the property_token

"ChgI9YDx8qji4HIaDS9nLzExZzY4eWZ4MncQAQ".

Let's use this property token and query the Google Hotels API again with the amenities

filter removed as well.

**Example Query: **

import serpapi

client = serpapi.Client(api_key="YOUR_SECRET_API_KEY")
results = client.search({
  "engine": "google_hotels",
  "q": "New York",
  "check_in_date": "2026-10-10",
  "check_out_date": "2026-10-19",
  "property_token": "ChgI9YDx8qji4HIaDS9nLzExZzY4eWZ4MncQAQ"
})

Now you can see the full details for that specific hotel:

Now that we have the property details pulled up, there are a few places you can see accessibility details such as the rates

, amenities,

or amenities_detailed

sections.

Results: rates

Some hotels have accessible specific booking options.

For example: Hearing Accessible (Roll-in) Shower

Using the results from above, if we want to compile the rooms that say "Accessible", we could do something like this:

accessible_rooms = []
for booking in results["featured_prices"]:
    for room in booking["rooms"]:
        name = room["name"]
        if ("Accessible" in name):
            accessible_rooms.append(booking)

This will create a list of all the accessible rooms including the booking details.

Results: amenities

Within the place details you can also see the full list of amenities, these can differ between what the location lists.

For example this location lists "Accessible" and "Accessible elevator".

"amenities":
[
..........
"Accessible",
"Accessible elevator",
"Private bathroom",
"Bathtub in some rooms",
...........
],

Using the results from the example above again, you can collect all of the Accessible amenities for this location:

accessible_amenities = []
for amenity in results["amenities"]:
    if "accessible" in amenity.lower():
        accessible_amenities.append(amenity)

This will create a list of all the accessible amenities.

Results: amenities_detailed

Similarly to the amenities

field, this lists accessible amenities with some additional details.

"amenities_detailed":
{
"groups":[
...........
  {
    "title":
    "Accessibility",
    "list":[
      {
        "title": "Accessible",
        "available": true
      },
      {
        "title": "Accessible elevator",
        "available": true
      }
    ]
  },
...........

Using our results from above once again, you can collect all of the Accessible amenities for this location:

accessible_amenities = []
amenities_detailed = results["amenities_detailed"]
for group in amenities_detailed["groups"]:
    for item in group["list"]:
        title = item["title"].lower()
        if "accessible" in title:
            accessible_amenities.append(title)

This will create a list of all the accessible amenities.

Locations / Places #

Last but definitely not least are the APIs supporting locations and places. We're primarily going to discuss the Google Maps API, however there are more APIs that may be helpful. Each has a unique set of input parameters, output fields, and reviews you can gather accessibility details from.

Whether you are confirming the Hotel accessibility, looking for food or activity accessible places, or reading reviews to ensure the location's accessibility is accurate.

Google Maps API

Let's query the Google Maps API using a simple query of "Coffee"

import serpapi

client = serpapi.Client(api_key="YOUR_SECRET_API_KEY")
results = client.search({
  "engine": "google_maps",
  "q": "Coffee"
})

When locations have accessibility listed you can access it in the local_results

within the extensions

array for each location.

Using the results from above, collecting the accessibility information for each one would look like:

locations = {}
for result in results["local_results"]:
    title = result["title"]
    for item in result["extensions"]:
        if "accessibility" in item:
            locations[title] = item["accessibility"]

You can also read the full reviews for a specific location and identify if there were any negatives regarding the locations accessibility.

The Google Maps Reviews API requires the data_id

which you can collect from the Google Maps API results within the data_id

field. For this example we'll be using the data_id

0x89b7adf9f755c29d:0xed4e7f8d582eca3.

You can also use the query

parameter to filter the queries to relevant keywords. We'll set this to "Accessible" for this example.

The code will look like this:

import serpapi

client = serpapi.Client(api_key="YOUR_SECRET_API_KEY")
results = client.search({
  "engine": "google_maps_reviews",
  "data_id": "0x89b7adf9f755c29d:0xed4e7f8d582eca3",
  "query": "Accessible"
})
print(results)

You can see any comments within the review itself. In this case it states the shopping center is accessible however the cafe door is not. Also the table height is good for wheelchairs.

You can also see the answers to questions, in this case the question asks "Wheelchair accessible":

Additional APIs #

While we won't be doing full examples with the remaining APIs, these also have accessibility details. You can view the documentation page via the link on each title.

Apple Maps API

The Apple Maps API offer accessibility details within the ["amenities"] array.

Example amenities

result:

"amenities":[
...........
{
  "name": "Wheelchair Accessible",
  "id": "crossbusiness.accessibility_features.wheelchair_accessible"
},
...........

Tripadvisor Search API / Yelp Search API

The Tripadvisor Search API and Yelp Search API don't provide any accessibility details on the search engines themselves.

However, you can use the Tripadvisor or Yelp search results to find relevant locations.

Then utilize the the place_id

to search for reviews for a specific location.

  • Utilizing the place_id

, iterate through each page of reviews and search manually for specific keywords.

Example Review:

"position": 1587,
"title": "Food good, bathroom a disaster",
"snippet": 
..............
Ladies Bathroom: not very clean, small with only 2 stalls...what's up with that? They serve endless coffee, but only 2 stalls? Disabled (larger of the 2) not ADA compliant and since I am disabled, I had challenges. Bathroom being redone, but apparently quite slowly. They should make it a priority!",
..............
  • Then utilize the the place_id

to search for reviews for a specific location. - Yelp Reviews offers a q

parameter as well to include relevant keywords.

Example Review:

"comment": {
  "text": "Drink was 10/10 parking was easily accessible
  .....
},

Conclusion #

All of these APIs are available for SerpApi users, sign up for a free account including 250 successful searches now!

You can use this for a travel app, company planning, or other travel accessibility needs. SerpApi makes finding accessible activities, accommodations, and flights easy. And we're happy to do it! ❤️

If you need any help on your journey, send us a chat or an email to contact@serpapi.com, we are happy to help.

Resources #

How to Scrape Google FlightsMaking a Flight Price Tracker with Google Flights and Make.comIntroducing SerpApi Google Travel Explore APIHow to scrape Google Hotels Data (Tutorial 2026)How to Scrape Apple Maps with SerpApiHow to scrape Yelp data using Python (Places and Reviews)How To Scrape Tripadvisor ReviewsGet Hotel Details From Tripadvisor And Compare Hotels using Python

── more in #developer-tools 4 stories · sorted by recency
── more on @serpapi 3 stories trending now
sponsored brought to you by zahid.host 4,200+ EU-deployed projects
reading about agents? ship yours in a single git push.

Run your AI side-project on zahid.host

EU-based hosting, git-push deploys, automatic HTTPS, no cold starts. Free tier with a custom domain — perfect for shipping the agent you just read about.

$git push zahid main
Live at https://your-agent.zahid.host
Get free account → Pricing
from €0/mo · no card required
LIVE [news/building-an-accessib…] indexed:0 read:10min 2026-07-13 ·