Powered by Syphix

Links that live
at the edge.

Zero friction. Zero storage. Convert any long URL into a clean, permanent short link in seconds.

Your link
-- Links created
<10ms Avg redirect
100% Uptime
Lightning Fast
Redirects resolve in under 10ms globally. Your audience never waits, ever.
Permanent Links
Every link is built to last. No expiry dates, no surprises — just reliability.
API First
Clean REST endpoints designed for developers. Integrate in minutes with any stack.
Developer Documentation

Simple API,
infinite scale.

One endpoint. Instant results. Drop it into any language, any framework, any workflow.

Create Short Link

POST /shorten
Request Body
{
  "longUrl": "https://your-url.com"
}
Response — 201
{
  "shortUrl": "https://snivio.vercel.app/xYz1234"
}
const res = await fetch(
  'https://snivio.vercel.app/shorten', {
    method: 'POST',
    headers: {
      'Content-Type': 'application/json'
    },
    body: JSON.stringify({
      longUrl: 'https://google.com'
    })
  }
);
const { shortUrl } = await res.json();
console.log(shortUrl);
import requests

res = requests.post(
  'https://snivio.vercel.app/shorten',
  json={'longUrl': 'https://google.com'}
)
short_url = res.json().get('shortUrl')
print(short_url)
curl -X POST \
  https://snivio.vercel.app/shorten \
  -H 'Content-Type: application/json' \
  -d '{"longUrl":"https://google.com"}'

Bot-friendly GET endpoint

GET /api/v1/short?url=…
Query Parameter
url    URL-encoded long URL

Example:
GET /api/v1/short?url=https%3A%2F%2Fgoogle.com
Response — 201
{
  "shortUrl": "https://snivio.vercel.app/xYz1234"
}