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

# Get wallet report

> Generates an AI-written report about the compliance status and activity of a specific wallet address.



## OpenAPI

````yaml GET /wallets/{wallet}/report
openapi: 3.1.0
info:
  title: Wavy Node API
  description: >-
    Compliance, fraud prevention, and risk analysis API for payment providers
    and cryptocurrency exchanges in Latin America.
  version: 1.0.0
  contact:
    name: Wavy Node Support
    email: support@wavynode.com
servers:
  - url: https://api.wavynode.com/v1
    description: Production
security:
  - apiKeyAuth: []
paths:
  /wallets/{wallet}/report:
    get:
      tags:
        - Wallets
      summary: Get wallet report
      description: >-
        Generates an AI-written report about the compliance status and activity
        of a specific wallet address.
      operationId: getWalletReport
      parameters:
        - name: wallet
          in: path
          required: true
          description: The EVM wallet address to query
          schema:
            type: string
      responses:
        '200':
          description: AI-generated wallet report
          content:
            application/json:
              schema:
                type: object
                properties:
                  success:
                    type: boolean
                  data:
                    type: string
                    description: AI-generated report in markdown format
components:
  securitySchemes:
    apiKeyAuth:
      type: apiKey
      in: header
      name: x-api-key
      description: >-
        Enter the full value with the `ApiKey` prefix. Example: `ApiKey
        wavy_your-api-key`. The prefix is required for authentication.

````