πŸ›  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