Skip to content
For LLMsView as Markdown·

Evernote

Create and manage notes, notebooks, and tags in Evernote.

DetailValue
CategoryProductivity
Base URLhttps://api.evernote.com/v1
AuthenticationOAuth2
Endpoints5
Connector keyevernote

Using Evernote in a workflow

  1. Go to Connections and click New Connection.
  2. Pick Evernote from the marketplace.
  3. Enter your credentials (see Authentication above for what's expected).
  4. In a workflow, drop an API Call node and select this connection.
  5. Pick the operation you need from the Operation dropdown — the full list is below.

Available endpoints

EndpointSummary
GET /notesList notes
POST /notesCreate a note
GET /notes/{noteGuid}Get a note
GET /notebooksList notebooks
GET /searchSearch notes

Each endpoint is documented in full below. Use the outline on the right to jump to one.

GET /notes

List notes

DetailValue
Operation IDproductivity.listNotes
MethodGET
Path/notes

Parameters

NameLocationTypeRequired
notebookGuidquerystringNo

Using this endpoint in a workflow

  1. Add an API Call node to your workflow.
  2. Pick your Evernote connection from the Connection dropdown.
  3. In the Operation dropdown, select productivity.listNotes.
  4. Fill in the parameter fields that appear. Use {{...}} to reference upstream values.

What it returns

The API Call node writes the response to the workflow context:

{
  status: 200,
  success: true,
  data: { ...response body from the API... },
  latencyMs: 142
}

Reference response fields downstream as {{nodeId.data.path}}. The exact response shape is documented on the upstream Evernote API reference.

POST /notes

Create a note

DetailValue
Operation IDproductivity.createNote
MethodPOST
Path/notes

Parameters

No parameters.

Request Body

FieldType
titlestring
contentstring

Using this endpoint in a workflow

  1. Add an API Call node to your workflow.
  2. Pick your Evernote connection from the Connection dropdown.
  3. In the Operation dropdown, select productivity.createNote.
  4. Fill in the parameter fields that appear. Use {{...}} to reference upstream values.

Required fields are marked — fill them or the call will fail at runtime.

What it returns

The API Call node writes the response to the workflow context:

{
  status: 200,
  success: true,
  data: { ...response body from the API... },
  latencyMs: 142
}

Reference response fields downstream as {{nodeId.data.path}}. The exact response shape is documented on the upstream Evernote API reference.

GET /notes/{noteGuid}

Get a note

DetailValue
Operation IDproductivity.getNote
MethodGET
Path/notes/{noteGuid}

Parameters

NameLocationTypeRequired
noteGuidpathstringYes

Using this endpoint in a workflow

  1. Add an API Call node to your workflow.
  2. Pick your Evernote connection from the Connection dropdown.
  3. In the Operation dropdown, select productivity.getNote.
  4. Fill in the parameter fields that appear. Use {{...}} to reference upstream values.

Required fields are marked — fill them or the call will fail at runtime.

What it returns

The API Call node writes the response to the workflow context:

{
  status: 200,
  success: true,
  data: { ...response body from the API... },
  latencyMs: 142
}

Reference response fields downstream as {{nodeId.data.path}}. The exact response shape is documented on the upstream Evernote API reference.

GET /notebooks

List notebooks

DetailValue
Operation IDproductivity.listNotebooks
MethodGET
Path/notebooks

Parameters

No parameters.

Using this endpoint in a workflow

  1. Add an API Call node to your workflow.
  2. Pick your Evernote connection from the Connection dropdown.
  3. In the Operation dropdown, select productivity.listNotebooks.
  4. Fill in the parameter fields that appear. Use {{...}} to reference upstream values.

What it returns

The API Call node writes the response to the workflow context:

{
  status: 200,
  success: true,
  data: { ...response body from the API... },
  latencyMs: 142
}

Reference response fields downstream as {{nodeId.data.path}}. The exact response shape is documented on the upstream Evernote API reference.

Search notes

DetailValue
Operation IDproductivity.searchNotes
MethodGET
Path/search

Parameters

NameLocationTypeRequired
queryquerystringYes

Using this endpoint in a workflow

  1. Add an API Call node to your workflow.
  2. Pick your Evernote connection from the Connection dropdown.
  3. In the Operation dropdown, select productivity.searchNotes.
  4. Fill in the parameter fields that appear. Use {{...}} to reference upstream values.

Required fields are marked — fill them or the call will fail at runtime.

What it returns

The API Call node writes the response to the workflow context:

{
  status: 200,
  success: true,
  data: { ...response body from the API... },
  latencyMs: 142
}

Reference response fields downstream as {{nodeId.data.path}}. The exact response shape is documented on the upstream Evernote API reference.