---
title: "Retrieves a single tweet by its ID from X."
method: POST
path: "/get"
---

# Retrieves a single tweet by its ID from X.

`POST /get`

This function fetches a specific tweet from X using its unique identifier. It allows for optional expansions to be included in the response, providing flexibility in the data retrieved. The function returns a promise that resolves to the tweet data, including details such as the tweet's text, creation time, and author information.

## Request body

- object
  - `body` object — Body of the get sls call
    - `arguments` unknown[], required
      - unknown
    - `auth` object — Authentication object
      - `strategy` 'apikey' — Authentication strategy
      - `variables` unknown[] — Variables for the authentication strategy
        - unknown
    - `packageName` string — @microfox/twitter

## Response `200`

Successful response

- object
  - `data` object, required
    - `id` string, required — The unique identifier of the tweet.
    - `text` string, required — The text content of the tweet.
    - `created_at` string — The creation time of the tweet.
    - `author_id` string — The ID of the author of the tweet.
    - `edit_history_tweet_ids` string[] — An array of previous tweet IDs.
  - `errors` object[]
    - `detail` string — A detailed description of the error.
    - `status` number — The HTTP status code of the error.
    - `title` string — The title of the error.
    - `type` string — The type of the error.

## Other responses

- `400` — Bad request
- `500` — Internal server error

---

[API](https://skmtc.net/microfox-ai/apis/microfox-x-sdk-api.md) · [All operations](https://skmtc.net/microfox-ai/apis/microfox-x-sdk-api/llms.txt) · [OpenAPI document](https://skmtc-service-staging.skmtc.workers.dev/v1/apis/microfox-ai/microfox-x-sdk-api/versions/329b4bca235b/schema)
