Skip to main content
GET
/
v3
/
transactions
/
curl
curl -X GET 'https://verification.didit.me/v3/transactions/?limit=50' \
  -H 'x-api-key: YOUR_API_KEY'
{
  "count": 1,
  "next": null,
  "previous": null,
  "total_transactions": 1,
  "results": [
    {
      "uuid": "abcdef12-3456-4890-abcd-ef1234567890",
      "transaction_number": 4123,
      "txn_id": "your-txn-2026-05-17-001",
      "transaction_type": "finance",
      "action_type": "withdrawal",
      "status": "IN_REVIEW",
      "direction": "OUTBOUND",
      "amount": "1500",
      "currency": "EUR",
      "preferred_currency_amount": "1620.45",
      "preferred_currency_code": "USD",
      "payment_details": "Withdrawal to crypto wallet",
      "txn_date": "2026-05-17T08:42:00Z",
      "created_at": "2026-05-17T08:42:11Z",
      "score": 78,
      "severity": "HIGH",
      "decision_reason_code": "WALLET_HIGH_RISK",
      "decision_reason_label": "Destination wallet flagged as high risk",
      "tags": [
        {
          "uuid": "9a8b7c6d-5e4f-4a3b-8c2d-1e0f9a8b7c6d",
          "name": "Manual review",
          "color": "#F59E0B",
          "description": null,
          "source": "custom"
        }
      ],
      "subject_name": "Maria Garcia",
      "subject_vendor_data": "user-12345",
      "counterparty_name": null,
      "counterparty_vendor_data": null,
      "counterparty_country": null,
      "subject_country": null,
      "assigned_to_name": "Alex Reviewer"
    }
  ]
}

Authorizations

x-api-key
string
header
required

Query Parameters

limit
integer
default:50

Page size. Defaults to 50 when omitted. There is no enforced maximum, but keep pages small for latency.

Required range: x >= 1
offset
integer
default:0

Zero-based offset of the first record to return. Prefer following the next URL from the previous page.

Required range: x >= 0

Response

Paginated list of transaction summaries, newest first.

count
integer

Capped count of matching transactions (exact up to 100, capped thereafter). Use total_transactions for the true count when paginating.

next
string | null

Absolute URL of the next page, or null on the last page.

previous
string | null

Absolute URL of the previous page, or null on the first page.

total_transactions
integer

Exact total count of (non-deleted) transactions for the application. Present on paginated responses.

results
object[]