⛓️Get Insurance Information
Retrieves insurance information from the DrugNet portal . The response is a JSON object containing a success boolean field, a message string field, and a data array field.
The data array contains objects with name
and image
string fields.
Endpoint: GET /
get_insurance
curl --location '/get_insurance' \
--header 'x-api-key: YOUR KEY' \
Successful Response
{
"success": true,
"message": "successful",
"data": [
{
"name": "METROPOLITAN HEALTH INSURANCE GHANA LTD.",
"image": "7tuyhzmq3ws68gb.jpg"
},
{
"name": "COSMOPOLITAN HEALTH INSURANCE",
"image": "61rukyp9z_ihlfb.png"
},
]
}
Last updated