/status
This provides a very basic status report for the API. It exists mainly so I can monitor the service, but it could be useful to check the status before you make other calls.
Parameters
No parameters.
Example Request
curl --request GET \
--url 'https://api.makerapi.com/api/v1/status' \
--header 'Content-Type: application/json'
Response Schema
Value | Type | Description |
---|---|---|
api | string | success or the endpoint won't load 😉 |
mongo | string | success or ** fail** |
Example Response
{
"api": "success",
"mongo": "success"
}