Discover/Orbitz API
live

Orbitz APIorbitz.com

Search Orbitz hotels and destinations via API. Get location typeahead, hotel listings with pricing, and detailed property data including amenities and reviews.

Endpoint health
verified 6d ago
location_typeahead
search_hotels
get_hotel_details
3/3 passing latest checkself-healing
Endpoints
3
Updated
22d ago

What is the Orbitz API?

The Orbitz API covers 3 endpoints that let you search travel destinations, find hotels by region and date, and retrieve full property details. Starting with location_typeahead, you can resolve a city or airport name into a region ID, then pass that ID to search_hotels to get live pricing — including strike-out rates — for a given date range. A third endpoint, get_hotel_details, returns address, amenities, star rating, review scores, and up to 10 gallery images for any individual property.

Try it
Search query for location (e.g., 'New York', 'Paris', 'London')
api.parse.bot/scraper/f1e72489-f062-425f-b9f3-d38c97a881ed/<endpoint>
Ready to send
Fill in the parameters and hit sign in to send to see live response data here.
Call it over HTTPgrab a free API key at signup
curl -X GET 'https://api.parse.bot/scraper/f1e72489-f062-425f-b9f3-d38c97a881ed/location_typeahead?query=Paris' \
  -H 'X-API-Key: $PARSE_API_KEY'
Python SDK · recommended

Typed, relational, agent-ready

A generated client with real types, enums, and the links between objects — the structure a flat JSON response can't carry. Autocompletes in your editor and reads cleanly to coding agents.

  • Fully typed · autocompletes
  • Objects link to objects
  • Typed errors & pagination

Typed Python client. Set up the SDK in your uv project, then pull this API’s typed client:

uv add parse-sdk
uv run parse init
uv run parse add --marketplace orbitz-com-api

uv run parse add --marketplace pulls a pinned snapshot of this canonical API — it won’t change underneath you. To customize it, subscribe and swap to your own copy.

from parse_apis.orbitz_hotel_search_api import Orbitz, Location, Hotel, HotelDetail

orbitz = Orbitz()

# Search for a destination
for location in orbitz.locations.search(query="New York"):
    print(location.primaryText, location.type, location.regionId)

# Use the first location to search hotels (constructible by regionId)
nyc = orbitz.location(regionId="2621")

# Search hotels in that region
for hotel in nyc.hotels.search(check_in="2026-07-01", check_out="2026-07-04", adults=2):
    print(hotel.name, hotel.neighborhood, hotel.price.total, hotel.price.amount)

    # Get detailed info for the hotel
    detail = hotel.details()
    print(detail.star_rating, detail.review_score, detail.address.city)
    for img in detail.images:
        print(img.url, img.description)
All endpoints · 3 totalmissing one? ·

Search for travel destinations by name. Returns up to 10 matching locations including cities, airports, neighborhoods, and points of interest with their region IDs, coordinates, and country information. Use the returned regionId to search for hotels via search_hotels.

Input
ParamTypeDescription
queryrequiredstringSearch query for location (e.g., 'New York', 'Paris', 'London')
Response
{
  "type": "object",
  "fields": {
    "locations": "array of location objects with regionId, primaryText, secondaryText, displayName, type, coordinates, and country"
  },
  "sample": {
    "data": {
      "locations": [
        {
          "type": "CITY",
          "country": {
            "name": "France",
            "isoCode2": "FR"
          },
          "regionId": "2734",
          "coordinates": {
            "latitude": "48.853564",
            "longitude": "2.348095"
          },
          "displayName": "Paris, France",
          "primaryText": "Paris",
          "secondaryText": "Paris, France"
        }
      ]
    },
    "status": "success"
  }
}

About the Orbitz API

Location Search and Region Resolution

The location_typeahead endpoint accepts a plain-text query (e.g., "Paris" or "JFK") and returns up to 10 matching locations. Each result includes a regionId, primaryText, secondaryText, displayName, a type field distinguishing cities from airports or neighborhoods, WGS-84 coordinates, and country data. The regionId is the key input for hotel searches — you must resolve it here before querying availability.

Hotel Search and Pricing

The search_hotels endpoint takes a region_id, a check_in date, a check_out date (both in YYYY-MM-DD format; both must be future dates), and an optional adults count (1–8). It returns an array of hotel objects, each with an id, name, neighborhood, and pricing broken into total cost, per-night amount, a human-readable label, and a strikeOut field when a discounted rate is available. This lets you surface both current prices and comparison reference prices in the same response.

Property Detail

The get_hotel_details endpoint accepts a property_id from search_hotels results and returns a richer data set: address (with full_address, city, province, and country_code), coordinates, star_rating (1–5 or null), review_score (formatted as "9.2/10 Wonderful"), review_count, a tagline, a list of amenities strings, and an images array of up to 10 objects each containing a url and description.

Data Scope and Workflow

The three endpoints form a linear lookup chain: typeahead → hotel search → hotel detail. All date parameters must be future-dated; historical lookups are not supported. Pricing reflects totals for the full stay alongside nightly breakdowns, but real-time availability confirmation and booking are outside the scope of this API.

Reliability & maintenanceVerified

The Orbitz API is a managed, monitored endpoint for orbitz.com — not a raw scraper you maintain. Every endpoint is automatically health-checked on a schedule, and when orbitz.com changes and a check fails, the API is automatically queued for repair and re-verified. It is built to keep working as the site underneath it changes.

