PRO Token Data
Complete token data access for PRO users.
All endpoints in this section require API Key authentication via X-API-Key header. Returns unfiltered, complete data for all requested tokens.
Returns complete token details without any filtering. Includes all data, analyses, and historical information.
Features:
Complete security analysis with admin functions
Detailed DEX hints and trading information
Optional historical snapshots
Detailed analyses with actionable insights
Monitoring recommendations
All fields are returned without restrictions for PRO users.
API key for PRO plan endpoints (format: lion_pro_xxxxxxxxxxxxxxxx)
Token contract address (case-insensitive)
0xac69165e7b171fbdb6cbd2ffb0c00ec4a9614444Blockchain chain ID (1=Ethereum, 56=BSC, 137=Polygon, etc.)
56Example: 56Include historical snapshots (up to 100 most recent)
trueExample: trueInclude detailed analyses with risk factors, insights, and alerts
trueExample: trueInclude detailed admin functions information
trueExample: trueComplete token details
Invalid or missing API key
PRO plan required
Token not found
Rate limit exceeded
Internal server error
GET /api/pro/tokens/{address} HTTP/1.1
Host: https:/.alertlions.com
X-API-Key: YOUR_API_KEY
Accept: */*
{
"contract_address": "0xac69165e7b171fbdb6cbd2ffb0c00ec4a9614444",
"chain_id": 56,
"full_token_data": {
"token": {
"name": "DRAGON",
"symbol": "DRAGON",
"decimals": 18,
"total_supply": "10000000000000000000000000"
},
"block_timestamp": 1761859607,
"creation": {
"block_timestamp": 1761859607,
"tx_hash": "0x23abca6eb01efb76dfd41437ad48541b542aecc12d29ff8e94a1d794fb3a7c53",
"creator": "0x24cca64343a9c14a21130df4e7f9dc5c6e3afe43",
"creator_is_contract": false,
"block_number": 65454178,
"gas_used": 3469281,
"bytecode_hash": "0xc0701112a220016c7a98bd7617f9d6bb9f3cb2472898ff042fb0949490b92b1a",
"code_len": 3574,
"proxy_like": false
},
"born_block": 65454178
},
"security_hints": {
"contract_template": "text",
"security_risk_score": 85,
"ownership_renounced": true,
"verified_contract": true,
"has_pause_function": true,
"has_blacklist_function": true,
"has_mint_function": true,
"is_proxy": true,
"admin_functions": [
{
"name": "renounceOwnership",
"selector": "715018a6",
"access_control": "owner",
"risk_level": 50,
"description": "Can renounce ownership (makes safe)"
}
]
},
"current_risk_level": "high",
"current_risk_score": 85,
"current_liquidity_usd": 5279.999977891201,
"is_actively_traded": true,
"dex_hints": {
"is_tradable": true,
"has_liquidity": true,
"has_v3_liquidity": true,
"total_liquidity_usd": 5279.999977891201,
"token_price_usd": 0.000013199999944728,
"buy_url": "https://dexscreener.com/bsc/0xac69165e7b171fbdb6cbd2ffb0c00ec4a9614444",
"num_trading_pairs": 1,
"main_trading_pair": "text",
"trading_pairs": [
{}
],
"recommended_dex": "text",
"volume_24h_usd": 1
},
"monitoring_recommendations": {
"risk_monitoring": [
"Monitor large transfers",
"Watch for liquidity changes"
],
"price_alerts": [
"Set price alert at $0.0001"
]
},
"data_quality_score": 0.95,
"analyses": [
{
"timestamp": "2025-11-29T20:24:57.543Z",
"risk_factors": [
"Low liquidity relative to market cap"
],
"actionable_insights": [
"Monitor for large transfers"
],
"alerts": [
{
"type": "warning",
"message": "Liquidity below threshold"
}
]
}
],
"token_history": [
{
"timestamp": "2025-11-29T20:24:57.543Z",
"risk_score": 1,
"price_usd": 1,
"liquidity_usd": 1,
"volume_24h_usd": 1,
"market_cap_usd": 1
}
],
"last_updated": "2025-10-22T00:03:41.469346942Z"
}Returns multiple tokens with advanced filtering options. Supports pagination and custom field selection.
Filtering Options:
Filter by specific addresses (comma-separated)
Filter by chain IDs (comma-separated)
Filter by minimum liquidity in USD
Filter by maximum risk score
Pagination:
Uses offset-based pagination
Maximum 100 tokens per request
Note: All token data is returned without filtering for PRO users.
API key for PRO plan endpoints (format: lion_pro_xxxxxxxxxxxxxxxx)
Comma-separated list of token addresses to filter
0x123...,0x456...Comma-separated list of chain IDs to filter
1,56,137Minimum liquidity in USD
10000Maximum security risk score (higher = higher risk)
60Include historical data for each token
falseExample: falseNumber of tokens to return
50Example: 50Number of tokens to skip (for pagination)
0Example: 0List of tokens with pagination
Invalid or missing API key
PRO plan required
Rate limit exceeded
Internal server error
GET /api/pro/tokens HTTP/1.1
Host: https:/.alertlions.com
X-API-Key: YOUR_API_KEY
Accept: */*
{
"tokens": [
{
"contract_address": "0xac69165e7b171fbdb6cbd2ffb0c00ec4a9614444",
"chain_id": 56,
"current_risk_score": 85,
"current_liquidity_usd": 5279.999977891201,
"data_quality_score": 0.95,
"last_updated": "2025-10-22T00:03:41.469346942Z"
}
],
"pagination": {
"total": 100,
"limit": 50,
"offset": 0,
"has_more": true
}
}Performs bulk operations on multiple tokens in a single request. Supports fetching complete data for multiple tokens efficiently.
Features:
Fetch up to 50 tokens in a single request
Optional historical data and analyses for each token
Processing time tracking
Cache hit rate reporting
Use Cases:
Monitor multiple tokens simultaneously
Batch data export
Portfolio analysis
Automated trading systems
Performance:
Processing time scales with number of tokens
Includes cache hit rate for optimization insights
Recommended for up to 50 tokens per request
API key for PRO plan endpoints (format: lion_pro_xxxxxxxxxxxxxxxx)
Include historical data for each token (up to 50 snapshots)
trueInclude detailed analyses with risk factors, insights, and alerts
trueInclude detailed admin functions information
trueBulk operation results
Invalid request (missing tokens array or invalid format)
Invalid or missing API key
PRO plan required
Rate limit exceeded
Internal server error
POST /api/pro/tokens/bulk HTTP/1.1
Host: https:/.alertlions.com
X-API-Key: YOUR_API_KEY
Content-Type: application/json
Accept: */*
Content-Length: 83
{
"tokens": [
{
"address": "0xac69165e7b171fbdb6cbd2ffb0c00ec4a9614444",
"chain_id": 56
}
]
}{
"tokens": [
{
"contract_address": "0xac69165e7b171fbdb6cbd2ffb0c00ec4a9614444",
"chain_id": 56,
"full_token_data": {
"token": {
"name": "DRAGON",
"symbol": "DRAGON",
"decimals": 18,
"total_supply": "10000000000000000000000000"
},
"block_timestamp": 1761859607,
"creation": {
"block_timestamp": 1761859607,
"tx_hash": "0x23abca6eb01efb76dfd41437ad48541b542aecc12d29ff8e94a1d794fb3a7c53",
"creator": "0x24cca64343a9c14a21130df4e7f9dc5c6e3afe43",
"creator_is_contract": false,
"block_number": 65454178,
"gas_used": 3469281,
"bytecode_hash": "0xc0701112a220016c7a98bd7617f9d6bb9f3cb2472898ff042fb0949490b92b1a",
"code_len": 3574,
"proxy_like": false
},
"born_block": 65454178
},
"security_hints": {
"contract_template": "text",
"security_risk_score": 85,
"ownership_renounced": true,
"verified_contract": true,
"has_pause_function": true,
"has_blacklist_function": true,
"has_mint_function": true,
"is_proxy": true,
"admin_functions": [
{
"name": "renounceOwnership",
"selector": "715018a6",
"access_control": "owner",
"risk_level": 50,
"description": "Can renounce ownership (makes safe)"
}
]
},
"current_risk_level": "high",
"current_risk_score": 85,
"current_liquidity_usd": 5279.999977891201,
"is_actively_traded": true,
"dex_hints": {
"is_tradable": true,
"has_liquidity": true,
"has_v3_liquidity": true,
"total_liquidity_usd": 5279.999977891201,
"token_price_usd": 0.000013199999944728,
"buy_url": "https://dexscreener.com/bsc/0xac69165e7b171fbdb6cbd2ffb0c00ec4a9614444",
"num_trading_pairs": 1,
"main_trading_pair": "text",
"trading_pairs": [
{}
],
"recommended_dex": "text",
"volume_24h_usd": 1
},
"monitoring_recommendations": {
"risk_monitoring": [
"Monitor large transfers",
"Watch for liquidity changes"
],
"price_alerts": [
"Set price alert at $0.0001"
]
},
"data_quality_score": 0.95,
"analyses": [
{
"timestamp": "2025-11-29T20:24:57.543Z",
"risk_factors": [
"Low liquidity relative to market cap"
],
"actionable_insights": [
"Monitor for large transfers"
],
"alerts": [
{
"type": "warning",
"message": "Liquidity below threshold"
}
]
}
],
"token_history": [
{
"timestamp": "2025-11-29T20:24:57.543Z",
"risk_score": 1,
"price_usd": 1,
"liquidity_usd": 1,
"volume_24h_usd": 1,
"market_cap_usd": 1
}
],
"last_updated": "2025-10-22T00:03:41.469346942Z"
}
],
"metadata": {
"total_tokens": 2,
"processing_time_ms": 330,
"cache_hit_rate": 0.8
}
}Last updated