Skip to content

get_atm_details

The get_atm_details tool retrieves detailed information about a specific ATM by its ID.

ParameterTypeRequiredDescription
atmIdnumberYesThe unique ATM identifier
"What are the details for ATM #456?"

Tool call:

{
"name": "get_atm_details",
"arguments": {
"atmId": 456
}
}
{
"success": true,
"data": {
"atm": {
"id": 456,
"name": "Shell Station - Collins Ave",
"address": "456 Collins Ave",
"city": "Miami Beach",
"state": "FL",
"country": "US",
"coordinates": {
"lat": 25.7907,
"lon": -80.1300
},
"status": "open",
"hours": {
"monday": "6:00 AM - 11:00 PM",
"tuesday": "6:00 AM - 11:00 PM",
"wednesday": "6:00 AM - 11:00 PM",
"thursday": "6:00 AM - 11:00 PM",
"friday": "6:00 AM - 12:00 AM",
"saturday": "7:00 AM - 12:00 AM",
"sunday": "7:00 AM - 10:00 PM"
},
"currentHours": "6:00 AM - 11:00 PM",
"links": {
"googleMaps": "https://maps.google.com/?q=...",
"directions": "https://maps.google.com/dir/...",
"reviews": "https://maps.google.com/reviews/...",
"photo": "https://bytefederal.com/atm/456/photo.jpg"
}
}
}
}
FieldTypeDescription
idnumberUnique ATM identifier
namestringLocation/business name
addressstringFull street address
citystringCity name
statestringState code
countrystringCountry code
coordinates.latnumberLatitude
coordinates.lonnumberLongitude
statusstringCurrent status (“open” or “closed”)
hoursobjectOperating hours by day of week
currentHoursstringToday’s operating hours
links.googleMapsstringGoogle Maps location link
links.directionsstringGoogle Maps directions link
links.reviewsstringGoogle Maps reviews link
links.photostringATM photo URL (if available)
{
"success": false,
"error": {
"code": "ATM_NOT_FOUND",
"message": "No ATM found with ID 999"
}
}
User SaysInterpreted As
”Tell me about ATM 456”Get details for ID 456
”What are the hours for the Chevron ATM?”May need to search first, then get details
”Show me the ATM at 123 Main St”May need to search first, then get details
  • Get Full Hours - See the complete weekly schedule
  • Get Directions - Access Google Maps links for navigation
  • Verify Location - Confirm address and coordinates
  • Check Reviews - Link to Google Maps reviews
  • The ATM ID is typically obtained from a find_nearest_bitcoin_atm search
  • Hours are returned in the ATM’s local timezone
  • Photo URLs may be null if no photo is available