# Leaderboard Data

Retrieve and display leaderboard rankings for your incentive programs. Fuul provides three leaderboard types:

| Leaderboard                                                   | SDK method              | What it ranks                        |
| ------------------------------------------------------------- | ----------------------- | ------------------------------------ |
| [Tokens](/developer-guide/getting-leaderboard-data/tokens.md) | `getPayoutsLeaderboard` | Onchain token rewards earned         |
| [Points](/developer-guide/getting-leaderboard-data/points.md) | `getPointsLeaderboard`  | Point rewards earned                 |
| [Volume](/developer-guide/getting-leaderboard-data/volume.md) | `getVolumeLeaderboard`  | Trading/transaction volume generated |

{% hint style="info" %}
Leaderboard data is updated hourly. Recent conversions and payouts will appear within a maximum of one hour.
{% endhint %}

### Common parameters

All leaderboard methods support these filters:

| Parameter                 | Type      | Supported by            | Description                                                                                          |
| ------------------------- | --------- | ----------------------- | ---------------------------------------------------------------------------------------------------- |
| `user_identifier`         | string    | All                     | Filter to a specific user (for individual rewards)                                                   |
| `identifier_type`         | string    | All                     | `'evm_address'`, `'solana_address'`, `'sui_address'`, `'xrpl_address'`, `'email'`                    |
| `user_type`               | string    | Payouts, Points, Volume | `'affiliate'` or `'end_user'` (omit for all)                                                         |
| `fields`                  | string    | Payouts, Points         | Comma-separated extra fields: `'tier,referred_volume,enduser_volume,enduser_revenue,referred_users'` |
| `conversion_external_ids` | number\[] | Payouts                 | Array of conversion IDs to filter by                                                                 |

{% hint style="info" %}
Leaderboard responses are paginated. Use `page` and `page_size` (max 100 per page) to retrieve the full leaderboard — e.g., page 1 returns ranks 1–100, page 2 returns ranks 101–200, and so on.
{% endhint %}


---

# Agent Instructions: Querying This Documentation

If you need additional information that is not directly available in this page, you can query the documentation dynamically by asking a question.

Perform an HTTP GET request on the current page URL with the `ask` query parameter:

```
GET https://docs.fuul.xyz/developer-guide/getting-leaderboard-data.md?ask=<question>
```

The question should be specific, self-contained, and written in natural language.
The response will contain a direct answer to the question and relevant excerpts and sources from the documentation.

Use this mechanism when the answer is not explicitly present in the current page, you need clarification or additional context, or you want to retrieve related documentation sections.
