Skip to main content
GET
/
data
/
places
Search for a list of places
curl --request GET \
  --url https://api.liteapi.travel/v3.0/data/places \
  --header 'X-API-Key: <api-key>'
{
  "data": [
    {
      "placeId": "ChIJu1K2erNv5kcR6HyzBQieKJ0",
      "displayName": "Rome",
      "formattedAddress": "75017 París, Francia",
      "types": [
        "subway_station",
        "transit_station",
        "point_of_interest",
        "establishment"
      ],
      "language": "fr"
    },
    {
      "placeId": "ChIJNcQlLHTIzhIRSLrqN9rgv5Q",
      "displayName": "Paris Rome",
      "formattedAddress": "4 Rue de Provence, 75009 Paris, Francia",
      "types": [
        "hotel",
        "lodging",
        "point_of_interest",
        "establishment"
      ],
      "language": "es"
    }
  ]
}

Authorizations

X-API-Key
string
header
required

Query Parameters

textQuery
string
required

Search query. e.g. 'Manhattan'

type
string

Restricts the results to places matching the specified type(s). You can specify a single type (e.g., 'hotel') or multiple types as a comma-separated list (e.g., 'locality,airport,hotel'). Common types include: 'locality' (cities), 'airport', 'hotel', 'lodging', 'establishment', 'point_of_interest'. When multiple types are provided, results from all types are merged and ordered by relevance.

language
string

The language code, indicating in which language the results should be returned. e.g. 'en'

clientIP
string

The IP address of the client making the request.

Response

OK

data
object[]