The Enterprise URL Shortener

Track, manage, and scale your brand's digital presence with high-performance links built for enterprise resilience and analytics.

Advanced Analytics
RBAC Security
99.9% Uptime

Developer API

Integrate the URL Shortener into your enterprise CRM or notification systems.

Create Short URL

Generates a secure, analytics-tracked short URL from a provided long URL destination.

Authentication

Requires a JWT token passed in the Authorization: Bearer <token> header.

Request Body

Parameter Type Description
long_url
REQUIRED
string The destination URL. Must be a valid HTTP/HTTPS URL.
campaign_id string Optional tracking identifier for marketing campaigns.
POST /api/v1/shorten
// Request Payload { "long_url": "https://example.com/promotion" } // Response Payload (200 OK) { "status": "success", "data": { "short_url": "http://url.mspace.co.ke/q0W", "long_url": "https://example.com/promotion", "created_at": "2026-07-09T10:00:00.000Z" } }