LabHub

Blog

API Design & Testing Tools 2026 — Bruno / Insomnia / Postman / Hoppscotch / Scalar / Mintlify / Buf Deep Dive

한국어English日本語

Prologue — "I can't use Postman anymore"

A real Slack message from 2025: "The new Postman version forces sign-in, my collections auto-synced to the cloud, and security shut us down. Recommendations?"

Fifty replies. Bruno, Hoppscotch, Insomnia (old version), Yaak, Apidog. Five years ago the question "what else is there besides Postman?" would have felt strange. In 2026 the opposite is true. Not using Postman is the new default for many teams.

It is not just one company's policy change. The whole API tooling market has been re-sorted. Postman → Insomnia → Bruno is a clear arc toward "off-cloud, off-account, off-lock-in." OpenAPI viewers moved from Swagger UI to Redoc to Scalar. Docs: ReadMe and Mintlify turn an OpenAPI spec into a hosted developer portal. gRPC: Buf is the de facto toolchain. And AI shows up everywhere — Postbot and Insomnia AI generate requests from natural language and explain responses.

This post draws the map of API design and testing tools as of May 2026. Four buckets — clients, docs, design, gRPC — then a final question: which tool fits your team?


1. The 2026 API tooling map — four buckets

The big picture. Most tools blur category lines, but if we sort by core value proposition we get four clusters plus a few cross-cutting categories.

CategoryToolsPurpose
Client (send requests)Postman, Insomnia, Bruno, Hoppscotch, Yaak, Apidogcurl replacement, collection management, automation
Docs / viewerSwagger UI, Redoc, Scalar, RapiDocrender OpenAPI for humans
Design / specStoplight Studio, Bruno (design mode), Apidogdesign APIs before code, generate mocks
Docs SaaSReadMe, Mintlify, Bump.sh, Redoclyhosted developer portal, changelog, search
gRPC / ProtobufBuf, gRPCurl, Kreya, BloomRPC (deprecated), Postman gRPCProtobuf design, gRPC calls
MarketplaceRapidAPI, Postman Public API Networkexternal API discovery, gateway
AI assistPostbot, Insomnia AI, Apidog AInatural-language request generation, response explanation

The taxonomy is messy because tools overlap. Postman does client + mocking + docs + gRPC + AI. Bruno focuses on client + lightweight design + git-based sync. Apidog tries to do design + client + docs + mocking in a single product.

When picking, look at two things.

  1. Core value: requests? spec design? docs?
  2. Data ownership: local files? cloud? git?

Point 2 is the 2026 fault line. The Postman drama drove a "my data on my filesystem" movement that produced Bruno, Yaak, and Insomnia's file-based mode. Reducing cloud dependence is a clear market direction.


2. Bruno — winner of the file-based wave

The fastest-growing tool of the cohort. Started in 2021, raised a Series A in 2024. One-line summary: every collection is just files; commit them to git.

Why it took off

The single key differentiator: collection = file tree. Postman wraps a collection in one big JSON blob that auto-syncs to the cloud. Bruno stores a collection as a directory and each request as a .bru file.

my-api/
  bruno.json
  environments/
    dev.bru
    prod.bru
  users/
    list-users.bru
    create-user.bru
  orders/
    get-order.bru

Each .bru is human-readable text.

meta {
  name: List Users
  type: http
  seq: 1
}

get {
  url: {{baseUrl}}/users
  body: none
  auth: bearer
}

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

Why does this matter? git diff becomes meaningful. In a PR review, "this request added a header" is visible at a glance. To see the same change in a Postman export, you stare at a JSON blob diff. API collection changes become reviewable like code changes.

Side effects: you can branch and merge. You can receive collection changes as PRs. You can lint collections in CI. That is the real value of file-based.

Features

Weaknesses

Who should use it

Bruno's pitch: "Collections are code. If you already have git, why pay for another SaaS?"


3. Insomnia (Kong) — two trust crises

Insomnia was once the beloved Postman alternative. Light, clean, worked offline. Kong acquired it in 2019, and what happened next split the timeline.

The 2023 crisis — Insomnia 8 forced login

The August 2023 Insomnia 8 release sparked a major backlash. The new version effectively required login and tried to migrate local data into a new cloud-sync model. Some users reported data appearing in the cloud without explicit consent.

The community erupted. GitHub issues collected hundreds of comments. Many users downgraded to Insomnia 7.x or jumped to Bruno. Kong apologized, added Scratch Pad mode (use without an account), and committed to changing the migration model.

2024–2025 recovery

Kong since then:

Still a strong product. Its Kong Konnect gateway integration is unmatched by any other client. But trust, once lost, returns slowly.

2026 assessment

Who should use it


