Developers

Use the Urlivo API to create, update, and manage short links from your own tools and workflows.

Quick start

Create an API key, send it as a Bearer token, then start creating or syncing short links from your own app.

  1. Create an API key from this page.
  2. Send requests with Authorization: Bearer YOUR_API_KEY.
  3. Use the API reference below for endpoints and payloads.

Current access

Create an account to explore the API and unlock key management on paid plans.

List links example

curl -X GET \
  https://urlivo.com/api/v1/links \
  -H "Authorization: Bearer YOUR_API_KEY"

Create link example

curl -X POST \
  https://urlivo.com/api/v1/links \
  -H "Authorization: Bearer YOUR_API_KEY" \
  -H "Content-Type: application/json" \
  -d '{
    "target_url": "https://example.com/campaign",
    "slug": "spring24",
    "title": "Spring campaign"
  }'