The internet's most expensive link.

BUY
THE LINK.

One link. One owner. Buy it, choose where it goes, and become part of internet history.

VISIT THE LINK →
Current price
$12.50
Currently owned by Loading...
👁 Loading... people have visited

How it works

There is only one BuyTheLink. Whoever owns it controls where the link goes.

When someone buys it, the price increases by 25%.

The goal? Make this the most expensive link on the internet.

async function loadCurrentPrice() { try { const response = await fetch('/api/price'); if (!response.ok) { throw new Error('Price unavailable'); } const data = await response.json(); const priceElement = document.getElementById('modal-price'); if (priceElement) { priceElement.textContent = (data.price / 100).toFixed(2); } } catch (error) { console.error('Could not load modal price:', error); } } async function loadCurrentOwner() { try { const response = await fetch( '/api/owner' ); if (!response.ok) { throw new Error('Owner unavailable'); } const data = await response.json(); const ownerElement = document.getElementById('current-owner'); if (ownerElement) { ownerElement.textContent = data.owner || 'No owner yet'; } } catch (error) { console.error( 'Could not load current owner:', error ); } } loadCurrentOwner(); loadmodalPrice(); fetch('/api/visitors') .then(response => { if (!response.ok) { throw new Error('Visitor API failed'); } return response.json(); }) .then(data => { const element = document.getElementById('visitor-count'); if (element) { element.textContent = Number(data.visitors).toLocaleString(); } }) .catch(error => { console.error('Visitor counter error:', error); });