ATM Locations

Mansar provides an API for nearby ATM search.

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

List By Coordinates

List ATM locations by coordinates.

Verb

GET

Url

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

Required Scope

cards

Timeout (Seconds)

120

Query Parameters

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

Response is a JSON:API document.

200 OK

Field
Type
Description

data

Array of ATM Location

Array of ATM Location resources.

Example Response:

List By Postal Code

List ATM locations by postal code.

Verb

GET

Url

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

Required Scope

cards

Timeout (Seconds)

120

Query Parameters

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

Response is a JSON:API document.

200 OK

Field
Type
Description

data

Array of ATM Location

Array of ATM Location resources.

Example Response:

List By Address

List ATM locations by address.

Verb

GET

Url

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

Required Scope

cards

Timeout (Seconds)

120

Query Parameters

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

Response is a JSON:API document.

200 OK

Field
Type
Description

data

Array of ATM Location

Array of ATM Location resources.

Example Response:

Last updated