Skip to main content
GET
/
v2
/
risk
/
config
Get Workspace Risk Configuration
curl --request GET \
  --url https://api.range.org/v2/risk/config \
  --header 'Authorization: Bearer <token>'
{
  "workspace_id": "ws-12345",
  "attribution_signals": [
    {
      "signal": "sanctions_ofac",
      "enabled": true,
      "severity": "severe"
    }
  ],
  "exposure_signals": [
    {
      "signal": "obfuscation",
      "enabled": true,
      "mode": "absolute",
      "thresholds": {
        "low": 0.01,
        "medium": 0.05,
        "high": 0.2,
        "severe": 0.5
      },
      "severity": "high",
      "min_usd": 10000
    }
  ],
  "behaviours": [
    {
      "behaviour": "smurfing",
      "enabled": true,
      "thresholds": {
        "low": 0.01,
        "medium": 0.05,
        "high": 0.2,
        "severe": 0.5
      },
      "ignore": false
    }
  ],
  "updated_at": "2026-05-18T10:00:00Z"
}

Authorizations

Authorization
string
header
required

Use Authorization: Bearer

Response

200 - application/json
workspace_id
string
required
Example:

"ws-12345"

attribution_signals
object[]
required
exposure_signals
object[]
required
behaviours
object[]
required
updated_at
string
required
Example:

"2026-05-18T10:00:00Z"

Last modified on May 19, 2026