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

# Account Rules

> Get KYC tier limits and restrictions

<Info>
  Retrieve the defined transaction and balance limits for each KYC level.
</Info>

## Request

<ParamField header="Authorization" type="string" required>
  `Bearer olive_live_xxx`
</ParamField>

***

## Response

<ResponseField name="rules" type="array">
  List of tier rules
</ResponseField>

***

## Examples

<RequestExample>
  ```bash cURL theme={null}
  curl -X GET "https://demo.api.vultlocal.com/api/v1/compliance/account-rules" \
    -H "Authorization: Bearer olive_live_xxx"
  ```
</RequestExample>

<ResponseExample>
  ```json 200 OK theme={null}
  {
    "rules": [
      {
        "kyc_level": 1,
        "max_balance": 5000000,
        "daily_limit": 1000000,
        "single_limit": 500000,
        "description": "Standard User"
      },
      {
        "kyc_level": 2,
        "max_balance": 20000000,
        "daily_limit": 5000000,
        "single_limit": 2000000,
        "description": "Verified User"
      }
    ]
  }
  ```
</ResponseExample>


## OpenAPI

````yaml olive-openapi.json GET /account-rules
openapi: 3.0.0
info:
  description: >-
    API Gateway for OLIVE NFC Card Payment System - Comprehensive payment, card
    management, agent operations, and admin authentication. All /api/v1 routes
    require authentication using either API Key or JWT token.
  title: OLIVE NFC Card Payment API
  termsOfService: http://swagger.io/terms/
  contact:
    name: API Support
    email: support@olive.sl
  license:
    name: Apache 2.0
    url: http://www.apache.org/licenses/LICENSE-2.0.html
  version: 1.0.0
servers:
  - url: https://olive-gateway-a6ba.onrender.com/api/v1
security: []
paths:
  /account-rules:
    get:
      tags:
        - Account Rules
      summary: List all account rules
      description: List account rules for all KYC levels
      responses:
        '200':
          description: OK
          content:
            application/json:
              schema:
                type: object
                additionalProperties: true
        '500':
          description: Internal Server Error
          content:
            application/json:
              schema:
                type: object
                additionalProperties: true
      security:
        - ApiKeyAuth: []
components:
  securitySchemes:
    ApiKeyAuth:
      description: >-
        API Key for third-party integrations (WhatsApp, Smart PAY, VULT).
        Format: 'Bearer olive_live_xxxxxxxxxxxxx'
      type: apiKey
      name: Authorization
      in: header

````