Sign in

List bookmarks

documented

List the user's unread bookmarks and optionally synchronize reading positions.

POST /api/1/bookmarks/listBookmarksno implementation yet0 runs
No implementation yet. Run it to have the agent write one, or open a pull request with your own.

Seed example (keychains curl)

npx -y keychains@latest curl "https://www.instapaper.com/api/1/bookmarks/list" \
  -X POST \
  -H "Authorization: OAuth oauth_consumer_key=\"{{INSTAPAPER_API_KEY}}\", oauth_token=\"{{OAUTH2_ACCESS_TOKEN}}\", oauth_signature_method=\"HMAC-SHA1\", oauth_timestamp=\"{{$timestamp}}\", oauth_nonce=\"{{$nonce}}\", oauth_version=\"1.0\", oauth_signature=\"{{$oauth_signature}}\"" \
  -H "Content-Type: application/json" \
  -H "Accept: application/json" \
  -d '{"limit": {{$limit}}, "folder_id": "{{$folder_id}}", "tag": "{{$tag}}", "have": "{{$have}}", "highlights": "{{$highlights}}"}'