GET
/
links
/
{id}
curl --request GET \
  --url https://api.reqlick.com/links/{id} \
  --header 'Authorization: Bearer <token>'
{
  "id": "link123",
  "key": "unique-key",
  "domain": "example.com",
  "url": "https://example.com",
  "_count": {
    "views": 100
  },
  "document": {
    "id": "doc123",
    "name": "Document Name",
    "type": "pdf",
    "file": "https://example.com/document.pdf"
  },
  "qrcode": {}
}

Authorizations

Authorization
string
header
required

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

Path Parameters

id
string
required

The ID of the link to retrieve

Query Parameters

workspace
string
required

Workspace URL

Response

200
application/json
Link retrieved successfully
id
string
Example:

"link123"

key
string
Example:

"unique-key"

domain
string
Example:

"example.com"

url
string
Example:

"https://example.com"

_count
object
document
object
qrcode
object | null

QR code associated with the link