---
title: "Get a tweet by ID"
method: POST
path: "/twitter/get-tweet"
tags: ["Twitter"]
---

# Get a tweet by ID

`POST /twitter/get-tweet`

Get tweet details given a tweet ID

## Request body

- object
  - `tweet_id` string, required — The ID of the tweet to retrieve

## Response `200`

GetTweet API successful response

- object
  - `tweet` Tweet
    - `tweet_id` string — Unique identifier for the tweet
    - `full_text` string — The full text of the tweet
    - `created_at` string — The timestamp when the tweet was created
    - `author_user_id` string — The ID of the user who authored the tweet
    - `bookmark_count` integer — Number of times the tweet has been bookmarked
    - `reply_count` integer — Number of replies to the tweet
    - `retweet_count` integer — Number of times the tweet has been retweeted
    - `retweeted` boolean — Indicates if the tweet is a retweet
    - `urls` string[] — List of URLs included in the tweet

## Other responses

- `400` — User error response
- `500` — Server error response

---

[API](https://skmtc.net/carvedai/apis/exfunc-apis.md) · [All operations](https://skmtc.net/carvedai/apis/exfunc-apis/llms.txt) · [OpenAPI document](https://skmtc-service-staging.skmtc.workers.dev/v1/apis/carvedai/exfunc-apis/versions/22587fdf9a5e/schema)
