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

List all available modules

Developing
GET
https://api.twtaio.com/api/v1/modules
Get all available modules from twtaio

Request

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

Responses

🟒200Γ‰xito
application/json
Body

🟠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
{
    "modules": [
        {
            "id": "d2d2328e3359f3de",
            "displayName": "πŸ” Token Checker",
            "description": "Check X.com accounts (tokens) multi-threaded",
            "group": "βœ… Checkers",
            "displayOrder": 2,
            "parameters": [
                {
                    "name": "accounts",
                    "prompt": "<b>Please select your token list or import a new one.</b>\n\n<b>Accepted token formats:</b>\n- <code>USER:PASS:EMAIL:EMAILPWD:CT0:AUTH_TOKEN</code>\n- <code>USER:PASS:EMAIL:CT0:AUTH_TOKEN</code>\n- <code>AUTH_TOKEN:CT0</code>\n- <code>AUTH_TOKEN</code>",
                    "type": "string",
                    "optional": false,
                    "options": null
                },
                {
                    "name": "proxies",
                    "prompt": "Send the proxy list (format ip:port or ip:port:user:pass) or press 'Skip':",
                    "type": "string",
                    "optional": true,
                    "options": null
                },
                {
                    "name": "threads",
                    "prompt": "Enter the <b>maximum number of threads</b>:",
                    "type": "int",
                    "optional": true,
                    "options": null
                }
            ]
        }
    ]
}
Modified atΒ 2025-12-05 16:36:15
Previous
Authentication
Next
Get module details
Built with