curl --request POST \
--url https://api.example.com/public/link-preview \
--header 'Authorization: Bearer <token>' \
--header 'Content-Type: application/json' \
--data '
{
"url": "https://www.google.com",
"publicSessionToken": "<string>"
}
'{
"success": true,
"data": "<unknown>"
}public Returns a link preview (title, description, image) for the specified url.
curl --request POST \
--url https://api.example.com/public/link-preview \
--header 'Authorization: Bearer <token>' \
--header 'Content-Type: application/json' \
--data '
{
"url": "https://www.google.com",
"publicSessionToken": "<string>"
}
'{
"success": true,
"data": "<unknown>"
}