Skip to content

list_atms_by_city

The list_atms_by_city tool returns all ByteFederal ATMs in a specified city and state.

ParameterTypeRequiredDescription
statestringYesState code (e.g., “FL”, “TX”, “CA”)
citystringYesCity name
"List all Bitcoin ATMs in Austin, Texas"

Tool call:

{
"name": "list_atms_by_city",
"arguments": {
"state": "TX",
"city": "Austin"
}
}
{
"success": true,
"data": {
"city": "Austin",
"state": "TX",
"count": 8,
"locations": [
{
"id": 201,
"name": "7-Eleven - Congress Ave",
"address": "100 Congress Ave",
"status": "open",
"hours": "6:00 AM - 11:00 PM",
"coordinates": {
"lat": 30.2672,
"lon": -97.7431
}
},
{
"id": 202,
"name": "Shell - Lamar Blvd",
"address": "2500 S Lamar Blvd",
"status": "open",
"hours": "24/7",
"coordinates": {
"lat": 30.2500,
"lon": -97.7700
}
}
]
}
}
FieldTypeDescription
citystringQueried city name
statestringQueried state code
countnumberTotal ATMs found
locationsarrayList of ATM objects
FieldTypeDescription
idnumberUnique ATM identifier
namestringLocation/business name
addressstringStreet address
statusstring”open” or “closed”
hoursstringToday’s operating hours
coordinatesobjectLat/lon coordinates
User SaysTool Parameters
”ATMs in Miami, Florida”state: "FL", city: "Miami"
”Bitcoin ATMs in Los Angeles”state: "CA", city: "Los Angeles"
”List Houston ATMs”state: "TX", city: "Houston"
”All ATMs in NYC”state: "NY", city: "New York"

Use standard 2-letter state codes:

StateCodeStateCode
FloridaFLTexasTX
CaliforniaCANew YorkNY
GeorgiaGAArizonaAZ
ColoradoCONevadaNV

If no ATMs are found:

{
"success": true,
"data": {
"city": "SmallTown",
"state": "MT",
"count": 0,
"locations": [],
"message": "No ByteFederal ATMs found in SmallTown, MT"
}
}
  • City Overview - See all ATM locations in a city
  • Planning - Identify ATMs before visiting an area
  • Coverage Analysis - Check ByteFederal presence in a market
  • Comparison - Compare availability across cities
  • Results are not sorted by distance (no reference point)
  • All ATMs in the city are returned regardless of status
  • City names are case-insensitive
  • Partial city names may not match (use full city name)