Authentication
We don't yet have a formal API key authentication mechanism, but have one in the works. For now, you'll have to authenticate in the UI application and copy your JWT in the Firebase localStorage database. Here are the steps to get that value (note that this is in Firefox, so some steps might vary on other browsers):
Login to the application.
Open the Storage tab and find the
Indexed DB > https://app.holder.xyz > firebaseLocalStorageDb > firebaseLocalStorage
item.
Copy the
accessToken
value found undervalue > stsTokenManager > accessToken
(screenshot not shown for security reasons).Paste that token under an
Authorization
header in your favorite API tool. It is aBearer
token, so the format would be:
Last updated