Skip to main content
GET
/
cash-locations
List cash locations
curl --request GET \
  --url https://api.polygon.technology/v0.9/cash-locations \
  --header 'Authorization: Bearer <token>'
{
  "providers": [
    {
      "locations": [
        {
          "address": "<string>",
          "buyAllowed": true,
          "cashLocationReference": "<string>",
          "city": "<string>",
          "coordinates": {
            "latitude": 123,
            "longitude": 123
          },
          "country": "<string>",
          "locId": "<string>",
          "name": "<string>",
          "provider": "<string>",
          "sellAllowed": true,
          "state": "<string>",
          "zipCode": "<string>",
          "distance": 123,
          "distanceUnit": "<string>",
          "hours": "<string>",
          "supportedAssets": [
            "<string>"
          ]
        }
      ],
      "maxDailyPerCustomer": "<string>",
      "maxTransaction": "<string>",
      "provider": "<string>"
    }
  ]
}

Authorizations

Authorization
string
header
required

Token from POST /auth/token

Query Parameters

provider
string
required
latitude
number<double>
required
longitude
number<double>
required
radius
number<double>
limit
integer<int32>
flow
enum<string>

Flow type: determines which provider config to use.

Available options:
cash_in,
cash_out

Response

200 - application/json

The request has succeeded.

providers
object[]
required