Quick Start
Get up and running with Notebind in 5 minutes.
Prerequisites
Section titled “Prerequisites”- A Notebind account — sign up free
- An API key (created in Settings)
Using the API
Section titled “Using the API”-
Create an API key
Go to Settings and create a new API key. Copy the key — it’s only shown once.
nb_sk_a1b2c3d4e5f6a7b8c9d0e1f2a3b4c5d6 -
Create a document
Terminal window curl -X POST https://notebind.com/api/documents \-H "Authorization: Bearer nb_sk_YOUR_KEY" \-H "Content-Type: application/json" \-d '{"title": "My First Document", "content": "# Hello World\n\nThis is my first document on Notebind."}'Response:
{"data": {"id": "6240800a-1234-5678-abcd-ef0123456789","owner_id": "your-user-id","title": "My First Document","content": "# Hello World\n\nThis is my first document on Notebind.","created_at": "2026-03-13T12:00:00.000Z","updated_at": "2026-03-13T12:00:00.000Z"},"error": null} -
Create a share link
Share the document with reviewers:
Terminal window curl -X POST https://notebind.com/api/documents/DOC_ID/share \-H "Authorization: Bearer nb_sk_YOUR_KEY" \-H "Content-Type: application/json" \-d '{"permission": "comment"}'Response:
{"data": {"id": "link-uuid","token": "a21e739e4fcf3cc2844e4b23a3b14b14","permission": "comment","expires_at": null,"created_at": "2026-03-13T12:01:00.000Z"},"error": null}Send reviewers the link:
https://notebind.com/share/a21e739e4fcf3cc2844e4b23a3b14b14 -
Pull feedback
After reviewers leave comments:
Terminal window curl https://notebind.com/api/documents/DOC_ID/comments \-H "Authorization: Bearer nb_sk_YOUR_KEY"{"data": [{"id": "comment-uuid","body": "This intro could be more specific about the target audience.","anchor_text": "Hello World","anchor_start": 2,"anchor_end": 13,"resolved": false,"author": { "display_name": "Jane", "avatar_url": null }}],"error": null}
Using the CLI
Section titled “Using the CLI”-
Install the CLI
Terminal window cargo install notebind -
Authenticate
Terminal window notebind auth --token nb_sk_YOUR_KEY -
Initialize a project
Terminal window cd your-projectnotebind init -
Push a document
Terminal window notebind push article.md -
Pull feedback
Terminal window notebind pull
Next steps
Section titled “Next steps”- Authentication — Learn about API key and session auth
- API Reference — Explore all endpoints
- Agent Feedback Loop — Build a complete write-review-iterate workflow