DEV Community

Alex Spinov
Alex Spinov

Posted on

Bruno Has a Free API That Most Developers Dont Know About

Bruno stores API collections in your filesystem as plain text. Version control requests with Git.

Bru Format

get {
  url: {{baseUrl}}/api/users
  auth: bearer
}

auth:bearer {
  token: {{authToken}}
}

assert {
  res.status: eq 200
}
Enter fullscreen mode Exit fullscreen mode

CLI

bru run --env production
bru run users/ --output results.json
Enter fullscreen mode Exit fullscreen mode

Key Features

  • Filesystem-based (Git-friendly)
  • Plain text Bru markup
  • CLI for CI/CD
  • No cloud account needed
  • Import from Postman

Need to scrape or monitor web data at scale? Check out my web scraping actors on Apify or email spinov001@gmail.com for custom solutions.

Top comments (0)