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
  • Fields
  • Get filters

Was this helpful?

  1. Rest API v1

Filters

PreviousTagsNextImport

Last updated 4 months ago

Was this helpful?

To help users easily find their content you can suggest context aware filters like we have in Raindrop.io app

Fields

Field

Type

Description

broken

Object

broken.count

Integer

Broken links count

duplicates

Object

duplicates.count

Integer

Duplicate links count

important

Object

important.count

Integer

Count of raindrops that marked as "favorite"

notag

Object

notag.count

Integer

Count of raindrops without any tag

tags

Array<Object>

List of tags in format {"_id": "tag name", "count": 1}

types

Array<Object>

List of types in format {"_id": "type", "count": 1}

Get filters

GET https://api.raindrop.io/rest/v1/filters/{collectionId}

Path Parameters

Name
Type
Description

collectionId

string

Collection ID. 0 for all

Query Parameters

Name
Type
Description

tagsSort

string

Sort tags by: -count by count, default _id by name

search

string

Check "raindrops" documentation for more details

{
  "result": true,
  "broken": {
    "count": 31
  },
  "duplicates": {
    "count": 7
  },
  "important": {
    "count": 59
  },
  "notag": {
    "count": 1366
  },
  "tags": [
    {
      "_id": "performanc",
      "count": 19
    },
    {
      "_id": "guides",
      "count": 9
    }
  ],
  "types": [
    {
      "_id": "article",
      "count": 313
    },
    {
      "_id": "image",
      "count": 143
    },
    {
      "_id": "video",
      "count": 26
    },
    {
      "_id": "document",
      "count": 7
    }
  ]
}
Filters right above search field