Skip to content

find_nearest_bitcoin_atm

The find_nearest_bitcoin_atm tool finds ByteFederal ATMs near a specified location, sorted by distance.

ParameterTypeRequiredDefaultDescription
locationstringNo*-Address, city/state, or ZIP code
latnumberNo*-Latitude coordinate
lonnumberNo*-Longitude coordinate
limitnumberNo10Maximum results (1-50)
maxDistancenumberNo25Maximum distance in miles (1-100)

*Either location OR lat/lon coordinates are required.

"Find Bitcoin ATMs near Miami, FL"

Tool call:

{
"name": "find_nearest_bitcoin_atm",
"arguments": {
"location": "Miami, FL",
"limit": 5
}
}
"Find ATMs near latitude 25.76, longitude -80.19"

Tool call:

{
"name": "find_nearest_bitcoin_atm",
"arguments": {
"lat": 25.76,
"lon": -80.19,
"limit": 10,
"maxDistance": 15
}
}
{
"success": true,
"data": {
"locations": [
{
"id": 123,
"name": "Chevron - Biscayne",
"address": "123 Biscayne Blvd",
"city": "Miami",
"state": "FL",
"distance": 0.8,
"status": "open",
"hours": {
"today": "6:00 AM - 11:00 PM",
"nextChange": null
},
"links": {
"directions": "https://maps.google.com/...",
"reviews": "https://maps.google.com/..."
}
}
],
"count": 1,
"searchArea": "Miami, FL",
"searchRadius": 25
}
}
FieldTypeDescription
idnumberUnique ATM identifier
namestringLocation/business name
addressstringStreet address
citystringCity
statestringState code
distancenumberDistance from search point (miles)
statusstring”open” or “closed”
hours.todaystringToday’s operating hours
hours.nextChangestringWhen status will change
links.directionsstringGoogle Maps directions link
links.reviewsstringGoogle Maps reviews link
User SaysInterpreted As
”Find ATMs near me”Uses device location or asks for location
”Bitcoin ATMs in 90210”ZIP code search
”ATMs within 5 miles of downtown LA”Location with distance limit
”Nearest ATM to 123 Main St”Address search, limit 1
  • Results are sorted by distance (nearest first)
  • Distance is calculated using the Haversine formula
  • Status is timezone-aware based on ATM location
  • If geocoding fails, falls back to city-level search