> ## Documentation Index
> Fetch the complete documentation index at: https://docs.usenerve.com/llms.txt
> Use this file to discover all available pages before exploring further.

# Index Note

Index a note into your Nerve knowledge base. This endpoint creates a searchable note with the provided content and metadata.

#### Authorizations

<ParamField header="Authorization" type="string" required>
  Bearer authentication header of the form `Bearer <token>`, where `<token>` is your OAuth access token.
</ParamField>

#### Request Body

<ParamField body="note_title" type="string" required>
  The title of the note
</ParamField>

<ParamField body="note_content" type="string" required>
  The content/body of the note
</ParamField>

<ParamField body="note_id" type="string">
  A unique identifier for the note (used as remote\_id)
</ParamField>

<ParamField body="note_url" type="string">
  URL link to the original note or source
</ParamField>

<ParamField body="note_source" type="string">
  The source of the note (e.g., "Notion", "Google Docs", "Evernote")
</ParamField>

#### Response

<ResponseField name="message" type="string">
  Confirmation message: "Note indexed"
</ResponseField>
