Skip to main content
GET
/
wf
/
telegram-post-details
cURL
curl --request GET \
  --url https://riona.ai/api/1.1/wf/telegram-post-details \
  --header 'Authorization: Bearer <token>'
{
  "status": {
    "code": 200,
    "message": "OK"
  },
  "post": [
    {
      "postDetails": {
        "postID": "12425",
        "postImage": "https://8cd4d13f-aa75-4a0c-abdb-0f388a983964.selstorage.ru/post_TG:1295901534_12425?time=1756209377",
        "videoLink": "",
        "postUrl": "https://t.me/null/12425",
        "dataId": "1295901534_12425",
        "date": "01-08-2025",
        "dateISO": "2025-08-01T08:56:32.000Z",
        "likes": 567,
        "dislikes": 0,
        "comments": 23,
        "rePosts": 3,
        "views": 11021,
        "pollVotes": 0,
        "videoViews": 0,
        "type": "photo",
        "types": [
          "photo",
          "text",
          "text_small"
        ],
        "hashTags": [],
        "text": "Sadio Mane x Cristiano 💛",
        "textLength": 25,
        "fromOwner": true,
        "isAd": false,
        "mentions": [],
        "mentionsText": []
      },
      "postStats": {
        "interactions": 593,
        "er": 0.00915801828514949,
        "viewsER": 0.0538063696579258,
        "videoViewsER": 0,
        "indexGrade": 1.30879761890376,
        "mainGrade": "a"
      }
    }
  ]
}
General Instructions:
  • The id masterID is required to get access to that Social Account posts.
  • At least one should be used: postID or postURL
  • Make sure you run Get Posts & Videos endpoint at least one time for the month the post was published in before using this endpoint.
  • Understanding Post Data Handling
  • You can check what months already being tracked first Check Tracked Posts
{
  "status": {
    "code": 200,
    "message": "OK"
  },
  "post": [
    {
      "postDetails": {
        "postID": "12425",
        "postImage": "https://8cd4d13f-aa75-4a0c-abdb-0f388a983964.selstorage.ru/post_TG:1295901534_12425?time=1756209377",
        "videoLink": "",
        "postUrl": "https://t.me/null/12425",
        "dataId": "1295901534_12425",
        "date": "01-08-2025",
        "dateISO": "2025-08-01T08:56:32.000Z",
        "likes": 567,
        "dislikes": 0,
        "comments": 23,
        "rePosts": 3,
        "views": 11021,
        "pollVotes": 0,
        "videoViews": 0,
        "type": "photo",
        "types": [
          "photo",
          "text",
          "text_small"
        ],
        "hashTags": [],
        "text": "Sadio Mane x Cristiano 💛",
        "textLength": 25,
        "fromOwner": true,
        "isAd": false,
        "mentions": [],
        "mentionsText": []
      },
      "postStats": {
        "interactions": 593,
        "er": 0.00915801828514949,
        "viewsER": 0.0538063696579258,
        "videoViewsER": 0,
        "indexGrade": 1.30879761890376,
        "mainGrade": "a"
      }
    }
  ]
}

Authorizations

Authorization
string
header
required

Bearer authentication header of the form Bearer <token>, where <token> is your auth token.

Query Parameters

id
string
required

masterID: the id of the Social Account, to get this you need to call the endpoint Get Profile by URL OR Get User Account

includeProfile
boolean
default:false

If you would like to include Profile details, set this to true

postID
string

Example: postID 12427 , To get this use this endpoint: Get User Posts

postURL
string

Example: postURL https://t.me/FinancialTimes/567 , To get this use this endpoint: Get User Posts

api_key
string
required

This is your account API Key. You can easily locate it in your account dashboard.

Response

200

OK