Protocols
Search Protocols
Connect
- Webhooks
HealthAI
- Assessment
- EkaScribe
General Tools
- Medical Document Parsing
Doctor Tool
- Actors
- Instructions
- Patient Registration API
- Doctor and clinic API
- Appointment API
- Payments API
- Prescription API
- Notify
- Webhooks
ABDM Connect
- Create and Login
- User Session
- Patient Requests
- Consents
- Care Contexts
- Providers
- Profile
- Scan & Share
- Errors
Medical Knowledge-bases
- Overview
- Protocols
- Medications
Medical Records
- Create
- Read
- Update
- Delete
- Webhooks
User App
- Notifications
- Vital
- Webhooks
- Privacy
Release Notes
- ABDM Connect
Protocols
Search Protocols
This endpoint returns pages from the protocols based on the query, publishers and tag.
POST
/
eka-mcp
/
protocols
/
v1
/
search
curl --request POST \
--url https://api.dev.eka.care/eka-mcp/protocols/v1/search \
--header 'Authorization: Bearer <token>' \
--header 'Content-Type: application/json' \
--data '{
"queries": [
{
"query": "<string>",
"tag": "<string>",
"publisher": "<string>"
}
]
}'
[
{
"url": "<string>",
"source_url": "<string>",
"type": "image",
"author": "<string>",
"publication_year": 123,
"conditions": [
"<string>"
]
}
]
Authorizations
Enter JWT token
Body
application/json
Response
200
application/json
OK
The response is of type object[]
.
curl --request POST \
--url https://api.dev.eka.care/eka-mcp/protocols/v1/search \
--header 'Authorization: Bearer <token>' \
--header 'Content-Type: application/json' \
--data '{
"queries": [
{
"query": "<string>",
"tag": "<string>",
"publisher": "<string>"
}
]
}'
[
{
"url": "<string>",
"source_url": "<string>",
"type": "image",
"author": "<string>",
"publication_year": 123,
"conditions": [
"<string>"
]
}
]