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

# Get Client IP

Retrieve the public IP address of the client making the request.


## OpenAPI

````yaml GET /api/v1/client-ip
openapi: 3.1.0
info:
  title: WaveCentric AI LooP API
  description: >-
    Comprehensive API for managing omnichannel logistics, inquiries, tasks, and
    data lake operations.
  version: 1.0.0
servers:
  - url: https://ai-loop.alpeadria.com
    description: Production server
security: []
paths:
  /api/v1/client-ip:
    get:
      tags:
        - System
      summary: Get client IP
      operationId: get-client-ip
      responses:
        '200':
          description: Client IP address
          content:
            application/json:
              example:
                ip: 127.0.0.1

````