Linea LXP
Get Linea LXP balance for wallet, along with Farcaster social stats and onchain behavior metrics
- Query powering this endpoint can be found here
- Scheduled to update daily
- Apply filters like WHERE, IN, AND/OR upon results
- Use a combination of
sort_by
andlimit
to grab a subset of results, see pagination and sorting for more info
Column Descriptions
Column | Description | Type |
---|---|---|
wallet | User wallet which hold LXP points | string |
current_lxp | Current Linea Voyage LXP balance | double |
num_quests | Number of quests completed by the user to obtain LXP | integer |
on_farcaster | Indicates if the wallet is connected to a Farcaster account | boolean |
fid | Farcaster ID for the connected wallet user | integer |
fname | Farcaster name for the connected wallet user | string |
connected_wallets | List of wallet addresses connected to the user | array(string) |
L14D_active_tier | The active tier of the connected wallet user over the last 14 days. Possible values are “vip”, “influencer”, “star”, “active”, “npc”, and “not active” | string |
top_channels | Top 3 channels where connected wallet user is active | array(string) |
top_domains | Top 3 domains frequented casted by the connected wallet user | array(string) |
top_engagers | Top 3 users who engage with this connected wallet user | array(string) |
num_followers | Number of followers the connected wallet user has on Farcaster | integer |
num_onchain_txns | Number of on-chain transactions performed by the connected wallet user | integer |
days_old_onchain | Onchain age of the connected wallet users; days since the first onchain transaction | integer |
nft_volume_usd | Volume of NFT transactions in USD of the connected wallet user | double |
dex_volume_usd | Volume of DEX transactions in USD of the connected wallet user | double |
contracts_deployed | Number of smart contracts deployed by the connected wallet user | integer |
times_contracts_called | Number of times the connected wallet user’s deployed contracts were called | integer |
Headers
API Key for the service
Query Parameters
API Key, alternative to using the HTTP header X-Dune-Api-Key
This enables returning a query result that was too large and only a partial result is available. By default allow_partial_results is set to false and a failed state is returned.
Specifies a comma-separated list of column names to return. If omitted, all columns are included. Tip: use this to limit the result to specific columns, reducing datapoints cost of the call.
Expression to filter out rows from the results to return. This expression is similar to a SQL WHERE clause. More details about it in the Filtering section of the doc. This parameter is incompatible with sample_count.
There is a default 250,000 datapoints limit to make sure you don't accidentally spend all your credits in one call. To ignore the max limit, you can add ignore_max_datapoints_per_request=true
Limit number of rows to return. This together with 'offset' allows easy pagination through results in an incremental and efficient way. This parameter is incompatible with sampling (sample_count).
Offset row number to start (inclusive, first row means offset=0) returning results from. This together with 'limit' allows easy pagination through results in an incremental and efficient way. This parameter is incompatible with sampling (sample_count).
Number of rows to return from the result by sampling the data. This is useful when you
want to get a uniform sample instead of the entire result. If the result has less
than the sample count, the entire result is returned. Note that this will return a
randomized sample, so not every call will return the same result. This parameter is
incompatible with offset
, limit
, and filters
parameters.
Expression to define the order in which the results should be returned. This expression is similar to a SQL ORDER BY clause. More details about it in the Sorting section of the doc.
Response
The response is of type object
.