Get server side intelligence
Receive and process device intelligence data on your backend.
Fingerprint client agents (for example, the JavaScript agent) allow you to get the visitor ID on the client. However, client-side code can always be tampered with, so we recommend processing Fingerprint results securely on your server. Fingerprint also intentionally limits the information available in the client response. Information related to fraud protection like Smart Signals is only available on the server.
Fingerprint offers three methods for getting device intelligence to your server:
- Sealed Client results (real-time processing)
- Events API (real-time processing)
- Webhooks (asynchronous processing)
All methods provide the same information but have different trade-offs in latency and implementation complexity. Read below to choose the best method for your use case.
Server integrations are free
Getting device intelligence to your server is free. Querying for an event through our APIs or receiving a webhook does not come at any additional cost.
Sealed Client Results
If your application needs to make a decision or take action as soon as Fingerprint results are available, your best option is to use Sealed Client Results.
- Using this method, Fingerprint sends the full encrypted payload to the client.
- The encryption ensures that it cannot be altered by malicious actors.
- Your client forwards the payload to your server where you can decrypt and process it without any additional API calls.
Compared to the Events API, integrating Sealed Client Results involves additional steps like creating and managing decryption keys. But if you want to get the best end-to-end performance, they should be your first choice.
Events API
A simpler alternative for real-time processing is to use our Server API.
- Using this method, your client sends the
requestId
from the Fingerprint client agent to your server. - On the server, you can use the Server API
/events
endpoint to get the full device intelligence result.
Compared to Sealed Client Results, this setup requires one additional API call which might translate into higher latency.
Webhooks
If real-time processing is not required, we offer Webhooks to send the device intelligence results to you automatically and asynchronously.
- Using this method, you give Fingerprint a URL of your server endpoint for processing webhooks.
- For every identified visitor, Fingerprint will send the full device intelligence result to your server endpoint.
Typical applications of Webhooks include storing a copy of every result for further processing or increasing security through the Zero Trust Mode.
Protecting from tampering and replay attacks
None of the mechanisms above protect from replay attacks. It's up to you to implement it separately on your backend.
See Protecting from client-side tampering and replay attacks to learn about additional security measures you can take to protect your Fingerprint implementation.
Updated 15 days ago