Import
Handy methods to implement import functionality
Parse URL
GET https://api.raindrop.io/rest/v1/import/url/parse
Parse and extract useful info from any URL
Query Parameters
Name
Type
Description
url
string
URL
//Success
{
"item": {
"title": "Яндекс",
"excerpt": "Найдётся всё",
"media": [
{
"type": "image",
"link": "http://yastatic.net/s3/home/logos/share/share-logo_ru.png"
}
],
"type": "link",
"meta": {
"possibleArticle": false,
"canonical": "https://ya.ru",
"site": "Яндекс",
"tags": []
}
},
"result": true
}
//Invalid URL
{
"error": "not_found",
"errorMessage": "invalid_url",
"item": {
"title": "Fdfdfdf",
"excerpt": "",
"media": [
{
"link": "<screenshot>"
}
],
"type": "link",
"parser": "local",
"meta": {
"possibleArticle": false,
"tags": []
}
},
"result": true
}
//Not found
{
"error": "not_found",
"errorMessage": "url_status_404",
"item": {
"title": "Some",
"excerpt": "",
"media": [
{
"link": "<screenshot>"
}
],
"type": "link",
"parser": "local",
"meta": {
"possibleArticle": false,
"tags": []
}
},
"result": true
}Check URL(s) existence
POST https://api.raindrop.io/rest/v1/import/url/exists
Does specified URL's are already saved?
Request Body
Name
Type
Description
urls
array
URL's
Parse HTML import file
POST https://api.raindrop.io/rest/v1/import/file
Convert HTML bookmark file to JSON.
\
Support Nestcape, Pocket and Instapaper file formats
Headers
Name
Type
Description
Content-Type
string
multipart/form-data
Request Body
Name
Type
Description
import
string
File
Last updated