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

# List addresses

> Retrieves all the relevant on-chain addresses configured for a specific project.



## OpenAPI

````yaml GET /projects/{projectId}/addresses
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:
  /projects/{projectId}/addresses:
    get:
      tags:
        - Addresses
      summary: List addresses
      description: >-
        Retrieves all the relevant on-chain addresses configured for a specific
        project. Relevant addresses receive compliance notifications and alerts
        about interactions with malicious addresses.
      operationId: listAddresses
      parameters:
        - name: projectId
          in: path
          required: true
          description: The project ID
          schema:
            type: string
      responses:
        '200':
          description: List of addresses
          content:
            application/json:
              schema:
                type: object
                properties:
                  success:
                    type: boolean
                  data:
                    type: array
                    items:
                      $ref: '#/components/schemas/Address'
components:
  schemas:
    Address:
      type: object
      properties:
        id:
          type: integer
          description: Address ID
        address:
          type: string
          description: On-chain address
        description:
          type: string
          nullable: true
          description: Address description
  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.

````