Authorization header to authenticate requests to the DRN API.
cURL
HTTP 401 error:
JSON
Documentation Index
Fetch the complete documentation index at: /llms.txt
Use this file to discover all available pages before exploring further.
DRN API requests are authorized by using the secret API key.
Authorization header to authenticate requests to the DRN API.
Authorization: Bearer SECRET_API_KEY
curl --request GET \
--url 'https://drn-api.fpjs.io/drn/{visitor-id-from-your-app}?signals=regional_activity' \
--header 'Authorization: Bearer SECRET_API_KEY' \
--header 'X-API-Version: 2024-09-01'
HTTP 401 error:
// HTTP Status: 401
{
"error": {
"code": "secret_key_not_found",
"message": "secret key not found"
}
}
Was this page helpful?