List all ATMs

Retrieves list of all nearby ATM locations
Cards
List all ATMs
 last updated: 
November 30, 2023

You will need to pass the cardId parameter along with the latitude and longitude. In response, you will see a list of 10 nearby ATMs.

ENDPOINT

  1. GET /v1/card/atm?cardId={{cardId}}&latitude=41.972424&longitude=-87.66022

FILTERS

The table below describes various filters that can be passed as query parameters to narrow the response.

Filter Type Description
offset int start index (default = 0)
limit int number of records to return (default = 25, max = 100)
radius int search radius in miles (default = 5, maxx = 10)
available24Hours bool searches for ATMs that are available 24hours
handicappedAccessible bool searches for ATMs that are handicapped accessible
depositAvailable bool searches for ATMs that accept cash deposits


RESPONSE

  1. {
  2.   "total": 4,
  3.   "data": [
  4.     {
  5.       "name": "U.S. Bank Larchmont",
  6.       "description": "157 North Larchmont Boulevard, Los Angeles, CA 90004",
  7.       "address": {
  8.         "addressType": "atm",
  9.         "line1": "157 North Larchmont Boulevard",
  10.         "line2": "",
  11.         "city": "Los Angeles",
  12.         "state": "CA",
  13.         "country": "US",
  14.         "postalCode": "90004"
  15.       },
  16.       "coordinates": {
  17.         "latitude": 34.076683,
  18.         "longitude": -118.32374
  19.       },
  20.       "distance": {
  21.         "value": 0.26,
  22.         "unit": "mile"
  23.       },
  24.       "available24Hours": true,
  25.       "handicappedAccessible": false,
  26.       "depositAvailable": true
  27.     },
  28.     {
  29.       "name": "7ELEVEN-FCTI",
  30.       "description": "5784 MELROSE AVE, LOS ANGELES, CA 90038",
  31.       "address": {
  32.         "addressType": "atm",
  33.         "line1": "5784 MELROSE AVE",
  34.         "line2": "",
  35.         "city": "LOS ANGELES",
  36.         "state": "CA",
  37.         "country": "US",
  38.         "postalCode": "90038"
  39.       },
  40.       "coordinates": {
  41.         "latitude": 34.08324,
  42.         "longitude": -118.32621
  43.       },
  44.       "distance": {
  45.         "value": 0.5,
  46.         "unit": "mile"
  47.       },
  48.       "available24Hours": true,
  49.       "handicappedAccessible": false,
  50.       "depositAvailable": false
  51.     },
  52.     {
  53.       "name": "COLBEE LIQUOR & MARKET",
  54.       "description": "6205 WILLOUGHBY AVENUE, LOS ANGELES, CA 90038",
  55.       "address": {
  56.         "addressType": "atm",
  57.         "line1": "6205 WILLOUGHBY AVENUE",
  58.         "line2": "",
  59.         "city": "LOS ANGELES",
  60.         "state": "CA",
  61.         "country": "US",
  62.         "postalCode": "90038"
  63.       },
  64.       "coordinates": {
  65.         "latitude": 34.08719,
  66.         "longitude": -118.330055
  67.       },
  68.       "distance": {
  69.         "value": 0.77,
  70.         "unit": "mile"
  71.       },
  72.       "available24Hours": true,
  73.       "handicappedAccessible": false,
  74.       "depositAvailable": false
  75.     },
  76.     {
  77.       "name": "7ELEVEN-FCTI",
  78.       "description": "904 NORTH VINE ST, LOS ANGELES, CA 90038",
  79.       "address": {
  80.         "addressType": "atm",
  81.         "line1": "904 NORTH VINE ST",
  82.         "line2": "",
  83.         "city": "LOS ANGELES",
  84.         "state": "CA",
  85.         "country": "US",
  86.         "postalCode": "90038"
  87.       },
  88.       "coordinates": {
  89.         "latitude": 34.08729,
  90.         "longitude": -118.326515
  91.       },
  92.       "distance": {
  93.         "value": 0.77,
  94.         "unit": "mile"
  95.       },
  96.       "available24Hours": true,
  97.       "handicappedAccessible": false,
  98.       "depositAvailable": false
  99.     }
  100.   ]
  101. }