Skip to main content

Don’t Die API

The Don’t Die API is a RESTful API that provides access to the Don’t Die platform.

API Keys

The Don’t Die API uses API keys. Please email [email protected] to get an API key. Once you have an API key, you can use it to authenticate your requests to the API. The API key is set via the X-API-KEY header.

Authentication

The Don’t Die API uses Bearer tokens for authentication. To get a Bearer token, you need to sign up for an account on the Don’t Die platform and then login. You will need both the ACCESS_TOKEN and the X-API-KEY to authenticate your requests to the API.
curl -X GET 'https://api.dontdie.com/account' \
     -H 'Authorization: Bearer ACCESS_TOKEN' \
     -H 'X-API-KEY: X-API-KEY'