ChatCX Docs
  • 📌 Introduction
  • 📍 API Documentation / Endpoints Overview
    • 🔑 Authentication
    • 📝 Submit a Query
    • ⏳ Check Job Status
    • 🛠 Integration Guide
    • 🏗 Error Handling
    • 🔑 Manage API Keys (Admin Only)
    • 🛠 Admin API Endpoints
  • 💡 How ChatCX Works
  • 🚀 ChatCX Chat
  • 🦜 Crypto Parrot - AI-Powered Web3 News Feed
  • 📖 What Can ChatCX Answer?
  • 🚀 What Are the Possibilities with ChatCX?
  • 🤖 What Else Can You Do with ChatCX?
Powered by GitBook
On this page
  • 🔹 Request
  • 🔹 Response (Processing)
  • 🔹 Response (Completed)
  1. 📍 API Documentation / Endpoints Overview

⏳ Check Job Status

Check the processing status of a submitted query.

🔹 Request

GET /api/chat/status/:jobId
Host: https://autonome.alt.technology/chatcx-itferc
x-api-key: YOUR_APP_KEY

🔹 Response (Processing)

{
  "status": "processing"
}

🔹 Response (Completed)

{
  "status": "completed",
  "result": {
    "answer": "DeFi trends include RWA tokenization...",
    "metadata": {
      "last_updated": "2024-02-07T14:23:45.123Z"
    }
  }
}
Previous📝 Submit a QueryNext🛠 Integration Guide

Last updated 4 months ago