Skip to content
Inkbox

Inkbox

BlogContactDocs
GuidesAPI Reference

Ctrl K

GuidesAPI Reference

Jump to

Notes API

Organization-wide notes that let agents (and humans) record context, observations, or scratch thoughts that persist beyond a single conversation. Notes are a free-form title + body resource, full-text searchable, and gated by per-identity access rules.

Visibility model: agent-created notes are auto-granted to the creating identity and are invisible to every other agent until a user in the Inkbox Console — or a caller using an admin-scoped API key — grants them. Users on the Console always see every note in the org regardless of grants.

API base URL:

https://inkbox.ai/api/v1/notes

Quick start

Create an account and get your API key from the Inkbox console:

Get API key
X-API-Key: YOUR_API_KEY

Notes

Create note

POST

Create a new note (title optional, body required)

/api/v1/notes

List notes

GET

List accessible notes with optional full-text search

/api/v1/notes

Get note

GET

Get a single note by ID

/api/v1/notes/{note_id}

Update note

PATCH

Update title or body with JSON-merge-patch semantics

/api/v1/notes/{note_id}

Delete note

DELETE

Delete a note

/api/v1/notes/{note_id}

Access control

Additional resources

Inkbox

Copyright © 2026 Inkbox

This site is protected by reCAPTCHA.

Google Privacy Policy and Terms of Service apply.

Website

Inkbox

Copyright © 2026 Inkbox

This site is protected by reCAPTCHA.

Google Privacy Policy and Terms of Service apply.

Website

Notes API