curl --request POST \
--url 'https://api.nsr.stateset.com/api/v1/beliefs/support' \
--header "X-API-Key: $STATESET_NSR_API_KEY" \
--header 'Content-Type: application/json' \
--data '{
"proposition": "socrates_is_mortal",
"source": "inference",
"strength": 0.3
}'
{
"change": 1.5,
"new_confidence": 7.5,
"previous_confidence": 7.5,
"proposition": "string"
}
Support a belief (increase confidence)
Required scope: write
POST
/
api
/
v1
/
beliefs
/
support
curl --request POST \
--url 'https://api.nsr.stateset.com/api/v1/beliefs/support' \
--header "X-API-Key: $STATESET_NSR_API_KEY" \
--header 'Content-Type: application/json' \
--data '{
"proposition": "socrates_is_mortal",
"source": "inference",
"strength": 0.3
}'
{
"change": 1.5,
"new_confidence": 7.5,
"previous_confidence": 7.5,
"proposition": "string"
}
Required scope:
write
Request body
ModifyBeliefRequest
string
required
The proposition to modify
string
Source of the evidence
number (float)
required
Strength of the support/contradiction (0.0 to 1.0)
Response
ModifyBeliefResponse
number (float)
required
number (float)
required
number (float)
required
string
required
Status codes
| Code | Meaning |
|---|---|
200 | Belief supported |
401 | Unauthorized — missing or invalid credentials |
403 | Forbidden — the key/token lacks the required scope |
404 | Belief not found |
429 | Rate limited — see Retry-After / X-RateLimit-Reset |
curl --request POST \
--url 'https://api.nsr.stateset.com/api/v1/beliefs/support' \
--header "X-API-Key: $STATESET_NSR_API_KEY" \
--header 'Content-Type: application/json' \
--data '{
"proposition": "socrates_is_mortal",
"source": "inference",
"strength": 0.3
}'
{
"change": 1.5,
"new_confidence": 7.5,
"previous_confidence": 7.5,
"proposition": "string"
}
Last modified on August 31, 2026