> ## 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.

# lexera_check_jurisdiction_rates: Query AED Pricing Tiers

> Query Lexera's global pricing engine to retrieve the required AED wallet hold for a target jurisdiction before dispatching to a human attorney.

The `lexera_check_jurisdiction_rates` tool is a read-only pricing query. It returns the AED amount that will be temporarily held on your corporate wallet when you dispatch a document to a human attorney via [`lexera_route_to_specialist`](/tools/lexera-route-to-specialist). This tool does not place a hold, create an order, or consume any wallet balance. Use it to validate budget before initiating a paid review.

## Parameters

<ParamField body="target_jurisdiction" type="string" required>
  The governing region you want to price (for example, `UAE` or `Jordan`). Lexera resolves regional aliases (such as `UAE Federal` or `DIFC`) to the parent country for pricing.
</ParamField>

## JSON-RPC request

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

  ```bash theme={null}
  curl -X POST "https://lexera.dev/mcp-server/messages?sessionId=YOUR_SESSION_ID" \
    -H "Authorization: Bearer lex_82bea57b8c3fd39f..." \
    -H "Content-Type: application/json" \
    -d '{
      "jsonrpc": "2.0",
      "id": 1,
      "method": "tools/call",
      "params": {
        "name": "lexera_check_jurisdiction_rates",
        "arguments": {
          "target_jurisdiction": "UAE"
        }
      }
    }'
  ```
</CodeGroup>

<Info>
  The POST returns `HTTP 202 Accepted`. The actual rate response is streamed back over the open SSE connection.
</Info>

## Response

The response is streamed over SSE inside a JSON-RPC 2.0 envelope. The exact field names and structure are not fully documented in the current specification. The payload contains the pricing tier information for the requested jurisdiction.

<ResponseField name="result.content" type="array">
  An array of content objects with the pricing result.
</ResponseField>

<ResponseField name="jsonrpc" type="string">
  Always `"2.0"`.
</ResponseField>

<ResponseField name="id" type="number | string">
  Mirrors the `id` from the request.
</ResponseField>

## Related concepts

For details on how AED wallet holds work, how jurisdiction aliases are resolved, and what happens when a hold is placed, see the [Wallet & Pricing](/concepts/wallet-and-pricing) concept page.
