v1

latestOpenAPI 3.1.02026-07-26180242448.0 KB
Users

Get user subscriptions

Get the premium account subscriptions for a specific user. Returns the list of accounts that the user subscribes to for premium content. Requires the user's numeric ID.

get/v1/twitter/users/{user_id}/subscriptions

Path parameters

user_idstring required
Example:44196397

The unique numeric ID of the user.

Query parameters

cursorstring

Pagination cursor for fetching the next page of results.

Response

Successfully retrieved subscriptions.

next_cursorstring nullable

Cursor for fetching the next page. Null if no more results.

Example response

{
  "data": [
    {
      "id": "44196397",
      "username": "elonmusk",
      "name": "Elon Musk",
      "description": "Mars & Cars, Chips & Dips",
      "location": "Mars",
      "created_at": "Tue Jun 02 20:12:29 +0000 2009"
    }
  ]
}