API Tokens at Account Level Not Working

Background: I was looking into API/Access Tokens for Bitbucket, because the App Passwords are deprecated. The workspace and pre-repo access tokens do work as expected.

There are also Atlassian account level API tokens. I’ve noticed that there are now scoped tokens there, and that included Bitbucket. The link on the API token explicitly points to the Bitbucket documentation:

So, I created one with read scopes:

However, when I use the created token, it does not work:

$ curl --request GET \
  --url 'https://api.bitbucket.org/2.0/repositories/RomanStoffel/test-repo' \
  --header 'Authorization: Bearer <the-token>' \
  --header 'Accept: application/json'

{"type": "error", "error": {"message": "Token is invalid, expired, or not supported for this endpoint."}}⏎    

So, these tokens do not seem to actually work?