- What's the difference from Basic auth?
- Bearer uses a token (often a JWT or opaque string), not user:password. The token proves identity; the server validates it. No password in the header.
- When do I use Bearer?
- Modern APIs — REST, GraphQL, gRPC via grpc-web. Almost universal in 2020s API design.
- Does the tool validate my token?
- No — it wraps it in header syntax and generates curl/fetch snippets. To validate a JWT, use the JWT Decoder.
- What if my API uses a different scheme name?
- Some use `Token`, `JWT`, or custom names instead of `Bearer`. Toggle the scheme field to match your API's expectation.