Authentication

You'll need to authenticate your requests to access any of the endpoints in the Digital Pay Works API. In this guide, we'll look at how authentication works.

Basic Authentication

With basic authentication, you use your Public and Privtate keys are used to authenicate your HTTP requests. You must log into your account, go to the API Keys tab, and generate a new API Key there. Here's what is looks like in cURL:

Example request with basic auth

curl https://https://worker-payments-resolver.hunterwbevis.workers.dev/PUBLIC_KEY/v1/hello_world \
  -H "Authorization: Bearer PRIVATE_KEY" \

Please don't commit your Private Keys to to GitHub! The Public Key can be sent and used on the frontend, but do not let your Secret Key leak onto the client.

Always keep your keys safe and reset it if you suspect it has been compromised.

Was this page helpful?