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

# Network Data

Fetch logistics network nodes and legs for visualization or planning.


## OpenAPI

````yaml GET /api/public/network-data
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/network-data:
    get:
      tags:
        - Public APIs
      summary: Get Network Data
      operationId: get-public-network-data
      responses:
        '200':
          description: Network topology nodes and legs.
          content:
            application/json:
              schema:
                type: object
                properties:
                  success:
                    type: boolean
                  data:
                    type: object
                    properties:
                      nodes:
                        type: array
                        items:
                          type: object
                      legs:
                        type: array
                        items:
                          type: object
              examples:
                success:
                  value:
                    success: true
                    data:
                      nodes:
                        - node_id: '1'
                          label: Venice
                          type: gateway
                          lat: 45.44
                          lng: 12.31
                      legs:
                        - id: '20'
                          from: Venice
                          to: Milan
                          type: train
                          distance_km: '280'

````