📄 Send to reMarkable

What is this?

This service allows you to send documents directly to your reMarkable tablet in three ways:

I made this because I wanted Readwise Reader's send-to-Kindle functionality to work with my reMarkable tablet. Now it does!

Web Upload

If you have your Auth ID, you can upload files directly here:

Manage Your Auth ID

Check the status of your Auth ID or delete it if you no longer need it:

🔧 API Documentation

You can also use this service programmatically:

POST /register

Register a new device with a link code

curl -X POST "https://your-domain.com/register" \
  -H "Content-Type: application/json" \
  -d '{"linkCode": "ABCD1234"}'
POST /upload

Upload a file using Auth ID (the first part of your email)

curl -X POST "https://your-domain.com/upload" \
  -F "file=@document.pdf" \
  -F "authId=your-auth-id-here"
GET /auth/:authId/status

Check authentication status

curl "https://your-domain.com/auth/your-auth-id/status"
DELETE /auth/:authId

Delete an auth ID. This will delete the token, and make the auth ID invalid

curl -X DELETE "https://your-domain.com/auth/your-auth-id"