ATM Locations

Mansar provides an API for nearby ATM search.

The API supports searching by coordinates, postal code, address, and radius.

List By Coordinatesarrow-up-right

List ATM locations by coordinates.

Verb

GET

Url

https://api.s.usemansar.xyz/atm-locations

Required Scope

cards

Timeout (Seconds)

120

Query Parametersarrow-up-right

Name
Type
Description

filter[coordinates]

JSON object

Filters the results by the specified coordinates.

filter[searchRadius]

number

Optional. Filters the results by the search radius (in miles). Default and max values are 100.

curl -X GET 'https://api.s.usemansar.xyz/atm-locations?filter[coordinates]={"longitude": "-73.93041", "latitude": "42.79894"}&filter[searchRadius]=30' \
-H "Authorization: Bearer ${TOKEN}"

Response is a JSON:API document.

200 OKarrow-up-right

Field
Type
Description

data

Array of ATM Location

Array of ATM Location resources.

Example Response:

List By Postal Codearrow-up-right

List ATM locations by postal code.

Verb

GET

Url

https://api.s.usemansar.xyz/atm-locations

Required Scope

cards

Timeout (Seconds)

120

Query Parametersarrow-up-right

Name
Type
Description

filter[postalCode]

string

Filters the results by the specified postal code.

filter[searchRadius]

number

Optional. Filters the results by the search radius (in miles). Default and max values are 100.

Response is a JSON:API document.

200 OKarrow-up-right

Field
Type
Description

data

Array of ATM Location

Array of ATM Location resources.

Example Response:

List By Addressarrow-up-right

List ATM locations by address.

Verb

GET

Url

https://api.s.usemansar.xyz/atm-locations

Required Scope

cards

Timeout (Seconds)

120

Query Parametersarrow-up-right

Name
Type
Description

filter[address]

JSON object

Filters the results by the specified address.

filter[searchRadius]

number

Optional. Filters the results by the search radius (in miles). Default and max values are 100.

Response is a JSON:API document.

200 OKarrow-up-right

Field
Type
Description

data

Array of ATM Location

Array of ATM Location resources.

Example Response:

Last updated