openapi: 3.0.3 info: title: SYSTRAN Translate & NLP Corpus Supported Languages API description: 'RESTful API for SYSTRAN machine translation and natural language processing. The Translate API (server https://api-translate.systran.net) covers text, HTML, and file translation, supported-language discovery, user dictionaries, corpora (translation memory), and translation profiles. The SYSTRAN.io / Platform NLP surface (server https://api-platform.systran.net) adds language detection, morphology, tokenization, segmentation, and named entity recognition. Authenticate with an API key passed as the `key` query parameter or an `Authorization` header. Endpoint status: paths under /translation, /resources, and /profiles are grounded in the published docs.systran.net Translate API reference (confirmed). Paths under /nlp are modeled from the historical SYSTRAN.io / Platform NLP service and marked with `x-endpoint-status: modeled`.' version: '1.0' contact: name: SYSTRAN url: https://docs.systran.net/translateAPI/en/ termsOfService: https://www.systran.net servers: - url: https://api-translate.systran.net description: SYSTRAN Translate API (translation, dictionary, corpus, profiles) - url: https://api-platform.systran.net description: SYSTRAN.io / Platform NLP surface (language detection and NLP) security: - ApiKeyQuery: [] - ApiKeyHeader: [] tags: - name: Supported Languages paths: /translation/supportedLanguages: get: tags: - Supported Languages operationId: getSupportedLanguages summary: List supported language pairs parameters: - name: source in: query schema: type: string - name: target in: query schema: type: string responses: '200': description: Supported language pairs. /translation/supportedFeatures: get: tags: - Supported Languages operationId: getSupportedFeatures summary: List available model options by language pair responses: '200': description: Supported features. /translation/supportedFormats: get: tags: - Supported Languages operationId: getSupportedFormats summary: List supported input/output formats responses: '200': description: Supported formats. /translation/supportedSelectors: get: tags: - Supported Languages operationId: getSupportedSelectors summary: List available domains, owners, and sizes responses: '200': description: Supported selectors. components: securitySchemes: ApiKeyQuery: type: apiKey in: query name: key description: SYSTRAN API key passed as the `key` query parameter. ApiKeyHeader: type: apiKey in: header name: Authorization description: 'API key passed as an Authorization header, e.g. `Authorization: Key YOUR_API_KEY`.'