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

# Verifying Dashen Bank Payments

> Step-by-step guide for Dashen Bank

## Required fields

| Field                | Example                       |
| -------------------- | ----------------------------- |
| `bank`               | `dashen`                      |
| `transaction_number` | `D250610001234`               |
| `account_number`     | Your Dashen receiving account |

## Example

```bash theme={null}
curl -X POST https://api.check.et/api/v1/verify \
  -H "Authorization: Bearer chk_xxx" \
  -H "Content-Type: application/json" \
  -d '{
    "bank": "dashen",
    "transaction_number": "D250610001234",
    "account_number": "0016789012345"
  }'
```

## Reference normalization

The API normalizes common Dashen reference formats automatically (with and without leading zeros, with or without dashes). Pass the number as printed on the receipt.
