---
title: "Tweet info"
method: POST
path: "/tweet-info"
tags: ["Tweets"]
---

# Tweet info

`POST /tweet-info`

Returns full tweet data using a tweet URL or tweet ID. You provide the tweet link (and related user handle if required), and the endpoint returns the tweet text, creation date, engagement metrics, conversation information, and basic author details. If the tweet is a reply, quote, or repost, related nested tweet and user data is also included.

Use cases:

Analytics tools fetching engagement metrics for a specific post; marketing teams reviewing performance of campaign tweets; moderation systems analyzing individual tweets by URL; CRM or monitoring platforms enriching stored tweet links with full metadata; developers building “paste tweet link → show full data” features inside dashboards.

## Request body

- TweetsTweetInfoReq
  - `tweet_link` string

## Response `200`

OK

- CommonTweet
  - `bookmark_count` integer
  - `conversation_id_str` string
  - `created_at` string
  - `entities` CommonTweetEntity[]
    - `link` string
    - `preview` string
    - `type` string
  - `full_text` string
  - `id` string
  - `in_reply_to_tweet_id` string
  - `in_reply_to_username` string
  - `is_quote_status` boolean
  - `is_replies_limited` boolean
  - `is_reply` boolean
  - `lang` string
  - `likes_count` integer
  - `quote_count` integer
  - `quoted_status` CommonTweet — recursive
  - `reply_count` integer
  - `retweet_count` integer
  - `retweeted_status` CommonTweet — recursive
  - `user` CommonUser
    - `bio_urls` string[]
    - `can_dm` boolean
    - `created_at` string
    - `description` string
    - `display_name` string
    - `favourites_count` integer
    - `followers_count` integer
    - `followings_count` integer
    - `id` string
    - `location` string
    - `media_count` integer
    - `pinned_tweet_ids` string[]
    - `possibly_sensitive` boolean
    - `profile_background_image_url` string
    - `profile_image_url` string
    - `protected` boolean
    - `tweets_count` integer
    - `username` string
    - `verified` boolean
  - `view_count` integer

## Other responses

- `400` — Bad Request
- `403` — Forbidden
- `404` — Not Found
- `500` — Internal Server Error

---

[API](https://skmtc.net/sorsa/apis/api-sorsa-io-2.md) · [All operations](https://skmtc.net/sorsa/apis/api-sorsa-io-2/llms.txt) · [OpenAPI document](https://skmtc-service-staging.skmtc.workers.dev/v1/apis/sorsa/api-sorsa-io-2/revisions/3d7215317ba1/schema)
