Skip to main content
GET
/
cash
/
transaction_simulations
/
barcodes
/
stores
Retrieve Store Information for Barcode Simulation
curl --request GET \
  --url https://api.synctera.com/v1/cash/transaction_simulations/barcodes/stores \
  --header 'Authorization: Bearer <token>'
{
  "stores": [
    {
      "address": {
        "address1": "123 Main St",
        "city": "San Francisco",
        "country": "US",
        "state": "CA",
        "zip_code": "94103",
        "address2": "Suite 100",
        "county": "San Francisco County"
      },
      "business_name": "Example Store",
      "coordinates": {
        "latitude": 37.7749,
        "longitude": -122.4194
      },
      "distance": 2.5,
      "id": "store_12345"
    }
  ]
}

Authorizations

Authorization
string
header
required

Bearer authentication header of the form Bearer <token>, where <token> is your auth token.

Query Parameters

limit
integer
default:50

Maximum number of stores to return per page. Must be between 1 and 10000.

Required range: 1 <= x <= 10000
radius
number<float>
default:5

Radius in miles to search for stores. Must be between 0.1 and 25 miles.

Required range: 0.1 <= x <= 25
lat
number<float>
required

Latitude of the store location for simulation

Example:

37.7749

lng
number<float>
required

Longitude of the store location for simulation

Example:

-122.4194

Response

Successful retrieval of store information

stores
object[]
required