Learn about authentication

DynamoPDF uses API keys to allow access to the endpoints

Getting your API Key

You can find your API keys on your dashboard, which you can access by logging in or signing up.

Authentication Method

DynamoPDF uses The Bearer authentication scheme and expects API key to be included in all API requests. Provide your API key as part of the Authorization header as shown below.

curl --request POST \
     --url https://api.dynamopdf.com/api/v1/pdf/link \
     --header 'accept: */*' \
     --header 'authorization: Bearer API_KEY_HERE' \
     --header 'content-type: application/json'