Skip to main content
GET
/
v1
/
households
/
{household_id}
/
notes
/
{id}
Get a note
curl --request GET \
  --url https://api.slant.app/v1/households/{household_id}/notes/{id} \
  --header 'Authorization: Bearer <token>'
{
  "id": "abc123xyz",
  "content": "Meeting notes from client discussion",
  "pinned": false,
  "source": "api",
  "book_id": "book123xyz",
  "created_at": "2023-11-07T05:31:56Z",
  "updated_at": "2023-11-07T05:31:56Z",
  "household_id": "household123xyz",
  "created_by_id": "user123xyz"
}

Documentation Index

Fetch the complete documentation index at: https://docs.slant.app/llms.txt

Use this file to discover all available pages before exploring further.

Authorizations

Authorization
string
header
required

OAuth 2.0 Bearer Token from Clerk authentication

Path Parameters

id
string
required

The note ID

household_id
string
required

The household ID

Response

successful

id
string
required

The note ID

Example:

"abc123xyz"

content
string
required

The plaintext content of the note

Example:

"Meeting notes from client discussion"

pinned
boolean
required

Whether the note is pinned

Example:

false

source
enum<string>
required

The source of the note

Available options:
slant,
import,
api
Example:

"api"

book_id
string
required

The book ID

Example:

"book123xyz"

created_at
string<date-time>
required

When the note was created

updated_at
string<date-time>
required

When the note was last updated

household_id
string | null

The household ID

Example:

"household123xyz"

created_by_id
string | null

The ID of the user who created the note

Example:

"user123xyz"