List notes
curl --request GET \
--url https://app.nex.ai/api/developers/v1/notes \
--header 'Authorization: <api-key>'import requests
url = "https://app.nex.ai/api/developers/v1/notes"
headers = {"Authorization": "<api-key>"}
response = requests.get(url, headers=headers)
print(response.text)const options = {method: 'GET', headers: {Authorization: '<api-key>'}};
fetch('https://app.nex.ai/api/developers/v1/notes', options)
.then(res => res.json())
.then(res => console.log(res))
.catch(err => console.error(err));package main
import (
"fmt"
"net/http"
"io"
)
func main() {
url := "https://app.nex.ai/api/developers/v1/notes"
req, _ := http.NewRequest("GET", url, nil)
req.Header.Add("Authorization", "<api-key>")
res, _ := http.DefaultClient.Do(req)
defer res.Body.Close()
body, _ := io.ReadAll(res.Body)
fmt.Println(string(body))
}{
"data": [
{
"id": "900",
"title": "Meeting notes",
"content": "Discussed Q3 roadmap...",
"entity_id": "1001",
"created_by": "developer_api",
"created_at": "2024-01-15T10:00:00Z"
}
]
}{
"code": 123,
"message": "<string>"
}{
"code": 123,
"message": "<string>"
}{
"code": 123,
"message": "<string>"
}Notes
List notes
Retrieves notes with optional filtering by associated record. Response capped at 200 notes.
GET
/
v1
/
notes
List notes
curl --request GET \
--url https://app.nex.ai/api/developers/v1/notes \
--header 'Authorization: <api-key>'import requests
url = "https://app.nex.ai/api/developers/v1/notes"
headers = {"Authorization": "<api-key>"}
response = requests.get(url, headers=headers)
print(response.text)const options = {method: 'GET', headers: {Authorization: '<api-key>'}};
fetch('https://app.nex.ai/api/developers/v1/notes', options)
.then(res => res.json())
.then(res => console.log(res))
.catch(err => console.error(err));package main
import (
"fmt"
"net/http"
"io"
)
func main() {
url := "https://app.nex.ai/api/developers/v1/notes"
req, _ := http.NewRequest("GET", url, nil)
req.Header.Add("Authorization", "<api-key>")
res, _ := http.DefaultClient.Do(req)
defer res.Body.Close()
body, _ := io.ReadAll(res.Body)
fmt.Println(string(body))
}{
"data": [
{
"id": "900",
"title": "Meeting notes",
"content": "Discussed Q3 roadmap...",
"entity_id": "1001",
"created_by": "developer_api",
"created_at": "2024-01-15T10:00:00Z"
}
]
}{
"code": 123,
"message": "<string>"
}{
"code": 123,
"message": "<string>"
}{
"code": 123,
"message": "<string>"
}Authorizations
API key for authentication (format: "Bearer YOUR_API_KEY")
Query Parameters
Filter by associated record ID
Last modified on March 26, 2026
⌘I