Required header
Send the API key with each server-to-server request. The key should be loaded from your environment variables or secret manager.
const headers = {
'X-API-Key': process.env.WAHDX_API_KEY
};import os
headers = {
'X-API-Key': os.environ['WAHDX_API_KEY']
}curl -H "X-API-Key: $WAHDX_API_KEY" "https://api.wahdx.com/api/content/accounts"