---
title: "Get user articles"
method: GET
path: "/v1/twitter/users/{user_id}/articles"
tags: ["Users"]
---

# Get user articles

`GET /v1/twitter/users/{user_id}/articles`

Get long-form articles (Twitter Articles) written by a specific user. Returns article metadata including title, body text, cover image, and publication date. Requires the user's numeric ID.

## Path parameters

- `user_id` string, required

## Query parameters

- `cursor` string

## Response `200`

Successfully retrieved articles.

- ArticlesResponse — Paginated list of articles.
  - `data` ArticleData[], nullable — Array of article objects.
    - `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.
  - `next_cursor` string, nullable — Cursor for fetching the next page. Null if no more results.

## 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)
