---
title: "Retrieves multiple tweets by their IDs from X (formerly Twitter) in a single request."
method: POST
path: "/getMultiple"
---

# Retrieves multiple tweets by their IDs from X (formerly Twitter) in a single request.

`POST /getMultiple`

The getMultiple function fetches multiple tweets from X using their unique identifiers. It allows for efficient retrieval of up to 100 tweets in a single API call, with optional parameters for expanding the returned data. This function is useful for bulk tweet retrieval operations.

## Request body

- object
  - `body` object — Body of the getMultiple 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 containing the requested tweets

- 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, date-time — 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` integer — 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 - invalid input parameters
- `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/revisions/329b4bca235b/schema)
