> ## Documentation Index
> Fetch the complete documentation index at: https://avenue.mintlify.site/llms.txt
> Use this file to discover all available pages before exploring further.

# List Suspense Items

> List all items caught by the Suspense Engine awaiting manual resolution.

## Request Headers

<ParamField header="x-api-key" type="string" required>
  Your live or test API key.
</ParamField>

## Query Parameters

<ParamField query="status" type="string">
  Filter by `PENDING`, `RESOLVED`, or `FLAGGED`.
</ParamField>

<ParamField query="reason" type="string">
  Filter by reason (e.g. `WALLET_CLOSED`, `AI_LOW_CONFIDENCE`).
</ParamField>

## Response

<Note>
  All amounts and balances in this endpoint are represented in **kobo** (e.g., `500000` = ₦5,000.00). Ensure you do not send or expect Naira values.
</Note>

<ResponseExample>
  ```json theme={null}
  {
    "success": true,
    "data": {
      "items": [
        {
          "id": "s1b3e8e2-b1c4-48e0-a75d-35e982d6b2c2",
          "developer_id": "d7b3e8e2-b1c4-48e0-a75d-35e982d6b2c2",
          "account_number": "2211334455",
          "amount": 5000000,
          "sender_name": "Unknown Sender",
          "raw_narration": "Transfer to John",
          "nomba_reference": "TXN_9999",
          "reason": "AI_LOW_CONFIDENCE",
          "status": "PENDING",
          "raw_payload": {},
          "resolved_at": null,
          "resolution_note": null,
          "created_at": "2026-07-01T12:30:00Z"
        }
      ],
      "total": 1,
      "page": 1,
      "limit": 20
    }
  }
  ```
</ResponseExample>
