Skip to main content
GET
/
v1
/
shortcuts
/
{slug}
Retrieve shortcut
curl --request GET \
  --url https://api.uselora.com/v1/shortcuts/{slug} \
  --header 'Authorization: Bearer <token>'
{
  "id": "3c90c3cc-0d44-4b50-8888-8dd25736052a",
  "slug": "<string>",
  "destination": "<string>",
  "title": "<string>",
  "description": "<string>",
  "icon": "<string>",
  "image": "<string>",
  "video": "<string>",
  "archived": true,
  "masked": true,
  "passwordProtected": true,
  "expiresAt": "<string>",
  "ios": "<string>",
  "android": "<string>",
  "geo": {},
  "placeholders": [
    {
      "name": "<string>",
      "default": "<string>"
    }
  ],
  "folderId": "3c90c3cc-0d44-4b50-8888-8dd25736052a",
  "tagIds": [],
  "externalId": "<string>",
  "tenantId": "<string>",
  "comments": "<string>",
  "workspaceId": "<string>",
  "userId": "<string>",
  "createdAt": "<string>",
  "updatedAt": "<string>"
}

Documentation Index

Fetch the complete documentation index at: https://uselora.dev/llms.txt

Use this file to discover all available pages before exploring further.

Authorizations

Authorization
string
header
required

Bearer authentication header of the form Bearer <token>, where <token> is your auth token.

Path Parameters

slug
string
required

The shortcut's slug.

Response

The shortcut.

A shortcut.

id
string<uuid>
required

Unique shortcut ID.

slug
string
required
destination
string
required
title
string | null
required
description
string | null
required
icon
string | null
required
image
string | null
required
video
string | null
required
visibility
enum<string>
required
Available options:
PRIVATE,
WORKSPACE,
UNLISTED,
PUBLIC
archived
boolean
required
masked
boolean
required
passwordProtected
boolean
required

Whether this shortcut requires a password before redirecting. The password hash is never returned.

expiresAt
string | null
required
ios
string | null
required
android
string | null
required
geo
Geo · object
required

Country-specific destination overrides keyed by ISO-3166-1 alpha-2 country code.

placeholders
PlaceholderDescriptor · object[]
required

Dynamic placeholders parsed from the destination URL. Empty for static destinations. See docs/dynamic-placeholders.md.

folderId
string<uuid>
required

ID of the folder this shortcut is filed in. Defaults to the workspace's default folder when omitted on create.

tagIds
string[]
required

IDs of the tags applied to this shortcut. Tags are for categorization; folderId is the shortcut's location.

Pattern: ^[0-9abcdefghjkmnpqrstvwxyz]{8}$
Example:
["a1b2c3d4"]
externalId
string | null
required
tenantId
string | null
required
comments
string | null
required
workspaceId
string
required

ID of the workspace the shortcut belongs to.

userId
string
required

ID of the user who created the shortcut.

createdAt
string
required

ISO 8601 creation timestamp.

updatedAt
string
required

ISO 8601 timestamp of the last update.