curl --request POST \
--url 'https://api.nsr.stateset.com/api/v1/beliefs/conflicts' \
--header "X-API-Key: $STATESET_NSR_API_KEY" \
--header 'Content-Type: application/json' \
--data '{
"prop1": "string",
"prop2": "string"
}'
{
"conflicts": true,
"explanation": "string",
"prop1": "string",
"prop2": "string"
}
Check if two beliefs are conflicting
Required scope: write
POST
/
api
/
v1
/
beliefs
/
conflicts
curl --request POST \
--url 'https://api.nsr.stateset.com/api/v1/beliefs/conflicts' \
--header "X-API-Key: $STATESET_NSR_API_KEY" \
--header 'Content-Type: application/json' \
--data '{
"prop1": "string",
"prop2": "string"
}'
{
"conflicts": true,
"explanation": "string",
"prop1": "string",
"prop2": "string"
}
Required scope:
write
Request body
CheckConflictsRequest
string
required
First proposition
string
required
Second proposition
Response
ConflictsResponse
boolean
required
string
required
string
required
string
required
Status codes
| Code | Meaning |
|---|---|
200 | Conflict check result |
401 | Unauthorized — missing or invalid credentials |
403 | Forbidden — the key/token lacks the required scope |
429 | Rate limited — see Retry-After / X-RateLimit-Reset |
curl --request POST \
--url 'https://api.nsr.stateset.com/api/v1/beliefs/conflicts' \
--header "X-API-Key: $STATESET_NSR_API_KEY" \
--header 'Content-Type: application/json' \
--data '{
"prop1": "string",
"prop2": "string"
}'
{
"conflicts": true,
"explanation": "string",
"prop1": "string",
"prop2": "string"
}
Last modified on August 31, 2026