List Custom Notification Rules
curl --request GET \
--url https://app.nex.ai/api/developers/v1/notifications/custom \
--header 'Authorization: <api-key>'import requests
url = "https://app.nex.ai/api/developers/v1/notifications/custom"
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/notifications/custom', 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/notifications/custom"
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))
}{
"rules": [
{
"id": "<string>",
"name": "<string>",
"prompt": "<string>",
"is_enabled": true,
"schedule": "<string>",
"created_at": "2023-11-07T05:31:56Z"
}
]
}{
"code": 123,
"message": "<string>"
}{
"code": 123,
"message": "<string>"
}Notifications
List Custom Notification Rules
List all custom AI notification rules configured for the authenticated user.
GET
/
v1
/
notifications
/
custom
List Custom Notification Rules
curl --request GET \
--url https://app.nex.ai/api/developers/v1/notifications/custom \
--header 'Authorization: <api-key>'import requests
url = "https://app.nex.ai/api/developers/v1/notifications/custom"
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/notifications/custom', 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/notifications/custom"
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))
}{
"rules": [
{
"id": "<string>",
"name": "<string>",
"prompt": "<string>",
"is_enabled": true,
"schedule": "<string>",
"created_at": "2023-11-07T05:31:56Z"
}
]
}{
"code": 123,
"message": "<string>"
}{
"code": 123,
"message": "<string>"
}Authorizations
API key for authentication (format: "Bearer YOUR_API_KEY")
Response
List of custom notification rules
List of custom notification rules
Hide child attributes
Hide child attributes
Unique rule ID
Human-readable rule name
The natural language prompt describing the notification condition
Whether the rule is currently active
Cron-style schedule for rule evaluation
When the rule was created
Last modified on March 24, 2026
⌘I