Developers
Short links for agents and pipelines
Mint and manage branded short links from your stack. Live API keys are on Glow+ — the docs describe the shipped GenieOS surface.
link-genie · integrations
create-link.shbash
# Mint a branded short linkcurl -X POST https://api.genieos.pro/v1/links \ -H "Authorization: Bearer $GENIEOS_API_KEY" \ -H "Content-Type: application/json" \ -d '{ "destination": "https://example.com/spring", "slug": "spring", "tags": ["campaign", "qr"] }' # → { "shortUrl": "https://gogen.ie/spring", ... }create-link.tsts
import { GenieOS } from "@genieos/sdk"; const client = new GenieOS({ apiKey: process.env.GENIEOS_API_KEY }); const link = await client.links.create({ destination: "https://example.com/spring", slug: "spring", tags: ["campaign", "qr"],}); console.log(link.shortUrl);// → https://gogen.ie/springagent-prompt.mdmd
# In Cursor / Claude with GenieOS MCP connected Create a short link for https://example.com/springwith slug spring and tags campaign, qr. # Agent calls create_short_link → returns gogen.ie/springSame GenieOS key · REST · MCP · SDK