Happy Endpoint

store list

Return list of stores given coordinates and raduis.

GET
/store-list

Authorization

RapidApiKey
X-RapidAPI-Key<token>

In: header

Query Parameters

latitude*string

Latitude coordinate

longitude*string

Longitude coordinate

radius*string

Search radius in miles

Header Parameters

X-RapidAPI-Host*string
Default"real-time-sephora-api.p.rapidapi.com"

Response Body

application/json

application/json

application/json

curl -X GET "https://example.com/store-list?latitude=37.4418834&longitude=-122.1430195&radius=50" \  -H "X-RapidAPI-Host: real-time-sephora-api.p.rapidapi.com"
{
  "success": true,
  "data": {
    "success": true,
    "data": {
      "stores": [
        {
          "address": {
            "address1": "355 Stanford Shopping Center",
            "address2": "",
            "city": "Palo Alto",
            "country": "US",
            "crossStreet": "El Camino Real & Sand Hill Road",
            "fax": "",
            "mallName": "",
            "phone": "(650) 327-5180",
            "postalCode": "94304",
            "state": "CA"
          },
          "curbsideHours": {
            "closedDays": "For the health and safety of our clients and associates, store hours may vary.",
            "fridayHours": "11:00AM-05:00PM",
            "mondayHours": "11:00AM-05:00PM",
            "saturdayHours": "11:00AM-05:00PM",
            "sundayHours": "11:00AM-05:00PM",
            "textColor": "Black",
            "thursdayHours": "11:00AM-05:00PM",
            "timeZone": "PST8PDT",
            "tuesdayHours": "11:00AM-05:00PM",
            "wednesdayHours": "11:00AM-05:00PM"
          },
          "displayName": "Stanford",
          "distance": 2,
          "email": "Sephora.Stanford@sephora.com",
          "isBopisable": true,
          "isConciergeCurbsideEnabled": false,
          "isCurbsideEnabled": true,
          "isNoShowFeeApplicable": true,
          "isOnlineReservationEnabled": true,
          "isRopisable": false,
          "isVirtual": false,
          "latitude": 37.442,
          "longitude": -122.172,
          "reservationSystem": "TimeTrade",
          "reservationUrl": "https://timetrade.com/app/sephora/workflows/SEPH001/schedule",
          "storeId": "0048",
          "storeType": "SEPHORA"
        }
      ]
    }
  }
}
{
  "success": false,
  "message": "Invalid payload provided. Please ensure: 1) 'Content-Type: application/json' is included in your request headers 2) Request body contains valid JSON data.",
  "error": {
    "issues": [
      {
        "code": "too_small",
        "minimum": 1,
        "type": "array",
        "inclusive": true,
        "exact": false,
        "message": "Array must contain at least 1 element(s)",
        "path": [
          "urls"
        ]
      }
    ],
    "name": "ZodError"
  }
}
{
  "success": false,
  "message": "Internal server error"
}