Skip to content

check_atm_status

The check_atm_status tool provides a summary of ATM operational status within a specified area.

ParameterTypeRequiredDefaultDescription
locationstringNo*-Address, city/state, or ZIP code
latnumberNo*-Latitude coordinate
lonnumberNo*-Longitude coordinate
radiusnumberNo10Search radius in miles

*Either location OR lat/lon coordinates are required.

"How many ATMs are open in Dallas right now?"

Tool call:

{
"name": "check_atm_status",
"arguments": {
"location": "Dallas, TX",
"radius": 15
}
}
{
"success": true,
"data": {
"summary": {
"total": 12,
"open": 9,
"closed": 3,
"openPercentage": 75
},
"searchArea": "Dallas, TX",
"radius": 15,
"currentTime": "2024-03-15T14:30:00-05:00",
"openLocations": [
{
"id": 101,
"name": "7-Eleven - Main St",
"distance": 0.5,
"closesAt": "11:00 PM"
},
{
"id": 102,
"name": "Chevron - Oak Lawn",
"distance": 1.2,
"closesAt": "10:00 PM"
}
],
"closedLocations": [
{
"id": 103,
"name": "Shell - Commerce St",
"distance": 2.1,
"opensAt": "6:00 AM tomorrow"
}
]
}
}
FieldTypeDescription
totalnumberTotal ATMs in search area
opennumberCurrently open ATMs
closednumberCurrently closed ATMs
openPercentagenumberPercentage of ATMs open
FieldTypeDescription
idnumberATM identifier
namestringLocation name
distancenumberDistance from search center
closesAtstringWhen the ATM closes (for open)
opensAtstringWhen the ATM opens (for closed)
User SaysInterpreted As
”Are there open ATMs near me?”Status check at user’s location
”ATM availability in Chicago”Status check for Chicago area
”How many ATMs are operating in Miami?”Status summary for Miami
”Which ATMs are closed right now in Austin?”Focus on closed ATMs
  • Plan Visits - Check availability before traveling
  • Late Night - Find ATMs open late
  • Area Coverage - Assess ATM availability in a region
  • Operations - Monitor ATM network status

Status calculations account for:

  • ATM’s physical location (state-based timezone)
  • Daylight saving time adjustments
  • Day-of-week variations in hours
  • Results include both open and closed ATMs
  • Times are displayed in the ATM’s local timezone
  • “24/7” locations are marked as always open
  • Search radius is limited to 100 miles maximum