Skip to main content
GET
/
v3
/
qualityProfiles
/
{contentGroupId}
Get Quality Profile by Content Group
curl --request GET \
  --url https://eu.phrase.com/quality-evaluator/v3/qualityProfiles/{contentGroupId} \
  --header 'Authorization: Bearer <token>'
{
  "rules": [
    {
      "id": "rule-abc123",
      "text": "The translation must not use passive voice.",
      "locales": []
    },
    {
      "id": "rule-def456",
      "text": "The translation must use formal language.",
      "locales": [
        "de_de",
        "de_at"
      ]
    }
  ]
}

Authorizations

Authorization
string
header
required

Use a Bearer token obtained from Phrase Platform authentication. See the Authentication guide for details on how to obtain a token.

Path Parameters

contentGroupId
string
required

ID of the Content Group whose Quality Profile is to be retrieved.

Example:

"cg-abc123"

Query Parameters

locale
string

When provided, only rules that apply to the given locale are returned. When absent, all rules for the Content Group are returned regardless of locale restrictions. Locale code compatible with Phrase locale format. Case-insensitive, supports both underscore and hyphen separators (e.g., en_us, en-US, de_de, fr_fr).

Example:

"en_us"

Response

Quality Profile resolved successfully.

Quality Profile resolved from a Content Group — a list of active AI-check-enabled rules.

rules
object[]
required

Active rules with AI check support enabled for the given Content Group.