X-score
  1. Users
X-score
  • Posts
    • Get post statistics
      GET
    • Get post ratings
      GET
  • Users
    • Check if twitter user has posts in the campaign
      GET
    • Get leaderboard twitter user statistics
      GET
    • Get a ranked X user in a campaign
      GET
  • Schemas
    • Schemas
    • Twitter Post With Scores
    • Twitter Post statistics
    • User Leaderboard Resource
    • User Rank Resource
    • Twitter User
  1. Users

Get leaderboard twitter user statistics

GET
/api/users/leaderboard
Returns a list of analyzed tweets within the selected campaign. Each tweet is accompanied by metadata, engagement metrics (likes, retweets, etc.), and automated scoring results (alignment, engagement, reputation, etc.).

Request

Authorization
Query Params

Responses

🟢200OK
application/json
Successful response
Body

🟠422Unprocessable Entity
Request Request Example
Shell
JavaScript
Java
Swift
curl --location --request GET '/api/users/leaderboard?campaign'
Response Response Example
200 - Example 1
{
    "data": [
        {
            "id": 1574131381940200000,
            "username": "michaelolamipo4",
            "name": "michael olamiposi",
            "profile_picture": "https://pbs.twimg.com/profile_images/1574131739399684098/KAynw3f9_normal.jpg",
            "followers": 20,
            "is_verified": false,
            "is_blue_verified": false,
            "final_score": "53",
            "tweets_count": 1,
            "retweet_count": 0,
            "reply_count": 0,
            "like_count": 1,
            "quote_count": 0,
            "view_count": 1,
            "bookmark_count": 0,
            "rank": 1
        }
    ],
    "links": {
        "first": "http://admin-n8n.spell.club/api/users/leaderboard?page=1",
        "last": null,
        "prev": "http://admin-n8n.spell.club/api/users/leaderboard?page=1",
        "next": "http://admin-n8n.spell.club/api/users/leaderboard?page=3"
    },
    "meta": {
        "current_page": 2,
        "current_page_url": "http://admin-n8n.spell.club/api/users/leaderboard?page=2",
        "from": 21,
        "path": "http://admin-n8n.spell.club/api/users/leaderboard",
        "per_page": 20,
        "to": 40
    }
}
Modified at 2026-01-29 00:21:25
Previous
Check if twitter user has posts in the campaign
Next
Get a ranked X user in a campaign
Built with