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

# Classify Intent

> Determine if a message is a logistics inquiry or a general request.

Classify the intent of a user message to determine if it's a logistics inquiry or another type of request.


## OpenAPI

````yaml POST /api/public/classify
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/classify:
    post:
      tags:
        - Public APIs
      summary: Classify Intent
      description: Determine if a message is a logistics inquiry or a general request.
      operationId: post-public-classify
      requestBody:
        required: true
        content:
          application/json:
            schema:
              type: object
              properties:
                message:
                  type: string
              required:
                - message
      responses:
        '200':
          description: Intent classification
          content:
            application/json:
              schema:
                type: object
                properties:
                  intent:
                    type: string
                    enum:
                      - INQUIRY
                      - OTHER
              examples:
                inquiry:
                  value:
                    intent: INQUIRY

````