twtaio
  1. Executions 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 module details
      • Execute a module
    • Executions Endpoints
      • Check execution status
        GET
      • Get execution results
        GET
      • Download specific result file
        GET
      • Cancel running execution
        DELETE
  • Available Modules
    • Converters
    • Scrapers
    • Checkers
    • Botting
    • Tokens Manager
    • Miscellaneous
    • Communities
    • Mentioning
  • File Formats
    • Token formats
    • Proxy formats
  1. Executions Endpoints

Get execution results

Developing
GET
https://api.twtaio.com/api/v1/modules/executions/{sessionId}/results
Get the results (output) of a module that has been completed.

Request

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

Responses

🟢200Éxito
application/json
Body

🟠404Execution not found
Request Request Example
Shell
JavaScript
Java
Swift
curl --location --request GET 'https://api.twtaio.com/api/v1/modules/executions//results' \
--header 'Authorization: Bearer <token>'
Response Response Example
200 - Success
{
    "sessionId": "f787d419-fa2d-409c-1717-8a034805f0bb",
    "moduleId": "d2d2328e3359f3de",
    "moduleName": "Checker",
    "status": "completed",
    "startedAt": "2025-12-04T08:08:10",
    "completedAt": "2025-12-04T08:08:10",
    "outputFiles": [
        {
            "fileName": "Logs.txt",
            "downloadUrl": "/api/v1/modules/executions/f787d419-fa2d-409c-1717-8a034805f0bb/download/Logs.txt"
        }
    ]
}
Modified at 2025-12-05 21:48:36
Previous
Check execution status
Next
Download specific result file
Built with