Introduction

    This function increments the view count of specific posts in a Telegram chat.

    Endpoint

    Method: POST
    URL: /add-view

    Request Body

    • folder (String, required): The folder containing the accounts to be checked for spambots.
    • phones (List, required): The list of phones to be checked
    • chat (String, required): Channel Name
    • message_links (List, optional): copy telegram channel messages links
    • limit (int, optional): Limit to itermessages

    Example Request Body for limit and chat

    {
        "folder": "active",
        "phones": ["123456789", "123456780"],
        "chat": "example",
        "limit": 100,
    }
    
    {
        "folder": "active",
        "phones": ["123456789", "123456780"],
        "message_links": [
            "https://t.me/vottingchannel123/15",
             "https://t.me/vottingchannel123/6"
            ],
    }
    
    

    Example Response

    • Stream Text
    {
        "123456798": 0,
        "2135467890": 100
    }