yatmo_get_accessibility_profile

A synthetic accessibility view of a property — public-transport presence, nearest stop, nearest train station, nearest motorway access. Use it to answer questions like “is this property practical without a car?”

MCP TOOL yatmo_get_accessibility_profile LicenceKey header

Pure read; uses the same upstream data as the location summary.

Inputs

Name In Type Description
latitude required argument double Latitude in decimal degrees.
longitude required argument double Longitude in decimal degrees.
language required argument string Two-letter language code.
country required argument string Market code from your licence.

Example

{
  "name": "yatmo_get_accessibility_profile",
  "arguments": {
    "latitude": 50.8503, "longitude": 4.3517,
    "language": "fr", "country": "BE"
  }
}

Response

Name In Type Description
publicTransportLinesCount int Number of nearby public-transport points (bus, tram, metro, train, …).
nearestPublicTransportStopDistanceMeters int Distance to the closest public-transport point. Zero when none.
nearestTrainStationDistanceMeters int? Distance to the closest train station; null when none in range.
nearestMotorwayAccessDistanceMeters int? Distance to the closest motorway access; null when none in range.
nearestTrainStation object? {name, distanceMeters} for the closest train station, or null.
nearestMotorwayAccess object? {name, distanceMeters} for the closest motorway access, or null.
{
  "text": "Transports: Bonne desserte en bus. La gare la plus proche est Brussel-Centraal / Bruxelles-Central …",
  "facts": {
    "publicTransportLinesCount": 14,
    "nearestPublicTransportStopDistanceMeters": 46,
    "nearestTrainStationDistanceMeters": 631,
    "nearestMotorwayAccessDistanceMeters": 5398,
    "nearestTrainStation":   { "name": "Brussel-Centraal / Bruxelles-Central",                              "distanceMeters":  631 },
    "nearestMotorwayAccess": { "name": "A3 / E25 - E40 - E42 : Bruxelles - Louvain - Liège - Eupen …",      "distanceMeters": 5398 }
  },
  "warnings": [],
  "metadata": { "country": "BE", "language": "FR", "generatedAtUtc": "…" }
}
Use the structured facts, not the text
The text field is a narrative paragraph generated in the requested language. For filtering or sorting properties by accessibility, use the numeric facts — they are language-independent and stable.

Related: location summary, nearest by category (with train_station / motorway), REST /route for door-to-door travel times.