/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

ValueTypeDescription
apistringsuccess or the endpoint won't load 😉
mongostringsuccess or ** fail**

Example Response

{
  "api": "success",
  "mongo": "success"
}