4. Postman — the giant's shadow, betting on AI

Postman is still the biggest company by far. Over 25 million users, a 5.6 billion dollar valuation after Series E in 2021. But the mood has clearly shifted.

The 2023 trust crisis

In May 2023 Postman v10 hinted at the future deprecation of Scratch Pad — meaning the no-account mode would be phased down. Combined with the fact that collections live in the Postman cloud by default, enterprise security teams ruled it out: customer API keys and payloads sitting in an external SaaS was a non-starter.

The result:

Postman eventually kept Scratch Pad and re-emphasized local options. But the "cloud by default" perception stuck.

Postbot — the AI bet

Postman bet hard on AI. Postbot:

In the GPT-5 / Claude 4.x era, AI is more table stakes than differentiator. But Postman has an enormous context — collections, history, environments — that lets the AI produce noticeably better outputs than a stand-alone AI in another tool.

Feature breadth is still the widest

Weaknesses

Who should use it


5. Hoppscotch — fully open-source, self-host friendly

Hoppscotch is an open-source API client out of India. Started in 2019 (originally Postwoman; renamed after trademark issues). Core: fully open source, runs in the browser instantly, self-hostable.

Differentiators

  1. PWA / web-first — use it in the browser right now at hoppscotch.io. No install.
  2. Apache 2.0 open source — the core is genuinely open, self-hostable
  3. One-line Docker self-host — enterprises can run it on their own infra
  4. Fast — Vue based, lightweight
  5. Local storage — defaults to browser IndexedDB

Features

Weaknesses

Who should use it


6. Stoplight Studio (SmartBear) — design-first that stalled

Stoplight Studio was once the leading API design-first tool (write the OpenAPI spec before any code). Visual editor for OpenAPI, auto-generated mock servers, hosted docs. SmartBear acquired Stoplight in 2023.

Post-acquisition stall

SmartBear owns a wide API portfolio — Swagger UI (the original), SoapUI, ReadyAPI. The Stoplight acquisition was a natural fit, but post-acquisition Stoplight Studio development visibly slowed. The community wondered: "Will Stoplight, like every other tool in SmartBear's catalog, become an enterprise sales vehicle?"

As of 2026, Stoplight Studio:

Who should use it


7. Scalar — the rising star OpenAPI viewer

Scalar appeared in 2023 and shook up the OpenAPI viewer market. Raised a seed in 2024 and a larger round in 2025. Core message: "Swagger UI is ugly, Redoc is too static. Let us rebuild it."

Why it took off fast

  1. Design quality — UI that matches 2026 design trends
  2. Dark mode, keyboard shortcuts, search — Postman-grade UX
  3. Live requests — call the API from the docs page
  4. Vue / React / Hono / Express integrations — one line of code mounts it
  5. Open source (MIT) — self-hosting friendly

Usage pattern

// Hono example
import { apiReference } from '@scalar/hono-api-reference'

app.get(
  '/reference',
  apiReference({
    spec: { url: '/openapi.json' },
  })
)

That is it. One line in the backend gives you a Scalar UI for your OpenAPI at /reference.

Scalar vs Redoc vs Swagger UI

ItemSwagger UIRedocScalar
Designfeels like 2014clean, staticmodern
Live requestYesNo (paid in Redocly)Yes
Dark modepartialYesYes
One-line integrationYesYesYes
Self-hostedYesYes (CLI separate)Yes
Searchweakgoodvery good
Base licenseApache 2.0MITMIT

Who should use it


8. Redoc / Redocly — open-source viewer plus commercial CLI

Redoc has long been recognized as one of the cleanest OpenAPI viewers. Since 2024 Redocly (the company) has invested in paid tooling: CLI, linter, portal.

Two branches

  1. Redoc (open source, MIT) — single-page OpenAPI viewer
  2. Redocly CLI (commercial) — multi-spec portal, linter, bundle, OAS-to-website

Characteristics

Who should use it


9. Swagger UI — the classic, still alive

The original. Started in 2011, acquired by SmartBear and donated to the OpenAPI Initiative. Almost every backend framework ships a one-liner that mounts Swagger UI (FastAPI, Spring, NestJS, Express, ...).

Why it is still used

Weaknesses

Who should use it


10. Mintlify / ReadMe.com — two doc SaaS heavyweights

This category promises "turn an OpenAPI spec into a full-stack developer portal."

Mintlify

ReadMe.com

Mintlify vs ReadMe

ItemMintlifyReadMe
Designmodern/minimalricher, slightly heavier
MDX friendlinessvery goodOK
AI searchstrongstrong
External dev dashboardweakstrong
API metricsweakstrong
Pricingstartup friendlyenterprise friendly

Who should use it


