Quick Start
Send Your First Request
Section titled “Send Your First Request”- Open Nouto from the VS Code activity bar (or launch the desktop app)
- Click New Request or press
Ctrl+N - Select
GETas the method - Enter a URL, for example:
https://jsonplaceholder.typicode.com/posts/1 - Click Send (or press
Ctrl+Enter)
You should see the JSON response in the response panel.
Create a Collection
Section titled “Create a Collection”- Click the New Collection button in the sidebar
- Give it a name (e.g., “My API”)
- Right-click the collection to add requests or folders
- Press
Ctrl+Sto save a request to the collection
Use Environment Variables
Section titled “Use Environment Variables”- Open the Environments panel
- Create a new environment (e.g., “Development”)
- Add a variable:
baseUrl=https://jsonplaceholder.typicode.com - In your request URL, use:
{{baseUrl}}/posts/1 - Activate the environment and send the request
