AI-powered cross-site interlinking platform. Join the network to get relevant, editorial-style backlinks from other quality sites.
1. Register your site with your email
2. Index your pages (we crawl your sitemap automatically)
3. Get links — call our API with your page content, get back relevant links from other sites
4. Give links — other sites' pages link to your content when semantically relevant
Every link is semantically matched using AI embeddings (BGE-small-en). Links only appear when truly relevant — a recipe about diabetes will link to a health guide about diabetes management. Google sees this as natural editorial linking.
# 1. Register
curl -X POST https://links.ucok.org/api/register \
-H "Content-Type: application/json" \
-d '{"domain":"yoursite.com","email":"you@email.com"}'
# Response: { apiKey: "lx_abc123..." }
# 2. Index your pages (or we crawl your sitemap)
curl -X POST https://links.ucok.org/api/crawl \
-H "X-API-Key: lx_abc123..." \
-H "Content-Type: application/json" \
-d '{"site":"yoursite.com"}'
# 3. Get editorial links for any page
curl -X POST https://links.ucok.org/api/links \
-H "X-API-Key: lx_abc123..." \
-H "Content-Type: application/json" \
-d '{"text":"Your page content here...","pageUrl":"/your-page"}'
# Response: [{ title, url, site, relevance }]
Visit /api/stats to see the current network.
The system tracks links served (from your site to others) and links received (from others to your site). Sites that participate fairly get priority placement.
Powered by Cloudflare Workers + D1 + Workers AI