Memepump Channel#
Real-time push of newly launched Meme token data. Data is pushed whenever a new token is released.
URL Path
wss://wsdex.okx.com/ws/v6/dex
Request Parameters#
| Parameter | Type | Required | Description |
|---|---|---|---|
| op | String | Yes | Operation: subscribe unsubscribe |
| args | Array | Yes | List of channels to subscribe |
| channel | String | Yes | Channel name: dex-market-memepump-new-token-openapi |
| chainIndex | String | Yes | Unique identifier for the chain. Pass the chain ID (e.g., 501 for Solana). Single-chain only. |
Response Parameters#
| Parameter | Type | Description |
|---|---|---|
| event | String | Event type: subscribe unsubscribe error |
| arg | Object | Subscribed channel |
| channel | String | Channel name |
| code | String | Error code (only returned when event=error) |
| msg | String | Error message (only returned when event=error) |
| connId | String | WebSocket connection ID |
Push Data Parameters#
| Parameter | Type | Description |
|---|---|---|
| arg | Object | Successfully subscribed channel info |
| > channel | String | Channel name |
| > chainIndex | String | Unique identifier for the chain |
| data | Array | List of newly launched tokens |
| > chainIndex | String | Chain ID (e.g., 501=Solana) |
| > protocolId | String | Protocol source ID (e.g., 1=PUMP_FUN) |
| > quoteTokenAddress | String | Quote token contract address |
| > tokenContractAddress | String | Token contract address |
| > symbol | String | Token symbol |
| > name | String | Token name |
| > logoUrl | String | Token logo URL |
| > createdTimestamp | String | Token creation time (Unix timestamp in milliseconds) |
| > market | Object | Market data |
| >> marketCapUsd | String | Market cap (USD) |
| >> volumeUsd1h | String | 1-hour trading volume (USD) |
| >> txCount1h | String | 1-hour total transaction count |
| >> buyTxCount1h | String | 1-hour buy transaction count |
| >> sellTxCount1h | String | 1-hour sell transaction count |
| > bondingPercent | String | Bonding curve progress (%) |
| > tags | Object | Tag / audit data |
| >> top10HoldingsPercent | String | Top 10 holders percentage (%) |
| >> devHoldingsPercent | String | Dev holdings percentage (%) |
| >> insidersPercent | String | Insiders percentage (%) |
| >> bundlersPercent | String | Bundlers percentage (%) |
| >> snipersPercent | String | Snipers percentage (%) |
| >> freshWalletsPercent | String | Fresh wallets percentage (%) |
| >> suspectedPhishingWalletPercent | String | Suspected phishing wallet percentage (%) |
| >> totalHolders | String | Total number of token holder addresses |
| > social | Object | Social media information |
| >> x | String | X (Twitter) link |
| >> telegram | String | Telegram link |
| >> website | String | Website link |
| >> dexScreenerPaid | Boolean | DEX Screener paid |
| >> communityTakeover | Boolean | Community takeover (CTO) |
| >> liveOnPumpFun | Boolean | Live on Pump.fun |
| > bagsFeeClaimed | Boolean | Whether bags fee has been claimed |
Request Example#
Json
{
"op": "subscribe",
"args": [
{
"channel": "dex-market-memepump-new-token-openapi",
"chainIndex": "501"
}
]
}
Response Example#
Successful response example
Json
{
"event": "subscribe",
"arg": {
"channel": "dex-market-memepump-new-token-openapi",
"chainIndex": "501"
},
"connId": "a4d3ae55"
}
Failure response example
Json
{
"event": "error",
"code": "60012",
"msg": "Invalid request: {\"op\": \"subscribe\", \"argss\":[{ \"channel\": \"dex-market-memepump-new-token-openapi\", \"chainIndex\": \"501\"}]}",
"connId": "a4d3ae55"
}
Push data example
Json
{
"arg": {
"channel": "dex-market-memepump-new-token-openapi",
"chainIndex": "501"
},
"data": [
{
"bagsFeeClaimed": false,
"bondingPercent": "0",
"chainIndex": "501",
"createdTimestamp": "1773111278502",
"creatorAddress": "CfCpn9LFW6HDsUcNUbX65HfxNmouhTNCb6RD9FmF8sy9",
"logoUrl": "https://static.oklink.com/cdn/web3/currency/token/default-logo/token_custom_logo_default_S/type=default_350_0",
"market": {},
"name": "Siberian Husky Scarlett",
"protocolId": "136460",
"social": {
"communityTakeover": false,
"dexScreenerPaid": false,
"liveOnPumpFun": false
},
"symbol": "Scarlett",
"tags": {},
"tokenAddress": "5E2yC3KVFhm2kvUXFMWJCKP7pLtkScBP8CnZ9rtjpump"
}
]
}