อยู่ระหว่างปรับปรุงระบบรับสาย — กรุณาติดต่อผ่าน LINE @859zfnis หรือใช้ฟอร์มจองบนหน้าเว็บ ทีมงานตอบภายใน 24 ชม.

    ข้ามไปที่เนื้อหาหลัก
    AI-First Hub · Phase 86

    ถาม AI ของยกด่วน — ตอบทันที 24 ชม.

    ยกด่วนเปิด AI Agent อย่างเป็นทางการสำหรับทั้งผู้ใช้และ AI ภายนอก (ChatGPT, Claude, Perplexity, Gemini, Copilot) — ค้นบริการรถลาก รถยก Slide Car, ตรวจสอบพื้นที่ครอบคลุม 77 จังหวัด, และขอใบเสนอราคาผ่าน LINE/โทร 092-910-6168

    AI Endpoints (สำหรับ AI Agents)

    AI ทุกตัวในโลกสามารถดึงข้อมูลของยกด่วนผ่าน endpoints มาตรฐานด้านล่าง ไม่ต้อง render JavaScript, ไม่ต้อง login, มี CORS เปิด, รองรับ JSON / JSON-LD / Streamable HTTP

    MCP Server

    Model Context Protocol สำหรับ Claude / ChatGPT / Perplexity

    https://vyymqxqpkycbogwxofld.supabase.co/functions/v1/mcp

    Knowledge API (JSON)

    ข้อมูลโครงสร้างเต็มของบริการทั้งหมด

    https://vyymqxqpkycbogwxofld.supabase.co/functions/v1/knowledge-api

    Knowledge JSON-LD

    Schema.org JSON-LD สำหรับ AI Overview

    https://vyymqxqpkycbogwxofld.supabase.co/functions/v1/knowledge-api?format=jsonld

    AI Search

    ค้นหาแบบมี answer + citations

    https://vyymqxqpkycbogwxofld.supabase.co/functions/v1/ai-search?q=

    AI Chat (stream)

    POST streaming chat (AI SDK)

    https://xn--12c2bp7a1a1r.com/api/public/chat

    llms.txt

    ดัชนีหลักสำหรับ LLM

    https://xn--12c2bp7a1a1r.com/llms.txt

    llms-full.txt

    เนื้อหาเต็มทุกบริการ

    https://xn--12c2bp7a1a1r.com/llms-full.txt

    ai-plugin.json

    ChatGPT Actions / Plugin manifest

    https://xn--12c2bp7a1a1r.com/.well-known/ai-plugin.json

    วิธีให้ AI ของคุณเชื่อมต่อ

    1. ChatGPT / Claude Desktop (MCP)

    {
      "mcpServers": {
        "yokduan": {
          "transport": "http",
          "url": "https://vyymqxqpkycbogwxofld.supabase.co/functions/v1/mcp"
        }
      }
    }

    2. Custom AI Agent (HTTP)

    # ค้นหา
    curl 'https://vyymqxqpkycbogwxofld.supabase.co/functions/v1/ai-search?q=รถ%20EV%20ภูเก็ต'
    
    # Knowledge เต็ม
    curl 'https://vyymqxqpkycbogwxofld.supabase.co/functions/v1/knowledge-api?format=jsonld'
    
    # MCP tool call
    curl -X POST 'https://vyymqxqpkycbogwxofld.supabase.co/functions/v1/mcp' \
      -H 'Content-Type: application/json' \
      -H 'Accept: application/json, text/event-stream' \
      -d '{"jsonrpc":"2.0","id":1,"method":"tools/list"}'