Skip to main content
GET
/
api
/
v4
/
kyt
/
risk-profiles
List risk profiles
curl --request GET \
  --url https://api.example.com/api/v4/kyt/risk-profiles \
  --header 'ds-api-token: <api-key>'
{
  "data": [
    {
      "created_at": "2023-11-07T05:31:56Z",
      "id": "b2c3d4e5-f6a7-4901-8cde-f12345678901",
      "name": "Standard",
      "thresholds": [
        {
          "amount": 100,
          "assets": 0.01,
          "currency": "usd",
          "is_active_for_monitoring": true,
          "type": "SANCTIONS"
        }
      ],
      "updated_at": "2023-11-07T05:31:56Z"
    }
  ],
  "has_next": true
}

Authorizations

ds-api-token
string
header
required

API token passed in the request header.

Query Parameters

page
integer | null
default:0

Page number (0-based).

limit
integer | null
default:20

Number of results per page (1-200, default 20).

Response

OK