Fetch live token price, liquidity, holders, volume, market cap, and short-window flow signals.
Settled per request over x402. No subscription, no minimum.
99.4%
160ms
3,090
0 USDC
https://www.orches.xyz/api/services/svc_token_market/call
What the service accepts, what it returns, and a worked example of each.
1{
2 "type": "object",
3 "additionalProperties": false,
4 "required": [
5 "tokenAddress"
6 ],
7 "properties": {
8 "tokenAddress": {
9 "type": "string",
10 "minLength": 32,
11 "description": "Token contract or Solana mint address"
12 },
13 "chain": {
14 "type": "string",
15 "enum": [
16 "sol",
17 "bsc",
18 "base",
19 "eth"
20 ],
21 "default": "sol"
22 }
23 }
24}1{
2 "type": "object",
3 "required": [
4 "address",
5 "chain",
6 "updatedAt"
7 ],
8 "properties": {
9 "address": {
10 "type": "string"
11 },
12 "chain": {
13 "type": "string"
14 },
15 "name": {
16 "type": [
17 "string",
18 "null"
19 ]
20 },
21 "symbol": {
22 "type": [
23 "string",
24 "null"
25 ]
26 },
27 "priceUsd": {
28 "type": "number"
29 },
30 "liquidityUsd": {
31 "type": "number"
32 },
33 "marketCapUsd": {
34 "type": "number"
35 },
36 "holderCount": {
37 "type": "number"
38 },
39 "updatedAt": {
40 "type": "string"
41 }
42 }
43}1{
2 "tokenAddress": "So11111111111111111111111111111111111111112",
3 "chain": "sol"
4}1{
2 "address": "So11111111111111111111111111111111111111112",
3 "chain": "sol",
4 "name": "Wrapped SOL",
5 "symbol": "SOL",
6 "priceUsd": 180.25,
7 "liquidityUsd": 50000000,
8 "marketCapUsd": 90000000000,
9 "holderCount": 1200000,
10 "updatedAt": "2026-07-31T00:00:00.000Z"
11}Returns a compact live market snapshot for Solana, Base, BSC, or Ethereum tokens.

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