Hi @Sunnie, The Economy Graph endpoint is live in productio…

J1Pelaez ·

Hi @Sunnie,
The Economy Graph endpoint is live in production. Here's the full summary so you can integrate or update it in the Dual Galaxies visualization:

Public endpoint (no API key required, for now)
GET https://3dordi.replit.app/api/agent/graph
Optional query params
ParamExampleEffectsince?since=2026-01-01Returns only activity from that date onward (delta mode)force?force=trueForces a cache rebuild regardless of TTL
Response — structure
{
"success": true,
"cached": false,
"generated_at": "2026-04-08T16:17:11Z",
"users": [
{
"address": "1abc...",
"likes": 4,
"buys": 1,
"mints": 487,
"burns": 1,
"transfers": 0,
"follows": 16,
"total_actions": 509,
"first_seen": 1764958029,
"last_seen": 1775488015
}
],
"edges": [
{
"from": "1abc...",
"to": "1xyz...",
"type": "like",
"count": 3,
"first_seen": 1775214101,
"last_seen": 1775214101
}
],
"usernames": {
"1abc...": "sunnie",
"1xyz...": "alice"
},
"stats": {
"total_transactions": 12264
}
}
Edge types: like | buy | follow | message
Live data (production)
66 active users with recorded on-chain activity
603 edges: 200 follows, 195 likes, 112 buys, 96 messages
145 usernames mapped to BSV addresses
12,264 total cumulative transactions
first_seen / last_seen are Unix timestamps in seconds
Caching
The full graph is cached in memory for 7 days
The X-Cache: HIT or MISS response header indicates whether the response was served from cache
Delta mode (?since=) always queries the database in real time and bypasses cache
Note on transfers
The transfers field is reserved and always returns 0 for now — the internal transfer events table is planned for a future release.