Polymarket
Kalshi
SVM
&
EVM

Smart Targeting that grows transaction volume

Smart Targeting that grows transaction volume

Smart Targeting that grows transaction volume

Smart notifications, personalized feeds, trader leaderboards, and follow recommendations, powered by AI models trained on 130M+ onchain interactions. Integration takes 1-2 weeks. No ML team required

TRUSTED BY INDUSTRY LEADERS

AI DRIVEN RECOMMENDATIONS

Boost engagement & retention

Algorithms that
personalize your app

SMART MONEY
Top traders are buying $BUNK
#3Trader $670K · 73%
$150K
#12Trader $210K · 65%
$80K
$380K inflow · All holding$0.01$0.07 (+600%)
PERSONALIZED
Top traders bought $BUNK
You hold this token, up 45%
Your position
$5,000·+600%
Smart money agrees.
View $BUNK →

Smart trading notifications

Track the Top 200 traders ranked by realized PnL. When multiple proven winners converge on the same token, your users know first.

Find the best prediction market bets based on smart money activity
embed.search("prediction markets trending")
*US recession in 2026?
$91M+12%
Fed rate cut by Sept?
$34M+8%
BTC above $200K EOY?
$28M+3%

Agent intelligence

Make your agents smarter and more personalized at high speed and low cost.

Help users discover and follow the right traders

Personalized leaderboards, follow recommendations, and trading feeds — powered by one recommendation engine.

See how it works →
9:41
Trader Leaderboard
Ranked by: Consistency
#TraderPnLWin %Score
1
🐋
whale.eth
$670K73%
94
2
🔥
degen.eth
$210K65%
87
3
🦄
vitalik.eth
$185K71%
85
4
👾
punk6529.eth
$142K62%
79
5
🧠
cobie.eth
$98K68%
72
Risk-adjusted rankings across 130M+ interactions
Traders for you
Based on your activity, you.eth
🐋
whale.eth
$670K PnL · 73%
92%
match
Similar portfolioHigh conviction
Follow
hsaka.eth
$210K PnL · 65%
84%
match
Overlapping betsHigh alpha
Follow
🌀
tetranode.eth
$142K PnL · 62%
78%
match
Correlated swaps
Follow
Matched using wallet embeddings
Your Feed
🐸
frog54m ago
Swapped on Raydium
Solana
-0.1 SOL
Bonk
+4,200 BONK
Copy Trade
+7 friends swapped
113
🎯
bro.eth3h ago
Placed bet $5 on Polymarket
"Recession this year?"
25 bps decrease
87%87¢14¢
50+ bps decrease
11%12¢89¢
$91m Vol. · ↻ Annually
Place Bet
+9 placed a bet
7201
ZORA is trending2h ago
Last 24h: +18.5%
Bought
$4.6K
Sold
$14.5K
Holding
$4.2K
+3 sold in the last 24h
489
🐸
frog54m ago
Swapped on Raydium
Solana
-0.1 SOL
Bonk
+4,200 BONK
Copy Trade
+7 friends swapped
113
🎯
bro.eth3h ago
Placed bet $5 on Polymarket
"Recession this year?"
25 bps decrease
87%87¢14¢
50+ bps decrease
11%12¢89¢
$91m Vol. · ↻ Annually
Place Bet
+9 placed a bet
7201
Your Feed
🐸
frog54m ago
Swapped on Raydium
Solana
-0.1 SOL
Bonk
+4,200 BONK
Copy Trade
+7 friends swapped
113
🎯
bro.eth3h ago
Placed bet $5 on Polymarket
"Recession this year?"
25 bps decrease
87%87¢14¢
50+ bps decrease
11%12¢89¢
$91m Vol. · ↻ Annually
Place Bet
+9 placed a bet
7201
ZORA is trending2h ago
Last 24h: +18.5%
Bought
$4.6K
Sold
$14.5K
Holding
$4.2K
+3 sold in the last 24h
489
🐸
frog54m ago
Swapped on Raydium
Solana
-0.1 SOL
Bonk
+4,200 BONK
Copy Trade
+7 friends swapped
113
🎯
bro.eth3h ago
Placed bet $5 on Polymarket
"Recession this year?"
25 bps decrease
87%87¢14¢
50+ bps decrease
11%12¢89¢
$91m Vol. · ↻ Annually
Place Bet
+9 placed a bet
7201
"While LLMs predict the next word in a sentence, our recommendation models predict your user's next action."
0M+
onchain interactions trained on
0.0x
faster to relevant item (MRR@25)
0ms
inference per API call
0
domains: trades, bets, social
MRR@25: How fast users find what they want
Mean Reciprocal Rank: how quickly the first relevant item appears in the ranked list
5.6x faster
Base Trades
Mints & Swaps
5.3x faster
Polymarket
Bets
2.2x faster
Farcaster
Social
Backtest: last 10 interactions masked per user, model predicts next actions. No data leakage.
DEVELOPERS

