For Agents
Retrieve safety scores by category for a coordinate, bounding box, or rated-location id, with the caveat that Amadeus has scheduled this API for decommission.
Get started with Safe Place in minutes using your preferred integration method.
# Add to your MCP client config (Claude Desktop, Cursor, Windsurf)
{
"jentic": {
"url": "https://api.jentic.com/mcp",
"auth": "oauth"
}
}
# Then ask your agent:
"check the safety rating of an area"
# → Jentic returns the GET /events tool with parameter schema, agent executes.What an agent can do with Safe Place API.
Retrieve safety ratings within a radius of a coordinate, scored by category
Retrieve safety ratings inside a bounding box covering a neighbourhood or city
Look up a single safety-rated location by its id for full category breakdown
Score categories include women safety, theft, physical harm, medical, and political freedom
GET STARTED
Use for: Get the safety rating for an area around these coordinates, Search for safe neighbourhoods inside a bounding box, Retrieve a safety-rated location by its id, Check the women-safety score for a specific zone
Not supported: Does not handle live incident reports, news feeds, or government advisories — used for category-level area safety scoring only (decommission scheduled by Amadeus).
The Amadeus Safe Place API returned safety ratings for geographic areas, scoring them across categories such as women safety, physical harm, theft, political freedom, medical, and LGBTQ safety. Three endpoints covered the access patterns: a radius search around a coordinate, a bounding-box search over a rectangular area, and a detail lookup by safety-rated location id. Note that this API was scheduled for permanent decommission by Amadeus on 12 April; review the current Amadeus self-service portal before integrating, and consider GeoSure as the vendor-recommended alternative for safety scoring.
Scope queries to a single category to find the most relevant signal for a user's concern
Patterns agents use Safe Place API for, with concrete tasks.
★ Traveller safety briefings
Generate a pre-trip safety briefing for a destination by querying Safe Place across the city's central coordinate and key tourist zones. The category breakdown lets the briefing highlight specific concerns — women safety, theft, medical infrastructure — rather than a single generic safety score. Useful for corporate travel platforms with duty-of-care obligations and for solo-traveller apps.
Call GET /safety/safety-rated-locations with latitude, longitude, radius=2 and return the women-safety and theft scores for the highest-rated polygon.
Neighbourhood-level hotel filter
When showing hotel suggestions, attach a safety signal from Safe Place to each hotel's surrounding area so a traveller can filter out properties in zones flagged for particular risks. The bounding-box endpoint is useful for pre-computing per-zone safety scores; cache results because zone-level scores change infrequently. Pair with Hotel Search and Location Score for a richer ranking signal.
For a list of hotelIds, call /safety/safety-rated-locations/by-square around each and tag any hotel whose surrounding area has a low women-safety or theft score.
AI agent safety-aware itinerary
An AI agent building a destination itinerary uses Safe Place to flag stops in zones with concerning category scores and propose alternatives. The agent calls Jentic to discover Safe Place, executes the radius search around each candidate stop, and surfaces explicit safety context in its recommendations. Because Amadeus has scheduled the API for decommission, a production agent should be ready to swap to GeoSure or another safety provider.
Use Jentic to search 'check the safety rating of an area', execute Safe Place for each stop in a draft itinerary, and emit a warning for stops with low category scores.
3 endpoints — the amadeus safe place api returned safety ratings for geographic areas, scoring them across categories such as women safety, physical harm, theft, political freedom, medical, and lgbtq safety.
METHOD
PATH
DESCRIPTION
/safety/safety-rated-locations
Get safety ratings within a radius
/safety/safety-rated-locations/by-square
Get safety ratings inside a bounding box
/safety/safety-rated-locations/{safety-rated-locationId}
Retrieve a single safety-rated location by id
/safety/safety-rated-locations
Get safety ratings within a radius
/safety/safety-rated-locations/by-square
Get safety ratings inside a bounding box
/safety/safety-rated-locations/{safety-rated-locationId}
Retrieve a single safety-rated location by id
Three things that make agents converge on Jentic-routed access.
Credential isolation
Amadeus OAuth2 client_id and client_secret are stored encrypted in the Jentic vault. Agents receive scoped bearer tokens; the client secret never enters the agent's context.
Intent-based discovery
Agents search by intent ('check the safety rating of an area') and Jentic returns the Safe Place operations with their latitude, longitude, bounding-box, and category parameter schemas.
Time to first call
Direct Amadeus integration: 1-2 days for OAuth, polygon parsing, and category mapping. Through Jentic: under 30 minutes — search, load, execute.
Alternatives and complements available in the Jentic catalogue.
Amadeus Location Score
Location Score scores areas on travel categories like sights and dining; Safe Place scored them on safety dimensions.
Choose Location Score for amenity scoring; choose Safe Place when safety was the specific dimension you needed (subject to decommission).
Amadeus Points of Interest
Points of Interest finds named landmarks; Safe Place quantified the safety of the surrounding area.
Choose Points of Interest to surface attractions; pair with Safe Place to flag attractions in lower-rated zones.
Amadeus Hotel Search
Hotel Search returns offers; Safe Place added a neighbourhood-safety signal to each hotel coordinate.
Choose Hotel Search to fetch offers; pair with Safe Place when the booking surface needed an explicit safety filter.
Specific to using Safe Place API through Jentic.
Is the Safe Place API still maintained?
Amadeus announced that Safe Place will be permanently decommissioned on 12 April. Confirm the current status in the Amadeus for Developers self-service portal before depending on it in production. Amadeus recommends GeoSure as an alternative safety-rating provider.
What authentication does the Safe Place API use?
OAuth 2.0 client credentials. Exchange your Amadeus API key and secret for a bearer access token, then send it as the Authorization header on each call. Through Jentic, the client secret stays encrypted in the vault and only a scoped token is exposed to the agent.
What categories does the safety score cover?
Each rated location returns category scores including women safety, theft, physical harm, medical, political freedom, and LGBTQ safety. Filter by category in the query to retrieve only the dimension you care about.
Can I search safety scores by area rather than coordinate?
Yes. GET /safety/safety-rated-locations/by-square accepts north, south, east, west query parameters and returns rated polygons inside the bounding box. This is useful when scoring a neighbourhood rather than a circular radius.
How do I check safety ratings through Jentic?
Install with pip install jentic, then search 'check the safety rating of an area' to discover the Safe Place operations. Load the radius or bounding-box schema and execute. Jentic returns parsed category scores. Get started at https://app.jentic.com/sign-up.
Is the Safe Place API available in the test environment?
Yes, but the test environment returns scores for only a few selected cities. For broader coverage you would have needed to upgrade to production — and given the scheduled decommission, plan a migration to an alternative provider.