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

# AED Wallet and Jurisdiction Pricing Tiers

> Understand Lexera's per-jurisdiction AED pricing, temporary wallet holds, and jurisdiction alias resolution before dispatching documents to attorneys.

Lexera prices legal verification by jurisdiction, with all holds denominated in United Arab Emirates Dirham (AED). Before you route a document to a human specialist, the platform checks your corporate wallet balance, places a temporary hold at the jurisdiction's pricing tier, and then assigns the case to the appropriate law firm queue.

## Per-jurisdiction pricing

Each target jurisdiction has a fixed pricing tier. When you call `lexera_route_to_specialist`, Lexera automatically looks up the required amount for the region you provide and reserves it from your workspace wallet.

For example, routing a document to the **UAE** authorizes a temporary hold of **AED 699**:

```json theme={null}
{
  "status": "DISPATCH_SUCCESS",
  "order_id": "32e65a49-ba4c-441f-b8fe-73932e545f89",
  "current_status": "pending_admin_triage",
  "assigned_firm": "Legal Operations Smart Hold",
  "authorized_amount": 699,
  "currency": "AED",
  "requires_human_verification": true
}
```

## Check rates before dispatching

You can query the required hold ahead of time with `lexera_check_jurisdiction_rates`. This is the recommended first step in any integration that routes documents to specialists, because it lets you surface pricing to your users before placing a hold.

```json theme={null}
{
  "jsonrpc": "2.0",
  "id": 1,
  "method": "tools/call",
  "params": {
    "name": "lexera_check_jurisdiction_rates",
    "arguments": {
      "target_jurisdiction": "UAE"
    }
  }
}
```

## Jurisdiction alias resolution

Lexera resolves common regional aliases to the parent country for pricing purposes. For example, both **UAE Federal** and **DIFC** map to the **UAE** pricing tier. You do not need to normalize these yourself: pass the alias in your tool call and Lexera handles the resolution automatically.

## Temporary hold behavior

The hold placed by `lexera_route_to_specialist` is temporary. It reserves the required AED amount from your corporate wallet while the document is in the attorney queue. The exact release timing is not documented; if you need details on hold duration or refund behavior, contact your Lexera account representative.

<Warning>
  If your workspace wallet lacks the required AED balance, the dispatch fails with an `Insufficient AED wallet balance` error streamed over SSE. Ask a workspace finance administrator to top up the wallet balance. See [Errors](/reference/errors) for the full error payload and resolution steps.
</Warning>

## Next steps

* Query rates programmatically with [lexera\_check\_jurisdiction\_rates](/tools/lexera-check-jurisdiction-rates)
* Dispatch a document with [lexera\_route\_to\_specialist](/tools/lexera-route-to-specialist)
* Review all documented error signatures in [Errors](/reference/errors)
