> ## Documentation Index
> Fetch the complete documentation index at: https://docs.fingerprint.com/llms.txt
> Use this file to discover all available pages before exploring further.

# Open Client Response

> Read the full device intelligence result in-flight on your proxy integration for faster and more secure processing.

<Note>
  **Availability**

  * Javascript agent version [**3.0.0**+](/docs/changelog-javascript-agent#v3-0-0)
  * Android SDK version [**2.8.0**+](/docs/changelog-android-sdk#v2-8-0)
  * iOS SDK version [**2.8.2+**](/docs/changelog-ios-sdk#v2-8-2)
</Note>

<Tip>
  **Using JavaScript agent v4?**

  JavaScript agent v4 responses are not obfuscated by default, so you don’t need Open Client Response. You can read the agent response directly in your proxy integration without additional configuration.
</Tip>

Our JavaScript agent deploys request and response **obfuscation** to prevent reverse engineering or other malicious activities. This typically prevents anyone from intercepting and using the information in transit, such as on your proxy.

However, there are scenarios where it may be beneficial to have the **deobfuscated** response information available on your proxy immediately, instead of sending it from the proxy to the client (browser) and back to your backend. Some reasons for this include:

* **Faster processing:** The response is available on your [proxy integration](/docs/v3/protecting-the-javascript-agent-from-adblockers) sooner than on the client, reducing the last hop latency.
* **Increased security**: This approach can help prevent certain replay attacks, as the response coming directly from our backend is more trustworthy than the one received from the client.

For these reasons, it is possible to enable a specific configuration that sends the response from Fingerprint API to your proxy integration **as JSON, without obfuscation**. This open response includes the full device intelligence result (equivalent to the Server API [event](/reference/v3/server-api-get-event)) as a [sealed result](/docs/v3/sealed-client-results).

This allows you to decrypt and process the sealed device intelligence result directly in your proxy integration.

<Warning>
  **Requirements**

  * **Sealed Client Results** must be configured and enabled for Open Client Response to work. Refer to our dedicated [documentation page on Sealed Client Results](/docs/v3/sealed-client-results) for the configuration guide.
  * **Proxy secret**: Each payload must include the `FPJS-Proxy-Secret` header, set with a valid proxy secret generated in the Dashboard.
</Warning>

## Payload Format

Once **Open Client Response** is enabled, the response of the `POST /` endpoint becomes a deobfuscated JSON with this specific format.

* The actual device intelligence result is encrypted inside the`sealedResult` property. Decrypt the result as described in [Sealed client results](/docs/v3/sealed-client-results). If the runtime environment of your proxy integration is limited, you might not be able to use our SDKs to unseal the results. In that case, you need to write your own decryption implementation.
* Data inside `products.identification` are placeholder values supplied for backward compatibility with the JavaScript agent, feel free to ignore them.

```json Open Response Format theme={"theme":"github-dark-dimmed"}
{
  "v": "2",
  "requestId": "1725018942180.msvu3x",
  // Device intelligence result here: 
  "sealedResult": "<Sealed Client Results base64 payload>",
  // Placeholder values for backwards compatibility
  "products": {
    "identification": {
      "data": {
        "visitorToken": "<encoded visitorToken>",
        "result": {
          "visitorId": "",
          "visitorFound": false,
          "meta": {
            "version": "v1.1.2715+7a151f0a2"
          },
          "confidence": {
            "score": 0
          }
        }
      }
    }
  }
}
```

Please note that you must forward the open response payload to the client **without modifications**. If you change it, you risk that the JavaScript agent will not process the response correctly, leading to a negative impact on accuracy.

## How to Enable Open Client Response

Open Client Response is reserved for our Enterprise customers, reach out to your [support representative](https://fingerprint.com/support) for more information.
