🛠 Admin API Endpoints
📍 Overview
The Admin API provides endpoints for managing system data, accounts to analyze or track.
🔹 Base URL
https://autonome.alt.technology/chatcx-itferc/api
📌 Endpoints
Method
Endpoint
Description
POST
/admin/insert
Insert X/Twitter to track by the agent.
GET
/
Retrieve account details.
GET
/health
Check API health status.
🔑 Insert Accounts to Track and Analyse
🔹 Request
POST /api/admin/insert
Host: chatcx.com
Content-Type: application/json
x-api-key: YOUR_ADMIN_KEY
{
"file": "csv with Twitter/X usernames"
}
🔹 Response
{
"success": true,
"message": "Data inserted successfully."
}
🔍 Retrieve Account Details
🔹 Request
GET /api
Host: chatcx.com
🔹 Response
[
"0xBalloonLover",
"0xCygaar",
"0xMert_",
"..."
"zachxbt",
"zackvoell"
]
🔄 API Health Check
🔹 Request
GET /api/health
Host: chatcx.com
🔹 Response
{
"success": true,
"status": "healthy"
}
Last updated