Add ML powered recommendations to your stack in minutes

Build with AI
Describe the feed you want in plain English. Our AI feed builder generates the pipeline code — search filters, scoring rules, ranking logic. Or use the Embed Skill with Claude or Cursor to build locally.
Get Started
YOU
Show me trending prediction markets ranked by volume, personalized to this wallet
EMBED AI
mbd.search()
.index("polymarket-items")
.size(50)
.include([
{ filter: "term",
field: "active", value: true },
{ filter: "numeric",
field: "volume_24hr",
operator: ">=", value: 10000 }
])
.execute();
ALGO BUILDER
import { StudioConfig, StudioV1 } from "mbd-studio-sdk";
const mbd = new StudioV1({
config: new StudioConfig({
apiKey: process.env.MBD_API_KEY
})
});
// Search trending prediction markets
const candidates = await mbd.search()
.index("polymarket-items")
.size(50)
.include([
{ filter: "term", field: "active",
value: true },
{ filter: "numeric",
field: "volume_24hr",
operator: ">=", value: 10000 }
])
.execute();
// Score with ML model
const scored = await mbd.scoring()
.model("polymarket-rerank-v1")
.userId("0xab2...e44")
.itemIds(candidates.map(c => c._id))
.execute();
Deploy in Minutes
The AI generates your feed pipeline — from candidate search to ML scoring to personalized ranking. Preview results, save your config, and get a Feed ID. Your feed is live.
See Docs
Serve in Production
Once deployed, serve your feed with a single SDK call. Pass a wallet address, get back ML-ranked results at 250ms.
See Docs
FEED SDK
import { getClient } from "@embed-ai/sdk";
const client = getClient(
process.env.API_KEY_EMBED!
);
const feed = await client.feed
.byWalletAddress(
"0xab2...e44",
"your_feed_id",
{ top_k: 25 }
);

Reliable & Scalable Performance

250ms
inference per API call
130M+
onchain interactions trained on
4-5x
better Precision@5 vs. popularity
2
interactions to cold start

How it works

Onchain

Apps data

Chains data

Offchain

Your app data

Your app data

API

Auto-scaling
& monitoring
No-code
algo builder
User
reputation
Moderation
dashboards
Content
enrichment
Online model
training
Your app

Wallet

Agent

Feed

Social App

API

BACKED BY DECENTRALIZED SOCIAL PIONEERS

Frequently asked.

Got questions? We've got answers. Contact us at [email protected] for anything not covered below.

What does Embed do?
Who is Embed built for?
Why use Embed instead of building in-house?
How does the technology work?
What can I build with Embed?
How does Embed compare to general recommendation APIs?
How hard is integration?
Who's behind Embed?
How does pricing work?

© 2024 ZKAI Labs. All rights reserved.

© 2024 ZKAI Labs. All rights reserved.