> ## Documentation Index
> Fetch the complete documentation index at: https://docs.stateset.com/llms.txt
> Use this file to discover all available pages before exploring further.

# Check if two beliefs are conflicting

> **Required scope:** write

**Required scope:** `write`

### Request body

`CheckConflictsRequest`

<ParamField body="prop1" type="string" required>
  First proposition
</ParamField>

<ParamField body="prop2" type="string" required>
  Second proposition
</ParamField>

### Response

`ConflictsResponse`

<ResponseField name="conflicts" type="boolean" required />

<ResponseField name="explanation" type="string" required />

<ResponseField name="prop1" type="string" required />

<ResponseField name="prop2" type="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 |

<RequestExample>
  ```bash cURL theme={null}
  curl --request POST \
    --url 'https://api.nsr.stateset.com/api/v1/beliefs/conflicts' \
    --header 'X-API-Key: YOUR_API_KEY' \
    --header 'Content-Type: application/json' \
    --data '{
    "prop1": "string",
    "prop2": "string"
  }'
  ```
</RequestExample>

<ResponseExample>
  ```json 200 theme={null}
  {
    "conflicts": true,
    "explanation": "string",
    "prop1": "string",
    "prop2": "string"
  }
  ```
</ResponseExample>
