crypto-news-api
  1. X (Twitter)
crypto-news-api
  • News
    • Get news list
      GET
    • Get all sources
      GET
    • Get news by source
      GET
  • X (Twitter)
    • Get tweets from followed Twitter users
      GET
    • Get followed Twitter users list
      GET
  • Schemas
    • Schemas
      • Error
      • Success
      • PaginationInfo
      • Article
      • Source
  1. X (Twitter)

Get tweets from followed Twitter users

GET
/x/tweets
Get the latest tweets from all Twitter users that the user has subscribed to, with pagination support

Request

Query Params

Header Params

Request Code Samples

Shell
JavaScript
Java
Swift
Go
PHP
Python
HTTP
C
C#
Objective-C
Ruby
OCaml
Dart
R
Request Request Example
Shell
JavaScript
Java
Swift
curl --location --request GET 'https://api.cryptonewsapi.online/api/v1/x/tweets' \
--header 'X-API-Key: 8f81ef18-fce8-48fe-b169-44e49abae138'

Responses

🟢200成功
application/json
Successfully retrieved tweets list
Body

Example
{
    "status": "success",
    "data": {
        "tweets": [
            {
                "id": "tweet-uuid",
                "text": "This is a tweet content...",
                "author": {
                    "username": "username",
                    "displayName": "Display Name"
                },
                "createdAt": "2023-01-01T00:00:00.000Z"
            }
        ],
        "pagination": {
            "limit": 50,
            "offset": 0,
            "total": 50,
            "hasMore": true
        }
    }
}
🟠401没有权限
🟠429429
🔴500服务器错误
Modified at 2025-08-24 10:50:35
Previous
Get news by source
Next
Get followed Twitter users list
Built with