Skip to main content

/api/social/*

Posts, follows, DMs, like rewards.

GET /api/social/caps

Like limit constants.

curl https://api.ombra-net.com/api/social/caps

Response:

{
"maxTokensPerLikeHard": 10000,
"maxDailyTokensHard": 10000000,
"queueCapPerAuthor": 10000,
"likeExpiryMs": 86400000
}

GET /api/social/feed?limit=30&offset=N

Recent posts across the network.

curl 'https://api.ombra-net.com/api/social/feed?limit=30'

Response: { "posts": [{ "postId", "author", "body", "blobIds", "likeCount", "timestamp", ... }] }


GET /api/social/post/:postId

Single post + likes.

curl https://api.ombra-net.com/api/social/post/abc123

GET /api/social/author/:address/posts

Author timeline.

curl https://api.ombra-net.com/api/social/author/7a8b7038.../posts

GET /api/social/subscriptions/:subscriber

What addresses this user has subscribed to (for like funding).

curl https://api.ombra-net.com/api/social/subscriptions/7a8b7038...

GET /api/social/queue/:author?limit=100

Pending SOCIAL_LIKE_INTENT queue for an author (miners pull from here).

curl https://api.ombra-net.com/api/social/queue/7a8b7038...

GET /api/social/intents/:intentId

Single like intent details.


GET /api/social/dms/:address?limit=50

DM history for an address (ciphertext only — decrypt client-side with recipient privkey).

curl https://api.ombra-net.com/api/social/dms/7a8b7038...