shlogg · Early preview
Athreya Aka Maneshwar @athreyac4

Streamlining API Management With APIHub And Lama2

Consolidated APIs in APIHub with consistent format & naming conventions. Built CLI tool Lama2 for easy API execution & VSCode extension for streamlined workflow.

In any startup, managing APIs across multiple services is a common challenge. 
We faced three main issues:  

Documenting APIs

Publishing the documentation

Updating it whenever APIs change

Each of these had its own set of questions: how to do it, where to do it, what tools to use, and who would take ownership.
To tackle this, our team decided to consolidate all APIs into a single repository called APIHub. Each service’s APIs were stored in a simple and consistent format:

GET | POST | PUT | DELETE | PATCH  
${baseurl}/endpoint  
{  
  "body": "if present"  
}

    
    

    
    




We na...