Skip to main content
POST
/
v1
/
solana
/
dex
/
tokens
/
get-profiles
Get Multiple Profiles
curl --request POST \
  --url https://refract.prismapi.io/v1/solana/dex/tokens/get-profiles \
  --header 'Content-Type: application/json' \
  --data '
{
  "tokens": [
    "Z4d9YXR4pSkdKcu9UBcwxHp7i32buzdDtAR1b1Gbonk",
    "G4916h6Joo39wgnsyNTtv2dkmkPj2BdmSWYMXoAHA91J"
  ],
  "sort": {
    "field": "time_windows.7d.cumulative_pnl",
    "direction": "desc"
  },
  "time_windows": [
    "7d"
  ]
}
'
[
  {
    "token_address": "<string>",
    "last_trade_at": 123,
    "created_at": 123,
    "symbol": "<string>",
    "name": "<string>",
    "dev_address": "<string>",
    "dev_migrations": 123,
    "image": "<string>",
    "fdv": 123,
    "market_cap": 123,
    "price": 123,
    "liquidity": 123,
    "holders": 123,
    "total_supply": 123,
    "circulating_supply": 123,
    "top_holdings": 123,
    "dev_holdings": 123,
    "bonding_curve_progress": 123,
    "migrated_at": 123,
    "verified": true,
    "twitter": "<string>",
    "telegram": "<string>",
    "website": "<string>",
    "discord": "<string>"
  }
]

Body

application/json
tokens
string[]
required

List of token addresses to retrieve profile for.

Required array length: 1 - 100 elements
sort
object

Sorting rule.

time_windows
enum<string>[]

List of time windows to include in the profile.

Available options:
30d,
14d,
7d,
3d,
1d

Response

200 - application/json

List of token profiles for the specified tokens.

token_address
string
last_trade_at
integer<timestamp>
created_at
integer<timestamp>
symbol
string
name
string
dev_address
string
dev_migrations
integer
image
string
fdv
number
market_cap
number
price
number
liquidity
number
holders
integer
total_supply
number
circulating_supply
number
top_holdings
number
dev_holdings
number
bonding_curve_progress
number
migrated_at
integer
verified
boolean
twitter
string
telegram
string
website
string
discord
string