> ## Documentation Index
> Fetch the complete documentation index at: https://ekacare-mintlify-dfb0ffc0.mintlify.site/llms.txt
> Use this file to discover all available pages before exploring further.

# Search slots

A webhook event is sent for the results of a doctor’s consultation slot search.
[Slot Search Api](https://developer.eka.care/api-reference/user-app/abdm-connect/phys-cons/search-slots)

### Request

**Headers:**

* `Eka-Webhook-Signature`: `<Eka Webhook Signature>`  [Refer: Webhook Signature](/api-reference/connect/webhooks/webhook-signature)
* `Content-Type`: `application/json`

**Body:**

```json theme={null}
{
  "service": "uhi",
  "event": "doctor.slot.search.results",
  "event_time": 1749822309,
  "transaction_id": "<webhook transaction id>",
  "timestamp": 1749825214,
  "business_id": "<partner business id>",
  "client_id": "<partner client id>",
  "data": {
    "doctor": {
    "education": "<string>",
    "experience": "<string>",
    "gender": "<string>",
    "id": "<string>",
    "languages": [
      "<string>"
    ],
    "name": "<string>"
  },
  "provider_info": {
    "address": "<string>",
    "city": "<string>",
    "id": "<string>",
    "name": "<string>",
    "phone": "<string>"
  },
  "slots": [
    {
      "currency": "<string>",
      "date": "<string>",
      "end_time": "<string>",
      "id": "<string>",
      "price": "<string>",
      "start_time": "<string>",
      "type": "<string>"
    }
  ]
  }
}
```
