Skip to main content
GET
/
drn
/
{visitorId}
Returns device reputation information of a visitor.
curl --request GET \
  --url https://drn-api.fpjs.io/drn/{visitorId} \
  --header 'Authorization: Bearer <token>' \
  --header 'X-API-Version: <x-api-version>'
{
  "data": {
    "regionalActivity": {
      "startDate": "2023-12-25",
      "endDate": "2023-12-25",
      "countries": [
        {
          "code": "<string>",
          "detectors": [
            {
              "type": "ip",
              "activityPercentage": 123
            }
          ]
        }
      ]
    },
    "suspectScore": {
      "startDate": "2023-12-25",
      "endDate": "2023-12-25",
      "minimum": {
        "value": 123,
        "signals": {
          "vpn": {
            "timezoneMismatch": 123,
            "publicVPN": 123,
            "auxiliaryMobile": 123
          },
          "ipBLocklist": {
            "emailSpam": 123,
            "attackSource": 123
          },
          "tor": 123,
          "proxy": 123,
          "emulator": 123,
          "tampering": 123,
          "clonedApp": 123,
          "frida": 123,
          "highActivity": 123
        }
      },
      "maximum": {
        "value": 123,
        "percentile": 123,
        "signals": {
          "vpn": {
            "timezoneMismatch": 123,
            "publicVPN": 123,
            "auxiliaryMobile": 123
          },
          "ipBLocklist": {
            "emailSpam": 123,
            "attackSource": 123
          },
          "tor": 123,
          "proxy": 123,
          "emulator": 123,
          "tampering": 123,
          "clonedApp": 123,
          "frida": 123,
          "highActivity": 123
        }
      }
    },
    "timestamps": {
      "firstSeentAt": "2023-12-25",
      "lastSeenAt": "2023-12-25"
    }
  }
}

Authorizations

Authorization
string
header
required

Bearer authentication header of the form Bearer <token>, where <token> is your auth token.

Headers

X-API-Version
string
default:2024-09-01
required

The API version to use.

Path Parameters

visitorId
string
required

The visitor id to get information on.

Query Parameters

signals
enum<string>[]
required

The information signals to retrieve.

Available options:
regional_activity,
suspect_score,
timestamps

Response

A JSON object representing reputation information related to requested signals.

data
object

Object containing properties of the signals requested