Skip to main content
GET
/
transactions
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
  }
}

Query Parameters

page
integer
Page number (default: 1)
per_page
integer
Results per page (default: 20, max: 100)
risk_level
string
Filter by risk level: low, medium, high, critical
status
string
Filter by decision status: pending, approved, blocked, escalated
from
string
Start date in YYYY-MM-DD format
to
string
End date in YYYY-MM-DD format
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
  }
}