---
title: "Get list details"
method: GET
path: "/v1/twitter/lists/{list_id}/detail"
tags: ["Lists"]
---

# Get list details

`GET /v1/twitter/lists/{list_id}/detail`

Get detailed information about a Twitter list. Returns comprehensive list details including name, description, member count, subscriber count, visibility mode, and owner information. Useful for understanding list composition before fetching its tweets.

## Path parameters

- `list_id` string, required

## Response `200`

Successfully retrieved list details.

- ListData — Twitter list metadata.
  - `id` string, required — Unique list identifier.
  - `name` string, required — Name of the list.
  - `description` string, nullable — Description of the list.
  - `created_at` string, nullable — Timestamp when the list was created.
  - `member_count` integer, nullable — Number of members in the list.
  - `subscriber_count` integer, nullable — Number of subscribers to the list.
  - `mode` 'public' | 'private', nullable — Visibility mode of the list.
  - `user_id` string, nullable — Numeric ID of the list owner.
  - `username` string, nullable — Username of the list owner.

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