Query parameters

  • c string
  • q string
  • lng number(double) Required
  • lat number(double) Required
  • radius number(double)
  • scope string

    Values are ALL, GOOGLE, or SERCH.

  • page integer(int32)
  • size integer(int32)

Responses

  • 200 */*

    OK

    Hide response attributes Show response attributes object
    • status string
    • code integer(int32)
    • message string
    • data array[object]
      Hide data attributes Show data attributes object
      • user string(uuid)
      • distance number(double)
      • shop object
        Hide shop attributes Show shop attributes object
        • name string
        • category string
        • image string
        • open boolean
        • status string

          Values are OPEN, SUSPENDED, or CLOSED.

        • rating number(double)
        • id string
        • address string
        • phone string
        • latitude number(double)
        • longitude number(double)
        • current object
          Hide current attributes Show current attributes object
          • id integer(int64)
          • day string
          • opening string
          • closing string
          • open boolean
        • weekdays array[object]
          Hide weekdays attributes Show weekdays attributes object
          • id integer(int64)
          • day string
          • opening string
          • closing string
          • open boolean
        • services array[object]
          Hide services attributes Show services attributes object
          • id integer(int64)
          • service string
      • is_google boolean
      • distance_in_km string
GET /shop/search
curl \
 --request GET 'https://sandbox.serchservice.com/api/v1/shop/search?lng=42.0&lat=42.0' \
 --header "X-Serch-Signed: $API_KEY" \
 --header "Authorization: Bearer $ACCESS_TOKEN" \
 --header "X-Serch-Drive-Api-Key: $API_KEY" \
 --header "X-Serch-Drive-Secret-Key: $API_KEY" \
 --header "X-Serch-Guest-Api-Key: $API_KEY" \
 --header "X-Serch-Guest-Secret-Key: $API_KEY"
Response examples (200)
{
  "status": "100 CONTINUE",
  "code": 42,
  "message": "string",
  "data": [
    {
      "user": "string",
      "distance": 42.0,
      "shop": {
        "name": "string",
        "category": "string",
        "image": "string",
        "logo": "string",
        "open": true,
        "status": "OPEN",
        "rating": 42.0,
        "id": "string",
        "address": "string",
        "phone": "string",
        "latitude": 42.0,
        "longitude": 42.0,
        "link": "string",
        "current": {
          "id": 42,
          "day": "string",
          "opening": "string",
          "closing": "string",
          "open": true
        },
        "weekdays": [
          {
            "id": 42,
            "day": "string",
            "opening": "string",
            "closing": "string",
            "open": true
          }
        ],
        "services": [
          {
            "id": 42,
            "service": "string"
          }
        ]
      },
      "is_google": true,
      "distance_in_km": "string"
    }
  ]
}