Sorsa · Example Payload

Sorsa Tweet Info Bulk Example

TwitterXSocial MediaData ExtractionReal-Time

Sorsa Tweet Info Bulk Example is an example object payload from Sorsa, with 2 top-level fields. It illustrates the shape of data this provider's APIs accept or return.

Top-level fields

requestresponse

Example Payload

Raw ↑
{
  "request": {
    "method": "POST",
    "url": "https://api.sorsa.io/v3/tweet-info-bulk",
    "headers": {
      "ApiKey": "YOUR_API_KEY",
      "Content-Type": "application/json"
    },
    "body": {
      "links": [
        "https://x.com/elonmusk/status/170...",
        "https://x.com/SorsaApp/status/170..."
      ]
    }
  },
  "response": {
    "status": 200,
    "body": {
      "tweets": [
        {
          "id_str": "170...",
          "full_text": "...",
          "favorite_count": 52000
        },
        {
          "id_str": "170...",
          "full_text": "...",
          "favorite_count": 128
        }
      ]
    }
  }
}