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!
If you have your Auth ID, you can upload files directly here:
Check the status of your Auth ID or delete it if you no longer need it:
You can also use this service programmatically:
Register a new device with a link code
curl -X POST "https://your-domain.com/register" \
-H "Content-Type: application/json" \
-d '{"linkCode": "ABCD1234"}'
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"
Check authentication status
curl "https://your-domain.com/auth/your-auth-id/status"
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"