---
title: "List cash locations"
method: GET
path: "/cash-locations"
tags: ["CashLocation"]
---

# List cash locations

`GET /cash-locations`

Returns cash pickup and deposit locations for the given provider within
range of the supplied coordinates, each with its distance from that point.
Use the flow parameter to select the cash-in or cash-out provider
configuration.

## Query parameters

- `provider` string, required
- `latitude` number, double, required
- `longitude` number, double, required
- `radius` number, double
- `limit` integer
- `flow` 'cash_in' | 'cash_out' — Direction of a cash flow. cash_in moves cash to crypto; cash_out moves crypto to cash.

## Response `200`

The request has succeeded.

- CashLocationsResponse — Cash locations grouped by provider.
  - `providers` CashProvider[], required — Providers with locations in range.
    - `provider` string, required — Cash provider.
    - `maxTransaction` string, required — Maximum single-transaction amount.
    - `maxDailyPerCustomer` string, required — Maximum daily total per customer.
    - `locations` CashLocation[], required — Locations for this provider, nearest first.
      - `locId` string, required — Provider's location identifier.
      - `object` 'cashLocation' — Resource type discriminator. Always "cashLocation".
      - `cashLocationReference` string, required — Provider reference for the location, from `GET /cash-locations`.
      - `name` string, required — Display name.
      - `provider` string, required — Cash provider.
      - `address` string, required — Postal address.
      - `city` string, required — City.
      - `state` string, required — State / province / region.
      - `zipCode` string, required — ZIP / postal code.
      - `country` string, required — ISO 3166-1 alpha-2 country code.
      - `coordinates` CashLocationCoordinates, required — Latitude/longitude pair.
        - `latitude` number, double, required — Latitude in decimal degrees.
        - `longitude` number, double, required — Longitude in decimal degrees.
      - `distance` number, double — Distance from the search coordinates.
      - `distanceUnit` string — Unit for `distance` (e.g. mi, km).
      - `buyAllowed` boolean, required — Whether cash-in (buy) is supported at this location.
      - `sellAllowed` boolean, required — Whether cash-out (sell) is supported at this location.
      - `hours` string — Opening hours.
      - `supportedAssets` string[] — Assets supported at this location.

---

[API](https://skmtc.net/polygon-technology/apis/polygon-oms-public-api.md) · [All operations](https://skmtc.net/polygon-technology/apis/polygon-oms-public-api/llms.txt) · [OpenAPI document](https://skmtc-service-staging.skmtc.workers.dev/v1/apis/polygon-technology/polygon-oms-public-api/revisions/18fdaebf64e5/schema)
