Save link

POST https://api.linkish.io/save-link

This endpoint allows you to save links directly to your linkish dashboard

Headers

NameTypeDescription

Authorization

string

format - `Bearer ACCESS_TOKEN`

Request Body

NameTypeDescription

url

string

Link URL (required if type is 'link')

type

string

Either 'link' or 'text'

title

string

Title of link/text, if empty then scraped from URL

desc

string

Description of link/text, if empty then scraped from URL

tags

array

An array of string

parent

string

Collection ID of parent collection, if empty then saved in root collection

thumbnail

string

Link image URL, if empty then scraped from URL

{
    "success": 1,
    "message" : "Link saved successfully!",
    "link_id": "<LINK_ID>",
    "link_url": "https://linkish.io/l/<LINK_ID>",
    "folder_id": "<FOLDER_ID>",
    "folder_url": "https://linkish.io/c/<FOLDER_ID>"
}

Last updated