Language Detection API Client for .NET

Detects language of the given text. Returns detected language codes and scores.
Installation
Using the .NET Core command-line interface (CLI) tools:
dotnet add package DetectLanguage
Using the NuGet Command Line Interface (CLI):
nuget install DetectLanguage
Using the Package Manager Console:
Install-Package DetectLanguage
From within Visual Studio:
- Open the Solution Explorer.
- Right-click on a project within your solution.
- Click on Manage NuGet Packages...
- Click on the Browse tab and search for "DetectLanguage".
- Click on the DetectLanguage package, select the appropriate version in the
right-tab and click Install.
Documentation
For a comprehensive list of examples, check out the API documentation.
Configuration
Before using Detect Language API client you have to setup your personal API key.
You can get it for free by signing up at https://detectlanguage.com
using DetectLanguage;
DetectLanguageClient client = new DetectLanguageClient("YOUR API KEY");
Usage
Language detection
DetectResult[] results = await client.DetectAsync("Buenos dias seƱor");
Single language code detection
If you need just a language code you can use DetectCodeAsync
. It returns first detected language code.
string languageCode = await client.DetectCodeAsync("Buenos dias seƱor");
Batch detection
It is possible to detect language of several texts with one request.
This method is significantly faster than doing one request per text.
To use batch detection just pass multiple texts to BatchDetectAsync
method.
string[] texts = {"labas rytas", "good morning"};
DetectResult[][] results = await client.BatchDetectAsync(texts);
Getting your account status
UserStatus userStatus = await client.GetUserStatusAsync();
Getting list supported languages
Language[] languages = await client.GetLanguagesAsync();
License
Detect Language API .NET Client is free software, and may be redistributed under the terms specified in the MIT-LICENSE file.