> ## 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 V3 Services

Retrieve a list of featured logistics services and routes.


## OpenAPI

````yaml GET /api/public/v3-services
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/public/v3-services:
    get:
      tags:
        - Public APIs
      summary: Get V3 Services
      operationId: get-public-v3-services
      responses:
        '200':
          description: List of available services
          content:
            application/json:
              schema:
                type: object
                properties:
                  total_services:
                    type: integer
                  services:
                    type: array
                    items:
                      type: object

````