API Documentation
API Documentation
  • Overview
  • Terms & Guidelines
  • Rest API v1
    • Authentication
      • Obtain access token
      • Make authorized calls
    • Collections
      • Collection methods
      • Nested structure
      • Sharing
      • Covers/icons
    • Raindrops
      • Single raindrop
      • Multiple raindrops
    • Highlights
    • User
      • Authenticated user
    • Tags
    • Filters
    • Import
    • Export
    • Backups
  • More
    • Changelog
    • Showcase
Powered by GitBook
On this page
  • Get all
  • Download file
  • Generate new

Was this helpful?

  1. Rest API v1

Backups

Get all

GET https://api.raindrop.io/rest/v1/backups

Useful to get backup ID's that can be used in /backup/{ID}.{format} endpoint.

Sorted by date (new first)

{
    "result": true,
    "items": [
        {
            "_id": "659d42a35ffbb2eb5ae1cb86",
            "created": "2024-01-09T12:57:07.630Z"
        }
    ]
}

Download file

GET https://api.raindrop.io/rest/v1/backup/{ID}.{format}

For example:

https://api.raindrop.io/rest/v1/backup/659d42a35ffbb2eb5ae1cb86.csv

Path Parameters

Name
Type
Description

ID*

String

Backup ID

format*

String

File format: html or csv

Generate new

GET https://api.raindrop.io/rest/v1/backup

Useful to create a brand new backup. This requires some time.

New backup will appear in the list of /backups endpoint

We will send you email with html export file when it be ready! Time depends on bookmarks count and queue.
PreviousExportNextChangelog

Last updated 1 year ago

Was this helpful?