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 > firebaseLocalStorageitem.

Copy the
accessTokenvalue found undervalue > stsTokenManager > accessToken(screenshot not shown for security reasons).Paste that token under an
Authorizationheader in your favorite API tool. It is aBearertoken, so the format would be:
{
"headers": {
"Authorization": "Bearer your_token_here"
}
}
Last updated