Skip to main content
GET
/
v1
/
qa-rules
List QA Rules
curl --request GET \
  --url https://api.sigmamind.ai/v1/qa-rules \
  --header 'X-API-Key: <api-key>'
{
  "data": [
    {
      "qaRuleId": "rule_YYdKgw1masomMfe8",
      "workspaceId": "org_V6eZ2zg8ziDx5pft",
      "ruleName": "Tone & Professionalism Check",
      "ruleDescription": "Ensures agents maintain a professional and empathetic tone throughout the conversation.",
      "agents": [
        {
          "name": "New AI Agent",
          "agentId": "agent_D5D0p7TUs66TTAEAx",
          "status": "Live"
        }
      ],
      "evaluationCriteria": "Evaluate whether agent greeted the customer by name, avoided interrupting, and closed with a resolution summary.",
      "expectedValue": true
    }
  ],
  "page": 123,
  "size": 123,
  "totalCount": 123,
  "totalPages": 123,
  "hasNext": true,
  "hasPrevious": true
}

Documentation Index

Fetch the complete documentation index at: https://docs.sigmamind.ai/llms.txt

Use this file to discover all available pages before exploring further.

Authorizations

X-API-Key
string
header
required

Authenticate every request by passing your API key in the X-API-Key header. To get your key, go to Dashboard → API Keys and create or copy your Production API key.

Query Parameters

page
integer<int32>
default:0

The page number to retrieve, starting from 0.

size
integer<int32>
default:10

The number of results to return per page.

Response

OK

data
object[]
page
integer<int32>
size
integer<int32>
totalCount
integer<int64>
totalPages
integer<int32>
hasNext
boolean
hasPrevious
boolean