MCP / NLP driven Market Intelligence

Run complex queries and extract real-time market intelligence — all through natural language.

Powered by NLP and MCP-based APIs, seamlessly built for agent-ready integration.

Endpoint

POST: https://api.dapplooker.com/v1/ask-loky

💡 Pro Tips

  • The MCP API is trained with below datasets:

    • Market Intelligence

    • Token Market data

    • Technical Analysis & Indicators

    • Smart Money & Whale Tracking

    • Wallet Safety Score

    • Holding Patterns & Mindshare

    • Staking Insights

    • Genesis Token Alpha

    • On-chain Intelligence

    • ACP Insights

    • Trade Recommendations & Alpha

  • Use the $ prefix when referencing token tickers (e.g., $AIXBT, $COOKIE) in your questions to improve the accuracy of NLP responses.

  • If you dont have ticker, use the token address (e.g., 0xabc...123) and our AI will identify and analyze it for you.

  • Below are types of questions you can ask

    • What’s the alpha score on $TOKEN this week?

    • Show me smart wallet flows for $TOKEN in the last 24h

    • “Which token is outperforming on Base today?

    • Which genesis agents have the highest staking yield and activity today?

    • Top 3 tokens in the Virtuals ecosystem by volume

    • Compare $COOKIE vs $AIXBT performance over the past 7 days

    • Which genesis token is seeing the strongest on-chain activity this week?

    • Biggest gainers and losers on Virtuals in the last 24h?

    • Which low-cap tokens are showing early whale accumulation?

    • Most undervalued tokens in the Virtuals ecosystem this week?

Request Body Parameters

Parameter name

Type

Mandatory

Description

api_key

string

Yes

Your unique Loky API key used for authentication.

question

string

Yes

Query to ask. (Use $ with tickers for better response)

chain

string

No

The network chain to query. Supported chains: base, solana

Sample Request

# With Token Ticker
curl -X POST 'https://api.dapplooker.com/v1/ask-loky' \
--header 'Content-Type: application/json' \
--data '{
    "api_key":"<API_KEY>",
    "chain":"base",
    "question":"Give me deep analysis of $AIXBT"
}'

# With Token Address
curl -X POST 'https://api.dapplooker.com/v1/ask-loky' \
--header 'Content-Type: application/json' \
--data '{
    "api_key":"<API_KEY>",
    "question":"Analyse the current market performance of the token address 0x6982508145454ce325ddbe47a25d4ec3d2311933"
}'

Sample Response

{
    "questionId": "ffd30ded-0a72-4735-8211-7daea644906c",
    "answerId": "aad9ac4e-2025-470e-97b1-29d7b6dca864",
    "nlpResponse": "Diving into the analytics of $AIXBT:\n\n- Current Price: Trading at $0.077, down by 3% in the last 24 hours.\n- Market Cap: It has a market capitalization of approximately $65.4M, which has declined by around 3.1% in the last day.\n- Volume and Liquidity: The token saw a volume of roughly $29.6M over the past day with total liquidity standing at about $937.6K.\n- Recent Performance: Over the past week, its price increased by 8.5%, although its volume decreased by -30.6%. \n- Wallet Activity:\n   - Top Holders Activity: In terms of top holders' activity (the top 25 wallets), they purchased approximately an additional 2.6M AIXBT tokens and sold around 5.3M AIXBT tokens over the last day.\n   - Developer Wallet Activity: There haven't been any outgoing transactions from developer's wallet in the past day while inflow amounts to zero as well indicating no new tokens were added into it.\n\nOn a technical analysis front:\n\n- Support/Resistance Levels: The support level is currently situated near $0.075, whereas resistance can be found at about $0.088.\n- SMA and RSI Indicators:\n   - Its Relative Strength Index (RSI) stands at approximately 35.9 which suggests it might be nearing oversold territory lowering likelihood for drastic drops in price from this point onward unless there are other market factors involved that need consideration too.\n   - Meanwhile, its current price is slightly below its recent average with respect to 50-hour simple moving average ($0 .081).\n\nLet me know if you'd like more specific insights or details on another token!",
}

Response Fields Explanation

  • questionId (string): A unique identifier assigned to the user's natural language question.

  • answerId (string): A unique identifier for the generated answer corresponding to the question.

  • nlpResponse (string): The interpreted response from Loky's Natural Language Query (NLQ) system based on the user's input.

Last updated

Was this helpful?