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

# Route Scanner

Calculates available logistics routes between origin and destination coordinates, preferring intermodal solutions.


## OpenAPI

````yaml POST /api/public/route-scanner
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/route-scanner:
    post:
      tags:
        - Public APIs
      summary: Logistics Route Scanner
      operationId: post-route-scanner
      requestBody:
        required: true
        content:
          application/json:
            schema:
              type: object
              properties:
                origin:
                  type: object
                destination:
                  type: object
              required:
                - origin
                - destination
      responses:
        '200':
          description: Available routes found.
          content:
            application/json:
              schema:
                type: object
                properties:
                  total_routes:
                    type: integer
                  possible_routes:
                    type: array
                    items:
                      type: object
              examples:
                success:
                  value:
                    total_routes: 1
                    possible_routes:
                      - steps: []
                        totalDistance: 450.5
                        summary: Truck -> Train -> Truck - 450.5 km

````