One useful API test
An API test proves that a route works from request to response. It should send a request, let your route handler run, and check what the client gets back.
For your HackIndia repo, one good API test is better than five shallow checks. Pick a route that matters to your project, like login, create order, fetch notes, or submit feedback.
What to check
Check three things. First, the status code. Second, the response body. Third, the important side effect, if there is one.
For example, a UPI split app may test POST /expenses. The test should confirm 201, the returned expense amount, and that the expense was saved.