List sender-scoped keyword exclusions with status filtering.
List Keyword Exclusions
Summary
List sender-scoped keyword exclusions with status filtering.
Prerequisites
- Authorization: Bearer w91_live_xxx
- Content-Type: application/json for JSON requests
GET
/api/v3/custom-boards/keyword-exclusionsList keyword exclusions for the resolved sender.
| Parameter | Type | Required | Description |
|---|---|---|---|
senderId | string | Optional | WhatsApp registered sender phone number. |
phoneNumberId | string | Optional | Meta WhatsApp Business phone-number ID. Use instead of senderId when available. |
status | string | Optional | ACTIVE, INACTIVE, DELETED, or ALL. Default ALL. |
cURL
curl -X GET "https://graph.whats91.com/api/v3/custom-boards/keyword-exclusions?senderId=913614068784&status=ACTIVE" \
-H "Authorization: Bearer w91_live_xxx"200 OK
{
"success": true,
"message": "Custom board keyword exclusions retrieved",
"data": {
"senderId": "913614068784",
"phoneNumberId": "486728586446799",
"keywordExclusions": [
{
"uid": "cbke_abc123",
"senderId": "913614068784",
"senderPhoneNumber": "913614068784",
"phoneNumberId": "486728586446799",
"boardUid": "external-board-1",
"keyword": "trackrod",
"normalizedKeyword": "trackrod",
"matchMode": "WHOLE_WORD",
"priority": 10,
"status": "ACTIVE",
"createdAt": "2026-06-28T08:00:00.000Z",
"updatedAt": "2026-06-28T08:00:00.000Z"
}
]
},
"metadata": {
"apiVersion": "v3",
"requestId": "request-uuid"
}
}SDK Examples
Use these examples as starting points for server-side implementations.
cURL
curl -X GET "https://graph.whats91.com/api/v3/custom-boards/keyword-exclusions" \
-H "Authorization: Bearer w91_live_xxx"Node.js
const response = await fetch("https://graph.whats91.com/api/v3/custom-boards/keyword-exclusions", {
method: "GET",
headers: {
"Authorization": "Bearer w91_live_xxx"
}
});
const data = await response.json();
console.log(data);PHP
$ch = curl_init("https://graph.whats91.com/api/v3/custom-boards/keyword-exclusions");
curl_setopt_array($ch, [
CURLOPT_CUSTOMREQUEST => "GET",
CURLOPT_RETURNTRANSFER => true,
CURLOPT_HTTPHEADER => [
"Authorization: Bearer w91_live_xxx"
]
]);
$response = curl_exec($ch);
curl_close($ch);
echo $response;Python
import requests
response = requests.request(
"GET",
"https://graph.whats91.com/api/v3/custom-boards/keyword-exclusions",
headers={
"Authorization": "Bearer w91_live_xxx",
}
)
print(response.json())C#
using var client = new HttpClient();
client.DefaultRequestHeaders.Add("Authorization", "Bearer w91_live_xxx");
var request = new HttpRequestMessage(HttpMethod.Get, "https://graph.whats91.com/api/v3/custom-boards/keyword-exclusions");
var response = await client.SendAsync(request);
Console.WriteLine(await response.Content.ReadAsStringAsync());Related APIs
Custom Boards
Let an external board take over a WhatsApp conversation without duplicate Whats91 automation replies.
Create Keyword Exclusion
Create a sender-scoped keyword exclusion that suppresses Whats91 internal automation.
Update Keyword Exclusion
Change the board, keyword, match mode, priority, or status of an existing exclusion.
Delete Keyword Exclusion
Remove a keyword exclusion from active matching.