{"id":13572185,"url":"https://github.com/raindropio/developer-site","last_synced_at":"2026-02-05T15:09:04.493Z","repository":{"id":55954331,"uuid":"238274257","full_name":"raindropio/developer-site","owner":"raindropio","description":"Official documentation for Raindrop.io API","archived":false,"fork":false,"pushed_at":"2024-12-24T12:14:15.000Z","size":2122,"stargazers_count":116,"open_issues_count":7,"forks_count":21,"subscribers_count":5,"default_branch":"master","last_synced_at":"2025-04-04T09:36:37.231Z","etag":null,"topics":[],"latest_commit_sha":null,"homepage":"https://developer.raindrop.io/","language":null,"has_issues":true,"has_wiki":null,"has_pages":null,"mirror_url":null,"source_name":null,"license":null,"status":null,"scm":"git","pull_requests_enabled":true,"icon_url":"https://github.com/raindropio.png","metadata":{"files":{"readme":"README.md","changelog":null,"contributing":null,"funding":null,"license":null,"code_of_conduct":null,"threat_model":null,"audit":null,"citation":null,"codeowners":null,"security":null,"support":null,"governance":null,"roadmap":null,"authors":null,"dei":null,"publiccode":null,"codemeta":null}},"created_at":"2020-02-04T18:18:50.000Z","updated_at":"2025-03-28T11:37:57.000Z","dependencies_parsed_at":"2024-05-09T15:40:44.654Z","dependency_job_id":"6727e80a-597c-4277-bc35-cf39e8c80134","html_url":"https://github.com/raindropio/developer-site","commit_stats":null,"previous_names":[],"tags_count":0,"template":false,"template_full_name":null,"purl":"pkg:github/raindropio/developer-site","repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/raindropio%2Fdeveloper-site","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/raindropio%2Fdeveloper-site/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/raindropio%2Fdeveloper-site/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/raindropio%2Fdeveloper-site/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/raindropio","download_url":"https://codeload.github.com/raindropio/developer-site/tar.gz/refs/heads/master","sbom_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/raindropio%2Fdeveloper-site/sbom","scorecard":null,"host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":286080680,"owners_count":29124793,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2026-02-05T14:05:12.718Z","status":"ssl_error","status_checked_at":"2026-02-05T14:03:53.078Z","response_time":65,"last_error":"SSL_read: unexpected eof while reading","robots_txt_status":"success","robots_txt_updated_at":"2025-07-24T06:49:26.215Z","robots_txt_url":"https://github.com/robots.txt","online":false,"can_crawl_api":true,"host_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub","repositories_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories","repository_names_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repository_names","owners_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners"}},"keywords":[],"created_at":"2024-08-01T14:01:15.944Z","updated_at":"2026-02-05T15:09:04.472Z","avatar_url":"https://github.com/raindropio.png","language":null,"funding_links":[],"categories":["HarmonyOS","Others"],"sub_categories":["Windows Manager"],"readme":"---\ndescription: \u003e-\n  Build and integrate tools and applications to help members manage their\n  bookmarks on Raindrop.io\n---\n\n# Overview\n\nThis is the official documentation for Raindrop.io API. A reference to the functionality our public API provides with detailed description of each API endpoint, parameters, and examples.\n\nPlease note that you must [register your application](https://app.raindrop.io/settings/integrations) and authenticate with OAuth when making requests. Before doing so, be sure to read our [Terms \u0026 Guidelines](terms.md) to learn how the API may be used.\n\n### Format\n\nAPI endpoints accept arguments either as url-encoded values for non-POST requests or as json-encoded objects encoded in POST request body with `Content-Type: application/json` header.\n\nWhere possible, the API strives to use appropriate HTTP verbs for each action.\n\n| Verb   | Description                                                |\n| ------ | ---------------------------------------------------------- |\n| GET    | Used for retrieving resources.                             |\n| POST   | Used for creating resources.                               |\n| PUT    | Used for updating resources, or performing custom actions. |\n| DELETE | Used for deleting resources.                               |\n\nThis API relies on standard HTTP response codes to indicate operation result. The table below is a simple reference about the most used status codes:\n\n| Status code | Description                                                                                                                      |\n| ----------: | -------------------------------------------------------------------------------------------------------------------------------- |\n|         200 | The request was processed successfully.                                                                                          |\n|         204 | The request was processed successfully without any data to return.                                                               |\n|         4xx | The request was processed with an error and should not be retried unmodified as they won’t be processed any different by an API. |\n|         5xx | The request failed due to a server error, it’s safe to retry later.                                                              |\n\nAll `200 OK` responses have the `Content-type: application/json` and contain a JSON-encoded representation of one or more objects.\n\nPayload of POST requests has to be JSON-encoded and accompanied with `Content-Type: application/json` header.\n\n### Timestamps \u003ca href=\"#timestamps\" id=\"timestamps\"\u003e\u003c/a\u003e\n\nAll timestamps are returned in ISO 8601 format:\n\n```bash\nYYYY-MM-DDTHH:MM:SSZ\n```\n\n### Rate Limiting \u003ca href=\"#rate-limiting\" id=\"rate-limiting\"\u003e\u003c/a\u003e\n\nFor requests using OAuth, you can make up to 120 requests per minute per authenticated user.\n\nThe headers tell you everything you need to know about your current rate limit status:\n\n| Header name         | Description                                                                       |\n| ------------------- | --------------------------------------------------------------------------------- |\n| X-RateLimit-Limit   | The maximum number of requests that the consumer is permitted to make per minute. |\n| RateLimit-Remaining | The number of requests remaining in the current rate limit window.                |\n| X-RateLimit-Reset   | The time at which the current rate limit window resets in UTC epoch seconds.      |\n\nOnce you go over the rate limit you will receive an error response:\n\n```http\nHTTP/1.1 429 Too Many Requests\nStatus: 429 Too Many Requests\nX-RateLimit-Limit: 120\nX-RateLimit-Remaining: 0\nX-RateLimit-Reset: 1392321600 \n```\n\n### CORS \u003ca href=\"#cross-origin-resource-sharing\" id=\"cross-origin-resource-sharing\"\u003e\u003c/a\u003e\n\nThe API supports Cross Origin Resource Sharing (CORS) for AJAX requests. You can read the [CORS W3C recommendation](https://www.w3.org/TR/cors/), or [this intro](http://code.google.com/p/html5security/wiki/CrossOriginRequestSecurity) from the HTML 5 Security Guide.\n\nHere’s a sample request sent from a browser hitting `http://example.com`:\n\n```http\nHTTP/1.1 200 OK\nAccess-Control-Allow-Origin: http://example.com\nAccess-Control-Expose-Headers: ETag, Content-Type, Accept, X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Reset\nAccess-Control-Allow-Credentials: true\n```\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fraindropio%2Fdeveloper-site","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fraindropio%2Fdeveloper-site","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fraindropio%2Fdeveloper-site/lists"}