curl -X GET \
"https://verilock.io/api/v1/transactions?risk_level=high&per_page=10" \
-H "X-API-Key: your_api_key_here" \
-H "Accept: application/json"
{
"data": [
{
"id": "txn_c4e5f6a7-8b9c-4d0e-a1f2-b3c4d5e6f7a8",
"type": "wire_transfer",
"amount": 15000.00,
"currency": "USD",
"risk_score": 78,
"risk_level": "high",
"recommendation": "review",
"status": "pending",
"screened_at": "2026-03-15T14:22:00Z"
},
{
"id": "txn_a1b2c3d4-5e6f-7a8b-9c0d-e1f2a3b4c5d6",
"type": "crypto_transfer",
"amount": 48250.00,
"currency": "USD",
"risk_score": 91,
"risk_level": "high",
"recommendation": "block",
"status": "blocked",
"screened_at": "2026-03-14T09:15:00Z"
}
],
"meta": {
"current_page": 1,
"per_page": 10,
"total": 47,
"last_page": 5
}
}
Retrieve a paginated list of screened transactions with optional filters.
curl -X GET \
"https://verilock.io/api/v1/transactions?risk_level=high&per_page=10" \
-H "X-API-Key: your_api_key_here" \
-H "Accept: application/json"
{
"data": [
{
"id": "txn_c4e5f6a7-8b9c-4d0e-a1f2-b3c4d5e6f7a8",
"type": "wire_transfer",
"amount": 15000.00,
"currency": "USD",
"risk_score": 78,
"risk_level": "high",
"recommendation": "review",
"status": "pending",
"screened_at": "2026-03-15T14:22:00Z"
},
{
"id": "txn_a1b2c3d4-5e6f-7a8b-9c0d-e1f2a3b4c5d6",
"type": "crypto_transfer",
"amount": 48250.00,
"currency": "USD",
"risk_score": 91,
"risk_level": "high",
"recommendation": "block",
"status": "blocked",
"screened_at": "2026-03-14T09:15:00Z"
}
],
"meta": {
"current_page": 1,
"per_page": 10,
"total": 47,
"last_page": 5
}
}
1)20, max: 100)low, medium, high, criticalpending, approved, blocked, escalatedYYYY-MM-DD formatYYYY-MM-DD formatcurl -X GET \
"https://verilock.io/api/v1/transactions?risk_level=high&per_page=10" \
-H "X-API-Key: your_api_key_here" \
-H "Accept: application/json"
{
"data": [
{
"id": "txn_c4e5f6a7-8b9c-4d0e-a1f2-b3c4d5e6f7a8",
"type": "wire_transfer",
"amount": 15000.00,
"currency": "USD",
"risk_score": 78,
"risk_level": "high",
"recommendation": "review",
"status": "pending",
"screened_at": "2026-03-15T14:22:00Z"
},
{
"id": "txn_a1b2c3d4-5e6f-7a8b-9c0d-e1f2a3b4c5d6",
"type": "crypto_transfer",
"amount": 48250.00,
"currency": "USD",
"risk_score": 91,
"risk_level": "high",
"recommendation": "block",
"status": "blocked",
"screened_at": "2026-03-14T09:15:00Z"
}
],
"meta": {
"current_page": 1,
"per_page": 10,
"total": 47,
"last_page": 5
}
}