API Development

notes on API Development

Created: by Pradeep GowdaUpdated:Aug 29, 2024Tagged: api .

Tools

The following should be considered as alternatives for Postman.

  1. bruno – open source API client similar to Postman, Insomnia and similar tools. Bruno stores your collections directly in a folder on your filesystem. We use a plain text markup language, Bru, to save information about API requests.  You can use git or any version control of your choice to collaborate over your API collections.

  2. RapidAPI for Mac is a full-featured HTTP client that lets you test and describe the APIs you build or consume. It has a beautiful native macOS interface to compose requests, inspect server responses, generate client code and export API definitions.


dreamhead/moco: Easy Setup Stub Server

[
  {
    "response" :
      {
        "text" : "Hello, Moco"
      }
  }
]
java -jar moco-runner-<version>-standalone.jar http -p 12306 -c foo.json