This isn't an official orbitz.com API — it's an independent, maintained REST wrapper over public data. Where the source has no official API (or only a limited one), Parse gives you a stable contract over a source that never promised one, and keeps it current. Need a new endpoint or field? You can revise it yourself in plain English and the agent rebuilds it against the live site in minutes — contributing the change back to the shared API is free.

Last verified
6d ago
Latest check
3/3 endpoints passing
Maintenance
Monitored & self-healing
Will this API break when the source site changes?+
It's built not to. Every endpoint is health-checked on a schedule with automated test probes. When the source site changes and a check fails, the API is automatically queued for repair and re-verified — that's the self-healing layer. Each API page shows when its endpoints were last verified. And because marketplace APIs are shared, any fix reaches everyone using it.
Is this an official API from the source site?+
No — Parse APIs are independent, managed REST wrappers over publicly available data. That is the point: where a site has no official API (or only a limited one), Parse gives you a maintained, monitored endpoint for that data and keeps it working as the site changes — so you get a stable contract over a source that never promised one.
Can I fix or extend this API myself if I need a new endpoint or field?+
Yes — and you don't have to wait on us. This API was generated by the Parse agent, which stays attached. Describe the change in plain English ("add an endpoint that returns reviews", "fix the price field") in the revise box on the API page or via the revise_api MCP tool, and the agent rebuilds it against the live site in minutes. Contributing the change back to the public API is free.
What happens if I call an endpoint that has an issue?+
Errors are machine-readable: a bad call returns a clean status with the list of available endpoints and a repair hint, so an agent (or you) can recover or trigger a fix instead of failing silently. Confirmed failures feed the automatic repair queue.
Common use cases
  • Build a hotel comparison widget showing total stay cost and strike-out pricing for a searched city
  • Populate a destination autocomplete field using regionId and displayName from location_typeahead
  • Aggregate hotel star ratings and review scores across a region for travel research tools
  • Display a hotel's amenity list and gallery images on a third-party itinerary planning app
  • Monitor neighborhood-level hotel price changes for a specific region over time
  • Enrich a travel CRM with hotel address, coordinates, and contact metadata from get_hotel_details
Pricing & limitsSee full pricing →
TierPriceCredits/monthRate limit
Free$0/mo1005 req/min
Hobby$30/mo1,00020 req/min
Developer$100/mo5,000100 req/min

One credit = one API call regardless of which marketplace API you call. Exceeding the rate limit returns a 429 response. Authenticate with the X-API-Key header.

Frequently asked questions
Does Orbitz offer an official developer API?+
Orbitz does not publish a public developer API or API documentation for third-party access. This Parse API provides structured access to the data Orbitz surfaces on its website.
What does search_hotels return beyond a hotel name and price?+
Each hotel object includes an id (usable with get_hotel_details), name, neighborhood, and a price block containing the total stay cost, per-night amount, a display label, and a strikeOut value when a reference price differs from the current rate. It does not include amenities or images — those come from get_hotel_details.
Does the API support multi-room or child-passenger searches?+
Currently, search_hotels accepts only an adults parameter (1–8) covering occupancy per room. Multi-room configurations and child passenger counts are not exposed. You can fork this API on Parse and revise it to add those parameters if the underlying data supports them.
Can I retrieve flight listings or car rentals through this API?+
No. The three endpoints cover destination resolution and hotel data only — flights, car rentals, and vacation packages are not currently included. You can fork this API on Parse and revise it to add endpoints covering those travel categories.
How fresh is the pricing data returned by search_hotels?+
Prices reflect what Orbitz returns at the time of the request for the dates you specify. Because hotel rates change frequently, cached or repeated calls for the same region and dates may return different prices. The API does not expose a timestamp for when a specific price was last updated.
Page content last updated . Spec covers 3 endpoints from orbitz.com.
Related APIs in TravelSee all →
hotels.com API
Search for hotels across millions of properties, view room availability and pricing, and get detailed information about accommodations at specific destinations. Get location suggestions and discover popular travel spots to help plan your next getaway.
travelocity.com API
Search for travel destinations and browse hotel listings on Travelocity. Compare options by location, dates, and availability to find and book accommodation.
tripadvisor.com API
Search for travel destinations and discover hotels with detailed information like ratings, reviews, and amenities. Get comprehensive place details to help plan your perfect trip and compare accommodation options.
expedia.com API
Search for hotels and flights across Expedia while viewing detailed property information to compare prices and amenities for your travel plans. Get comprehensive travel options all from one integration without manually browsing the website.
agoda.com API
agoda.com API
trivago.com.br API
Search hotels across Trivago by destination, dates, and guest count. Filter by price range and currency, get autocomplete suggestions for locations, and retrieve detailed hotel information including star ratings, guest reviews, and pricing from multiple booking sites.
hilton.com API
Search for Hilton hotels worldwide by destination with autocomplete suggestions for locations, or convert addresses into exact coordinates. Find your ideal Hilton accommodation and get location details all in one place.
hotelscan.ai API
Search and compare hotels with detailed guest reviews, room availability, and pricing information across flexible dates. Find similar properties, get autocomplete suggestions for locations, and access comprehensive hotel details all in one place.