Skip to main content

Access Tokens

Token-based authentication is not available yet — it is something we may add later.

Today the Filedgr API authenticates with a static key and secret, sent as two headers on every request. There is nothing to acquire, cache or refresh:

curl "https://api.filedgr.network/vaults" \
-H "x-api-key: $FILEDGR_API_KEY" \
-H "x-api-secret: $FILEDGR_API_SECRET"

If you are porting an integration that expected a token exchange, replace it with the two headers above. See Authentication for the full reference and the API Reference for every endpoint.

note

Interactive sign-in to the Filedgr web and mobile apps does use a session token issued by the platform's identity provider. That token is separate from API credentials and is not what a server-to-server integration uses.