11. Buf — the de facto standard for the Protobuf / gRPC ecosystem

While the REST tooling world has been thrashing, the gRPC/Protobuf world has settled on a clear standard. Buf.

What Buf did

Protobuf is powerful but its tooling was scattered — protoc was hard, there was no dependency management, no linter. Buf bundled the following:

The most useful CI line

# .github/workflows/proto.yml
- run: buf lint
- run: buf breaking --against '.git#branch=main'

These two lines automatically block "style violations" and "changes that break existing clients" in PRs. A safety net every team running Protobuf in production should enable.

Buf Connect

Buf's own RPC protocol. Supports gRPC, gRPC-Web, and Connect protocol from the same codebase. You can call gRPC from the browser using fetch. Clean TypeScript/Go/Kotlin clients.

Who should use it


12. gRPCurl / Kreya — gRPC clients

Actually invoking gRPC needs its own tools (like curl for HTTP).

gRPCurl — CLI

grpcurl -d '{"name": "world"}' localhost:50051 helloworld.Greeter/SayHello

The gRPC version of curl. With server reflection enabled it pulls the schema automatically. Used in CI scripts, debugging, and ad-hoc calls. Not an official grpc-project tool — maintained by fullstorydev.

Kreya

A GUI gRPC client. Beyond simple calls:

Postman and Insomnia both support gRPC, but if you need the precision of a gRPC-dedicated tool, Kreya is usually smoother.

gRPC support in Postman / Insomnia / Bruno

Who should use what


13. Apidog / Yaak / Bambda — three upstarts

New tools from the last two years. All three aim for the gap between "Postman is heavy" and "Bruno is git-only."

Apidog (from China)

Yaak (Rust based)

Bambda


14. AI integration — Postbot, Insomnia AI

By 2026 almost every tool has AI features. Where is the real value?

What AI does well

  1. Generate requests — "get the repo list for an organization from the GitHub API" → request gets created
  2. Explain responses — point at a response JSON and explain what each field means
  3. Auto-write tests — read the response and generate assertions (status code, schema, ...)
  4. OpenAPI design assist — turn a natural-language description into a schema draft
  5. Debug errors — given a 401/403/500, list likely causes

Why Postbot stands out

Postman has an enormous context — collections + history + environments. Its AI can produce new requests "in the style of the other requests in your collection." Stand-alone AIs in other tools lack this org-internal context and produce generic outputs.

Why Insomnia AI stands out

Kong Konnect integration — the AI understands the API catalog and policies that Kong knows about. Powerful for orgs already on Konnect.

Limits


15. Korea / Japan — Toss, Mercari

Toss (Korea)

Toss is known for taking API design extremely seriously. Public APIs live at docs.tosspayments.com and the internal doc system is recognized for clean design and consistent vocabulary. Internally:

The Toss tech blog at toss.tech regularly publishes API-design content.

Mercari (Japan)

Mercari is the large Japanese marketplace. Internally they use gRPC extensively and built a custom Protobuf schema governance system. The engineering.mercari.com blog has posts on adopting Buf and the Connect protocol. Their public API surface is small but their internal microservice tooling adoption is fast.

Another Japan example: LINE runs its own internal API tooling ecosystem (LY corp.), and many large Japanese enterprises use SmartBear ReadyAPI extensively.


16. Who should pick what

Final summary.

Solo dev / small side project

Small engineering team (5-20)

Large organization / enterprise

API-first company (the product is the API — Stripe/Twilio scale)

Closed (all APIs are internal)

Open-source absolutist


Closing

Five-year changes, summarized

Ten antipatterns

  1. Adopting Postman because "big tools are safe" — discovers compliance friction late
  2. Standardizing on a SaaS API client without a data ownership policy — gets blocked by security
  3. Not committing collections to git — no PR review possible
  4. Code without an OpenAPI spec — docs always drift from code
  5. Operating without Spectral / Buf breaking — humans discover compat breaks
  6. Exposing Swagger UI directly to the public — its dated look hurts brand perception
  7. Trusting AI-generated assertions blindly — wrong tests get committed
  8. Doing gRPC inside Postman only — falls short when gRPC-native precision is needed
  9. Starting frontend without a mock server — sprint stalls waiting for backend
  10. Hand-writing docs — they drift from code within a week

Next post

Candidates: OpenAPI 3.1 deep dive — JSON Schema unification and webhooks, Connect protocol vs gRPC vs REST — the 2026 choice, API mocking tools compared — Prism, MSW, WireMock.

"API tooling is not just tooling for code. It is tooling for the agreement between people who build APIs. When the agreement is clean, the tooling is light."

— API Design & Testing Tools 2026, end.


References

Comments

No comments yet.

Sign in to leave a comment