v1

latestOpenAPI 3.0.3LILT Platform Terms and Conditions2026-07-26651658.7 KB
Domains

Retrieve Domains

Retrieve a list of Domains associated with the Organization's API key.

Each Domain contains potentially 4 Arrays related to the Domain these are as follows:

  • models - the list of models associated with the Domain
  • filterConfigs - the list of filterConfigs associated with the Domain
  • domainMetadata - the list of Domain specific options that have been configured for this domain.
get/v3/domains

Headers

keystring required

the ApiKey used to authenticate with LILT, used to look up the Organization's domain information.

Response

OK

sizeinteger required

The total number of domains in the list.

Example response

{
  "items": [
    {
      "domainId": 123,
      "domainName": "Example Domain",
      "models": [
        {
          "id": 456,
          "name": "Example Model",
          "provider": "Google Translate",
          "status": "Active",
          "srcLang": "en",
          "trgLang": "es",
          "srcLocale": "US",
          "trgLocale": "ES"
        }
      ],
      "filterConfigs": [
        {
          "id": 789,
          "isDefault": true,
          "filterConfig": "Example Filter Config",
          "filterName": "Example Filter",
          "configName": "Example Config Name",
          "configDescription": "Example Config Description",
          "subfilters": "Example Subfilters",
          "segmentationConfigSetting": "SENTENCE",
          "srx": "Example SRX",
          "segmentationConfigName": "Example Segmentation Config",
          "domains": [
            {
              "id": 101,
              "name": "Example Domain Ref"
            }
          ],
          "createdAt": "2024-01-01T00:00:00Z",
          "updatedAt": "2024-01-02T00:00:00Z",
          "default": true
        }
      ],
      "domainMetadata": [
        {
          "id": 131,
          "key": "Example Key",
          "value": "Example Value"
        }
      ]
    }
  ],
  "size": 1
}