Status Endpoints

API Ping

1
/v1/Status

GET request for checking if the API is running. Example response body:

1
2
3
{
  "data": "GIRAF API is running!"
}

Possible status response code is 200 Success.

Database Connection Ping

1
/v1/Status/database

GET request for checking connection to the database. Example response body:

1
2
3
{
  "data": "Connection to database"
}

Possible status responses code are 200 Success and 503 server error.

Get Git Version

1
/v1/Status/version-info

Endpoint for getting git version info i.e. branch and commithash. Example response body:

1
2
3
{
  "data": "CommitHash: ref: refs/heads/feature/114"
}

Possible status response is 200 Success.


Last update: December 12, 2023