twtaio
  1. Modules Endpoints
twtaio
  • Introduction
    • What is twtaio (X toolkit)?
    • Quick start
    • 💰 Referral System
  • Getting Started
    • Subscribe and activate
    • Access the Panel
  • Authentication
    • Panel authentication
      • Getting auth token via /auth
    • API authentication
      • Request your API key
  • Telegram Bot (@twtaiobot)
    • Basic Commands
      • /home
      • /auth
      • /cancel
    • Token Management
      • /tokens
    • Executing Modules
      • Select module from menu
      • Configure parameters
      • Start execution
    • Raid System
      • How raid works
      • /raid <tweet_url> - Quick raid a tweet
      • /raidsettings - Configure raid settings
      • Auto Tweet Raid
    • Receiving Results
      • View live logs
      • Download output files
  • Panel (app.twtaio.com)
    • Log in
    • Accounts Management
      • Import and save tokens
      • Bind proxies to accounts
      • Check your accounts
      • Cross Follow Accounts
    • Proxies Management
      • Upload and save proxy lists
    • Communities Module
      • Manage Twitter communities
      • Community operations
    • Execute Modules
      • Select module & configure parameters
      • Start, stop and download results
  • API Reference (Lifetime plan only)
    • Authentication
    • Modules Endpoints
      • List all available modules
        GET
      • Get module details
        GET
      • Execute a module
        POST
    • Executions Endpoints
      • Check execution status
      • Get execution results
      • Download specific result file
      • Cancel running execution
  • Available Modules
    • Converters
    • Scrapers
    • Checkers
    • Botting
    • Tokens Manager
    • Miscellaneous
    • Communities
    • Mentioning
  • File Formats
    • Token formats
    • Proxy formats
  1. Modules Endpoints

Get module details

Developing
GET
https://api.twtaio.com/api/v1/modules/{moduleId}
Get detailed information about a specific module by providing the module ID.

Request

Authorization
Provide your bearer token in the
Authorization
header when making requests to protected resources.
Example:
Authorization: Bearer ********************
Path Params

Responses

🟢200Success
application/json
Body

🟠404Module not found
🟠401Unauthorized
Request Request Example
Shell
JavaScript
Java
Swift
curl --location --request GET 'https://api.twtaio.com/api/v1/modules/' \
--header 'Authorization: Bearer <token>'
Response Response Example
200 - Success
{
    "id": "81e4c4fb695bdfe8",
    "displayName": "🗑️ Delete Tweets",
    "description": "Delete all tweets from each account (token) automatically.",
    "group": "🧰 Tokens Manager",
    "parameters": [
        {
            "name": "ms_delete",
            "prompt": "Number of milliseconds per tweet removal (recommended: 50 tweets per 15 minutes (on each token), approx. 19,000 ms per tweet)",
            "type": "int",
            "inputType": null,
            "optional": true,
            "options": null
        },
        {
            "name": "accounts",
            "prompt": null,
            "type": "string",
            "inputType": "text",
            "optional": false,
            "options": null
        },
        {
            "name": "proxies",
            "prompt": null,
            "type": "string",
            "inputType": "text",
            "optional": true,
            "options": null
        },
        {
            "name": "threads",
            "prompt": null,
            "type": "int",
            "inputType": null,
            "optional": true,
            "options": null
        }
    ],
    "requirements": {
        "requiredParameters": [
            "accounts"
        ]
    }
}
Modified at 2025-12-05 16:51:10
Previous
List all available modules
Next
Execute a module
Built with