GET
/
v1
/
places
/
{place_id}
Get Place Details
curl --request GET \
  --url https://api.milaapi.com/v1/places/{place_id} \
  --header 'Authorization: Bearer <token>'
{
  "id": "place_prague_castle_001",
  "name_primary": "Prague Castle",
  "primary_category": "tourist_attraction",
  "alternate_categories": [
    "castle",
    "museum",
    "historical_site"
  ],
  "address_freeform": "Hradčany, 119 08 Praha 1",
  "address_locality": "Prague",
  "address_region": "Prague",
  "address_country": "CZ",
  "address_postcode": "11908",
  "formatted_address": "Hradčany, 119 08 Praha 1, Czech Republic",
  "phones": [
    "+420 224 373 368"
  ],
  "emails": [
    "info@hrad.cz"
  ],
  "websites": [
    "https://www.hrad.cz"
  ],
  "brand_name": "Prague Castle",
  "attributes": {
    "wheelchair_accessible": true,
    "guided_tours": true,
    "historical_site": true,
    "admission_fee": true
  },
  "longitude": 14.4009,
  "latitude": 50.091,
  "distance": 1205.3
}

Authorizations

Authorization
string
header
required

Bearer authentication header of the form Bearer <token>, where <token> is your auth token.

Path Parameters

place_id
string
required

Response

Successful Response

Place response model

id
string
required
name_primary
string
required
Maximum length: 512
primary_category
string
required
Maximum length: 32
alternate_categories
string[] | null
address_freeform
string | null
Maximum length: 512
address_locality
string | null
Maximum length: 128
address_region
string | null
Maximum length: 64
address_country
string | null
Maximum length: 2
address_postcode
string | null
Maximum length: 32
formatted_address
string | null
Maximum length: 512
phones
string[] | null
emails
string[] | null
socials
string[] | null
websites
string[] | null
brand_name
string | null
Maximum length: 256
attributes
object | null
longitude
number | null
latitude
number | null
distance
number | null