Skip to main content
GET
/
v1
/
notes
List notes
curl --request GET \
  --url https://app.nex.ai/api/developers/v1/notes \
  --header 'Authorization: <api-key>'
{
  "data": [
    {
      "id": "900",
      "title": "Meeting notes",
      "content": "Discussed Q3 roadmap...",
      "entity_id": "1001",
      "created_by": "developer_api",
      "created_at": "2024-01-15T10:00:00Z"
    }
  ]
}

Authorizations

Authorization
string
header
required

API key for authentication (format: "Bearer YOUR_API_KEY")

Query Parameters

entity_id
string

Filter by associated record ID

Response

List of notes

data
object[]
Last modified on March 7, 2026