LinkGenie

Developers · API

Public REST for short links

Base URL https://api.genieos.pro. Authenticate with a workspace API key. Live programmatic access is on Glow+ — see current GenieOS entitlements.

MethodPath
POST/v1/links
GET/v1/links
PATCH/v1/links/{id}
POST/v1/links/bulk
POST/v1/qr
GET/v1/links/{id}/analytics

Paths reflect the GenieOS public API shape. Canonical reference: docs.genieos.pro/api#short-links. We do not invent endpoints here.

quickstart.shbash
# Authenticate every call with your workspace keyexport GENIEOS_API_KEY=gos_live_… # Createcurl -X POST https://api.genieos.pro/v1/links \  -H "Authorization: Bearer $GENIEOS_API_KEY" \  -H "Content-Type: application/json" \  -d '{"destination":"https://example.com","slug":"hello"}' # Listcurl https://api.genieos.pro/v1/links \  -H "Authorization: Bearer $GENIEOS_API_KEY"