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>"
]
}
]
This endpoint returns pages from the protocols based on the query, publishers and tag.
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>"
]
}
]
Enter JWT token
OK
The response is of type Protocol · object[]
.
Was this page helpful?