Lindle PHP API to save all your links all in one place

dev-main 2024-05-15 07:37 UTC

This package is not auto-updated.

Last update: 2024-08-31 10:53:51 UTC


README

Lindle is your ultimate solution for managing and organizing your web links with ease. This versatile Chrome extension empowers you to save, categorize, and access your online resources like never before.

Buy Me A Coffee Google Play Chrome Store

API Documentation

The API Documentation for Lindle.

Installation

composer install lindle

Getting Started

Get your Lindle API key from Chrome Extension.
Chrome Extension

$apiKey = "YOUR_API";
$lindle = new Lindle($apiKey);

Get Links

$links = $lindle->getLinks();
print_r($links);

Get Folders

$folders = $lindle->getFolders();
print_r($folders);

Get Synced Bookmarks

$data = $lindle->getSyncedBookmarks();
print_r($data['links']);
print_r($data['folders']);