Skip to main content
GET
/
v2
/
risk
/
config
Get the workspace risk configuration
curl --request GET \
  --url https://api.range.org/v2/risk/config \
  --header 'Authorization: Bearer <token>'
{
  "workspace_id": "ws-12345",
  "exposure_signals": [
    {
      "signal": "sanctions_ofac",
      "enabled": true,
      "weight": 10,
      "mode": "binary",
      "threshold": 5,
      "time_window": "90d",
      "severity": "severe"
    }
  ],
  "behaviours": [
    {
      "behaviour": "smurfing",
      "enabled": true,
      "weight": 7,
      "confidence_threshold": 0.7,
      "ignore": false,
      "severity": "high"
    }
  ],
  "tier_thresholds": {
    "severe": 80,
    "high": 60,
    "medium": 30
  },
  "defaults": {
    "time_window": "90d",
    "dust_threshold_usd": 1
  },
  "updated_at": "2026-05-18T10:00:00Z"
}

Documentation Index

Fetch the complete documentation index at: https://docs.range.org/llms.txt

Use this file to discover all available pages before exploring further.

Authorizations

Authorization
string
header
required

Use Authorization: Bearer

Response

200 - application/json
workspace_id
string
required
Example:

"ws-12345"

exposure_signals
object[]
required
behaviours
object[]
required
tier_thresholds
object
required
defaults
object
required
updated_at
string
required
Example:

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

Last modified on May 19, 2026