Single raindrop
In this page you will find how to retrieve, create, update or delete single raindrop.
Get raindrop
GET
https://api.raindrop.io/rest/v1/raindrop/{id}
Path Parameters
Name | Type | Description |
---|---|---|
id* | number | Existing raindrop ID |
Create raindrop
POST
https://api.raindrop.io/rest/v1/raindrop
Description and possible values of fields described in "Fields"
Request Body
Name | Type | Description |
---|---|---|
pleaseParse | object | Specify empty object to automatically parse meta data (cover, description, html) in the background |
created | string | |
lastUpdate | string | |
order | number | Specify sort order (ascending). For example if you want to move raindrop to the first place set this field to 0 |
important | boolean | |
tags | array | |
media | array | |
cover | string | |
collection | object | |
type | string | |
excerpt | string | |
title | string | |
link* | string | |
highlights | array | |
reminder | object |
Update raindrop
PUT
https://api.raindrop.io/rest/v1/raindrop/{id}
Description and possible values of fields described in "Fields"
Path Parameters
Name | Type | Description |
---|---|---|
id* | number | Existing raindrop ID |
Request Body
Name | Type | Description |
---|---|---|
created | string | |
lastUpdate | string | |
pleaseParse | object | Specify empty object to re-parse link meta data (cover, type, html) in the background |
order | number | Specify sort order (ascending). For example if you want to move raindrop to the first place set this field to 0 |
important | boolean | |
tags | array | |
media | array | |
cover | string | |
collection | object | |
type | string | |
excerpt | string | |
title | string | |
link | string | |
highlights | array | |
reminder | object |
Remove raindrop
DELETE
https://api.raindrop.io/rest/v1/raindrop/{id}
When you remove raindrop it will be moved to user Trash
collection. But if you try to remove raindrop from Trash
, it will be removed permanently.
Path Parameters
Name | Type | Description |
---|---|---|
id* | number | Existing raindrop ID |
Upload file
PUT
https://api.raindrop.io/rest/v1/raindrop/file
Make sure to send PUT request with multipart/form-data body
Headers
Name | Type | Description |
---|---|---|
Content-Type* | string | multipart/form-data |
Request Body
Name | Type | Description |
---|---|---|
file* | object | File |
collectionId | String | Collection Id |
Upload cover
PUT
https://api.raindrop.io/rest/v1/raindrop/{id}/cover
PNG, GIF or JPEG
Path Parameters
Name | Type | Description |
---|---|---|
id* | number | Existing raindrop ID |
Headers
Name | Type | Description |
---|---|---|
Content-Type* | string | multipart/form-data |
Request Body
Name | Type | Description |
---|---|---|
cover* | object | File |
Get permanent copy
GET
https://api.raindrop.io/rest/v1/raindrop/{id}/cache
Links permanently saved with all content (only in PRO plan). Using this method you can navigate to this copy.
Path Parameters
Name | Type | Description |
---|---|---|
id* | number | Existing raindrop ID |
Suggest collection and tags for new bookmark
POST
https://api.raindrop.io/rest/v1/raindrop/suggest
Request Body
Name | Type | Description |
---|---|---|
link* | string |
Suggest collection and tags for existing bookmark
GET
https://api.raindrop.io/rest/v1/raindrop/{id}/suggest
Path Parameters
Name | Type | Description |
---|---|---|
* | String | Bookmark id |
Last updated