axios library to
Request
Sync requests
You can make synchronous requests in your pre/post scripts. By synchronous, we mean that you can await a request in your scripting code.
Below is an inbuilt example of using
Example:
Documentation Index
Fetch the complete documentation index at: /llms.txt
Use this file to discover all available pages before exploring further.
Bruno V4 includes potentially breaking changes for existing users. Read more for details.
axios library to
const axios = require("axios");
const response = await axios.get("https://api.github.com/users/usebruno");
bru.setVar("avatarUrl", response.data.avatar_url);