Query parameters

Responses

GET /active/search
curl \
 --request GET 'https://sandbox.serchservice.com/api/v1/active/search?q=string&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": {
    "best": {
      "id": "string",
      "name": "string",
      "avatar": "string",
      "rating": 42.0,
      "distance": 42.0,
      "image": "string",
      "category": "string",
      "status": "ONLINE",
      "more": {
        "last_signed_in": "string",
        "number_of_rating": 42,
        "number_of_shops": 42,
        "total_service_trips": 42,
        "total_shared": 42
      },
      "business": {
        "name": "string",
        "description": "string",
        "address": "string",
        "logo": "string"
      },
      "specializations": [
        {
          "id": 42,
          "special": "string",
          "category": "string",
          "image": "string",
          "avatar": "string"
        }
      ],
      "distance_in_km": "string",
      "verification_status": "REQUESTED"
    },
    "providers": [
      {
        "id": "string",
        "name": "string",
        "avatar": "string",
        "rating": 42.0,
        "distance": 42.0,
        "image": "string",
        "category": "string",
        "status": "ONLINE",
        "more": {
          "last_signed_in": "string",
          "number_of_rating": 42,
          "number_of_shops": 42,
          "total_service_trips": 42,
          "total_shared": 42
        },
        "business": {
          "name": "string",
          "description": "string",
          "address": "string",
          "logo": "string"
        },
        "specializations": [
          {
            "id": 42,
            "special": "string",
            "category": "string",
            "image": "string",
            "avatar": "string"
          }
        ],
        "distance_in_km": "string",
        "verification_status": "REQUESTED"
      }
    ],
    "shops": [
      {
        "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"
      }
    ]
  }
}