Skip to main content
GET
/
v1
/
shortcuts
List shortcuts
curl --request GET \
  --url https://api.uselora.com/v1/shortcuts \
  --header 'Authorization: Bearer <token>'
{
  "items": [
    {
      "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>",
      "placeholders": [
        {
          "name": "<string>",
          "default": "<string>"
        }
      ],
      "folderId": "3c90c3cc-0d44-4b50-8888-8dd25736052a",
      "tagIds": [],
      "externalId": "<string>",
      "tenantId": "<string>",
      "workspaceId": "<string>",
      "userId": "<string>",
      "createdAt": "<string>",
      "updatedAt": "<string>",
      "isDraft": true,
      "proxy": true,
      "clickCount": 4503599627370495,
      "owner": {
        "id": "<string>",
        "name": "<string>",
        "image": "<string>"
      },
      "isFavorited": true
    }
  ],
  "nextCursor": "<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.

Query Parameters

cursor
string

Opaque pagination token returned as nextCursor from the previous page. Omit on the first request.

limit
integer
default:50

Page size. Out-of-range values are clamped to [1, 100]; defaults to 50.

Required range: 1 <= x <= 100
externalId
string

Filter to shortcuts whose externalId equals this value. Combine with tenantId for multi-tenant lookups.

Required string length: 1 - 255
tenantId
string

Filter to shortcuts whose tenantId equals this value.

Required string length: 1 - 255

Response

Paginated list of shortcuts.

Paginated list of shortcuts visible to the caller

items
ShortcutListItem · object[]
required
nextCursor
string | null
required

Cursor for the next page, or null if this is the last page.

Pattern: ^\d{4}-\d{2}-\d{2}T\d{2}:\d{2}:\d{2}(?:\.\d+)?Z__[0-9a-f]{8}-[0-9a-f]{4}-[0-9a-f]{4}-[0-9a-f]{4}-[0-9a-f]{12}$