Return top trending tokens for a chain and timeframe using Ventura market ranking data.
Settled per request over x402. No subscription, no minimum.
99.3%
150ms
4,180
0 USDC
https://www.orches.xyz/api/services/svc_trending_tokens/call
What the service accepts, what it returns, and a worked example of each.
1{
2 "type": "object",
3 "additionalProperties": false,
4 "properties": {
5 "chain": {
6 "type": "string",
7 "enum": [
8 "sol",
9 "bsc",
10 "base",
11 "eth"
12 ],
13 "default": "sol"
14 },
15 "period": {
16 "type": "string",
17 "enum": [
18 "1m",
19 "5m",
20 "1h",
21 "6h",
22 "24h"
23 ],
24 "default": "5m"
25 },
26 "limit": {
27 "type": "number",
28 "minimum": 1,
29 "maximum": 25,
30 "default": 10
31 }
32 }
33}1{
2 "type": "object",
3 "required": [
4 "chain",
5 "period",
6 "tokens",
7 "updatedAt"
8 ],
9 "properties": {
10 "chain": {
11 "type": "string"
12 },
13 "period": {
14 "type": "string"
15 },
16 "tokens": {
17 "type": "array",
18 "items": {
19 "type": "object"
20 }
21 },
22 "updatedAt": {
23 "type": "string"
24 }
25 }
26}1{
2 "chain": "sol",
3 "period": "5m",
4 "limit": 5
5}1{
2 "chain": "sol",
3 "period": "5m",
4 "tokens": [
5 {
6 "address": "So11111111111111111111111111111111111111112",
7 "symbol": "SOL",
8 "liquidityUsd": 50000000
9 }
10 ],
11 "updatedAt": "2026-07-31T00:00:00.000Z"
12}Fetches compact trending token rows by chain and period. Use this as an agent-readable discovery layer before deeper token risk or market calls.

No reviews yet.
Connect your wallet to leave a review.