Comment on page
Multiple raindrops
In this page you will find how to retrieve, create, update or delete multiple raindrops at once.
To filter, sort or limit raindrops use one of the parameters described below. Check each method for exact list of supported parameters.
Parameter | Type | Description |
collectionId | Integer | Path parameter that specify from which collection to get raindrops. Or specify one of system: 0 to get all (except Trash)-1 to get from "Unsorted"-99 to get from "Trash" Warning: update or remove methods not support 0 yet. Will be fixed in future. |
search | String | You can first test your searches in Raindrop app and if it works correctly, just copy content of search field and use it here |
sort | String | Query parameter for sorting: -created by date descending (default)created by date ascendingscore by relevancy (only applicable when search is specified)-sort by ordertitle by title (ascending)-title by title (descending)domain by hostname (ascending)-domain by hostname (descending) |
page | Integer | Query parameter. 0, 1, 2, 3 ... |
perpage | Integer | Query parameter. How many raindrops per page. 50 max |
ids | Array<Integer> | You can specify exact raindrop ID's for batch update/remove methods |
get
https://api.raindrop.io
/rest/v1/raindrops/{collectionId}
Get raindrops
post
https://api.raindrop.io
/rest/v1/raindrops
Create many raindrops
put
https://api.raindrop.io
/rest/v1/raindrops/{collectionId}
Update many raindrops
delete
https://api.raindrop.io
/rest/v1/raindrops/{collectionId}
Remove many raindrops
Last modified 1yr ago