Basic Auth Generator
Generate HTTP Basic Authentication header from username and password
Enter credentials above
Basic ...
curl -H "Authorization: Basic ..." https://api.example.com
HTTP Basic Authentication is a simple authentication scheme built into the HTTP protocol.
The credentials are encoded using Base64 in the format username:password
⚠️ Basic Auth should only be used over HTTPS as Base64 is easily decoded.