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

Execute a module

Developing
POST
https://api.twtaio.com/api/v1/modules/{moduleId}/execute
Run a module. The properties requested in the module you are going to run are listed under "parameters." You can find the requested properties within "Get module details" API Endpoint.

Request

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

Body Params application/jsonRequired

Examples

Responses

🟢200Éxito
application/json
Body

🟠404Not Found
Request Request Example
Shell
JavaScript
Java
Swift
curl --location --request POST 'https://api.twtaio.com/api/v1/modules/d2d2328e3359f3de/execute' \
--header 'Authorization: Bearer <token>' \
--header 'Content-Type: application/json' \
--data-raw '{
  "parameters": {
    "accounts": [
      "AUTHTOKEN",
      "AUTHTOKEN:CT0",
      "USER:PASS:EMAIL:CT0:AUTHTOKEN",
      "USER:PASS:EMAIL:EMAILPWD:CT0:AUTHTOKEN",
      "USER:PASS:EMAIL:EMAILPWD:CT0:AUTHTOKEN:2FABACKUP"
    ],
    "threads": 100
  },
  "sendToTelegram": true
}'
Response Response Example
200 - Success
{
    "sessionId": "666fb1e9-88rg-29db-1717-1d6fee7e69a2",
    "moduleId": "d2d2328e3359f3de",
    "status": "running",
    "message": "Module execution started",
    "statusUrl": "/api/v1/modules/executions/666fb1e9-88rg-29db-1717-1d6fee7e69a2/status",
    "resultsUrl": "/api/v1/modules/executions/666fb1e9-88rg-29db-1717-1d6fee7e69a2/results"
}
Modified at 2025-12-05 21:44:07
Previous
Get module details
Next
Check execution status
Built with