cURL Example

Bearer Token

Call protected endpoints with Authorization bearer tokens.

Command

curl -X GET 'https://api.plainutils.dev/v1/profile' \
  -H 'Authorization: Bearer YOUR_TOKEN'

Notes

  • Avoid logging bearer tokens in CI/CD output.
  • Refresh expired tokens before retrying protected calls.

More cURL Examples