---
title: "Get article by ID"
method: GET
path: "/v1/twitter/tweets/article/{article_id}"
tags: ["Tweets"]
---

# Get article by ID

`GET /v1/twitter/tweets/article/{article_id}`

Get a Twitter Article (long-form post) by its unique ID. Returns the full article content including title, body text, cover image, and author information. Twitter Articles are long-form content published directly on the platform.

## Path parameters

- `article_id` string, required

## Response `200`

Successfully retrieved article.

- ArticleData — Twitter Article (long-form post) data.
  - `id` string, required — Unique article identifier.
  - `title` string, nullable — Title of the article.
  - `text` string, nullable — Full body text of the article.
  - `cover_image_url` string, nullable — URL of the article's cover image.
  - `author_id` string, nullable — Numeric ID of the article author.
  - `author_username` string, nullable — Username of the article author.
  - `author_name` string, nullable — Display name of the article author.
  - `created_at` string, nullable — Timestamp when the article was published.

## Other responses

- `401` — Authentication failed. The API key is missing, invalid, or expired.
- `402` — Insufficient credits. Your account balance has been exhausted. Purchase more credits at https://scrapebadger.com/dashboard/billing.
- `429` — Rate limit exceeded. Too many requests in a given time period. Implement exponential backoff and retry.

---

[API](https://skmtc.net/scrapebadger/apis/scrapebadger-account-api.md) · [All operations](https://skmtc.net/scrapebadger/apis/scrapebadger-account-api/llms.txt) · [OpenAPI document](https://skmtc-service-staging.skmtc.workers.dev/v1/apis/scrapebadger/scrapebadger-account-api/versions/4a1ef8777baf/schema)
