Anise Text Analyzer API Documentation

SemanticSimilarity

similarityScore

To get the semantic similarity between two texts


/similarityscore

Usage and SDK Samples

curl -X POST -H "apieco-key: [[apiKey]]" "https://api.apieco.ir/anise-text/similarityscore?first_text=&second_text="
import io.swagger.client.*;
import io.swagger.client.auth.*;
import io.swagger.client.model.*;
import io.swagger.client.api.SemanticSimilarityApi;

import java.io.File;
import java.util.*;

public class SemanticSimilarityApiExample {

    public static void main(String[] args) {
        ApiClient defaultClient = Configuration.getDefaultApiClient();
        
        // Configure API key authorization: apieco-key
        ApiKeyAuth apieco-key = (ApiKeyAuth) defaultClient.getAuthentication("apieco-key");
        apieco-key.setApiKey("YOUR API KEY");
        // Uncomment the following line to set a prefix for the API key, e.g. "Token" (defaults to null)
        //apieco-key.setApiKeyPrefix("Token");

        SemanticSimilarityApi apiInstance = new SemanticSimilarityApi();
        String apiecoKey = apiecoKey_example; // String | 
        String firstText = firstText_example; // String | First text to be compared with the second text
        String secondText = secondText_example; // String | Second text to be compared with the first text
        try {
            inline_response_200_1 result = apiInstance.similarityScore(apiecoKey, firstText, secondText);
            System.out.println(result);
        } catch (ApiException e) {
            System.err.println("Exception when calling SemanticSimilarityApi#similarityScore");
            e.printStackTrace();
        }
    }
}
import io.swagger.client.api.SemanticSimilarityApi;

public class SemanticSimilarityApiExample {

    public static void main(String[] args) {
        SemanticSimilarityApi apiInstance = new SemanticSimilarityApi();
        String apiecoKey = apiecoKey_example; // String | 
        String firstText = firstText_example; // String | First text to be compared with the second text
        String secondText = secondText_example; // String | Second text to be compared with the first text
        try {
            inline_response_200_1 result = apiInstance.similarityScore(apiecoKey, firstText, secondText);
            System.out.println(result);
        } catch (ApiException e) {
            System.err.println("Exception when calling SemanticSimilarityApi#similarityScore");
            e.printStackTrace();
        }
    }
}
Configuration *apiConfig = [Configuration sharedConfig];

// Configure API key authorization: (authentication scheme: apieco-key)
[apiConfig setApiKey:@"YOUR_API_KEY" forApiKeyIdentifier:@"apieco-key"];
// Uncomment below to setup prefix (e.g. Bearer) for API key, if needed
//[apiConfig setApiKeyPrefix:@"Bearer" forApiKeyIdentifier:@"apieco-key"];

String *apiecoKey = apiecoKey_example; // 
String *firstText = firstText_example; // First text to be compared with the second text
String *secondText = secondText_example; // Second text to be compared with the first text

SemanticSimilarityApi *apiInstance = [[SemanticSimilarityApi alloc] init];

// 
[apiInstance similarityScoreWith:apiecoKey
    firstText:firstText
    secondText:secondText
              completionHandler: ^(inline_response_200_1 output, NSError* error) {
                            if (output) {
                                NSLog(@"%@", output);
                            }
                            if (error) {
                                NSLog(@"Error: %@", error);
                            }
                        }];
var AniseTextAnalyzerApiDocumentation = require('anise_text_analyzer_api_documentation');
var defaultClient = AniseTextAnalyzerApiDocumentation.ApiClient.instance;

// Configure API key authorization: apieco-key
var apieco-key = defaultClient.authentications['apieco-key'];
apieco-key.apiKey = "YOUR API KEY"
// Uncomment the following line to set a prefix for the API key, e.g. "Token" (defaults to null)
//apieco-key.apiKeyPrefix['apieco-key'] = "Token"

var api = new AniseTextAnalyzerApiDocumentation.SemanticSimilarityApi()

var apiecoKey = apiecoKey_example; // {String} 

var firstText = firstText_example; // {String} First text to be compared with the second text

var secondText = secondText_example; // {String} Second text to be compared with the first text


var callback = function(error, data, response) {
  if (error) {
    console.error(error);
  } else {
    console.log('API called successfully. Returned data: ' + data);
  }
};
api.similarityScore(apiecoKey, firstText, secondText, callback);
using System;
using System.Diagnostics;
using IO.Swagger.Api;
using IO.Swagger.Client;
using IO.Swagger.Model;

namespace Example
{
    public class similarityScoreExample
    {
        public void main()
        {
            
            // Configure API key authorization: apieco-key
            Configuration.Default.ApiKey.Add("apieco-key", "YOUR_API_KEY");
            // Uncomment below to setup prefix (e.g. Bearer) for API key, if needed
            // Configuration.Default.ApiKeyPrefix.Add("apieco-key", "Bearer");

            var apiInstance = new SemanticSimilarityApi();
            var apiecoKey = apiecoKey_example;  // String | 
            var firstText = firstText_example;  // String | First text to be compared with the second text
            var secondText = secondText_example;  // String | Second text to be compared with the first text

            try
            {
                // 
                inline_response_200_1 result = apiInstance.similarityScore(apiecoKey, firstText, secondText);
                Debug.WriteLine(result);
            }
            catch (Exception e)
            {
                Debug.Print("Exception when calling SemanticSimilarityApi.similarityScore: " + e.Message );
            }
        }
    }
}
<?php
require_once(__DIR__ . '/vendor/autoload.php');

// Configure API key authorization: apieco-key
Swagger\Client\Configuration::getDefaultConfiguration()->setApiKey('apieco-key', 'YOUR_API_KEY');
// Uncomment below to setup prefix (e.g. Bearer) for API key, if needed
// Swagger\Client\Configuration::getDefaultConfiguration()->setApiKeyPrefix('apieco-key', 'Bearer');

$api_instance = new Swagger\Client\Api\SemanticSimilarityApi();
$apiecoKey = apiecoKey_example; // String | 
$firstText = firstText_example; // String | First text to be compared with the second text
$secondText = secondText_example; // String | Second text to be compared with the first text

try {
    $result = $api_instance->similarityScore($apiecoKey, $firstText, $secondText);
    print_r($result);
} catch (Exception $e) {
    echo 'Exception when calling SemanticSimilarityApi->similarityScore: ', $e->getMessage(), PHP_EOL;
}
?>
use Data::Dumper;
use WWW::SwaggerClient::Configuration;
use WWW::SwaggerClient::SemanticSimilarityApi;

# Configure API key authorization: apieco-key
$WWW::SwaggerClient::Configuration::api_key->{'apieco-key'} = 'YOUR_API_KEY';
# uncomment below to setup prefix (e.g. Bearer) for API key, if needed
#$WWW::SwaggerClient::Configuration::api_key_prefix->{'apieco-key'} = "Bearer";

my $api_instance = WWW::SwaggerClient::SemanticSimilarityApi->new();
my $apiecoKey = apiecoKey_example; # String | 
my $firstText = firstText_example; # String | First text to be compared with the second text
my $secondText = secondText_example; # String | Second text to be compared with the first text

eval { 
    my $result = $api_instance->similarityScore(apiecoKey => $apiecoKey, firstText => $firstText, secondText => $secondText);
    print Dumper($result);
};
if ($@) {
    warn "Exception when calling SemanticSimilarityApi->similarityScore: $@\n";
}
from __future__ import print_statement
import time
import swagger_client
from swagger_client.rest import ApiException
from pprint import pprint

# Configure API key authorization: apieco-key
swagger_client.configuration.api_key['apieco-key'] = 'YOUR_API_KEY'
# Uncomment below to setup prefix (e.g. Bearer) for API key, if needed
# swagger_client.configuration.api_key_prefix['apieco-key'] = 'Bearer'

# create an instance of the API class
api_instance = swagger_client.SemanticSimilarityApi()
apiecoKey = apiecoKey_example # String | 
firstText = firstText_example # String | First text to be compared with the second text
secondText = secondText_example # String | Second text to be compared with the first text

try: 
    # 
    api_response = api_instance.similarity_score(apiecoKey, firstText, secondText)
    pprint(api_response)
except ApiException as e:
    print("Exception when calling SemanticSimilarityApi->similarityScore: %s\n" % e)

Parameters

Header parameters
Name Description
apieco-key*
String
Required
Query parameters
Name Description
first_text*
String
First text to be compared with the second text
Required
second_text*
String
Second text to be compared with the first text
Required

Responses

Status: 200 - Successful

Status: 405 - Invalid input


SentimentAnalysis

sentimentAnalysis

To get the sentiment of the input text


/sentimentanalysis

Usage and SDK Samples

curl -X POST -H "apieco-key: [[apiKey]]" "https://api.apieco.ir/anise-text/sentimentanalysis?text="
import io.swagger.client.*;
import io.swagger.client.auth.*;
import io.swagger.client.model.*;
import io.swagger.client.api.SentimentAnalysisApi;

import java.io.File;
import java.util.*;

public class SentimentAnalysisApiExample {

    public static void main(String[] args) {
        ApiClient defaultClient = Configuration.getDefaultApiClient();
        
        // Configure API key authorization: apieco-key
        ApiKeyAuth apieco-key = (ApiKeyAuth) defaultClient.getAuthentication("apieco-key");
        apieco-key.setApiKey("YOUR API KEY");
        // Uncomment the following line to set a prefix for the API key, e.g. "Token" (defaults to null)
        //apieco-key.setApiKeyPrefix("Token");

        SentimentAnalysisApi apiInstance = new SentimentAnalysisApi();
        String apiecoKey = apiecoKey_example; // String | 
        String text = text_example; // String | The input text
        try {
            inline_response_200_2 result = apiInstance.sentimentAnalysis(apiecoKey, text);
            System.out.println(result);
        } catch (ApiException e) {
            System.err.println("Exception when calling SentimentAnalysisApi#sentimentAnalysis");
            e.printStackTrace();
        }
    }
}
import io.swagger.client.api.SentimentAnalysisApi;

public class SentimentAnalysisApiExample {

    public static void main(String[] args) {
        SentimentAnalysisApi apiInstance = new SentimentAnalysisApi();
        String apiecoKey = apiecoKey_example; // String | 
        String text = text_example; // String | The input text
        try {
            inline_response_200_2 result = apiInstance.sentimentAnalysis(apiecoKey, text);
            System.out.println(result);
        } catch (ApiException e) {
            System.err.println("Exception when calling SentimentAnalysisApi#sentimentAnalysis");
            e.printStackTrace();
        }
    }
}
Configuration *apiConfig = [Configuration sharedConfig];

// Configure API key authorization: (authentication scheme: apieco-key)
[apiConfig setApiKey:@"YOUR_API_KEY" forApiKeyIdentifier:@"apieco-key"];
// Uncomment below to setup prefix (e.g. Bearer) for API key, if needed
//[apiConfig setApiKeyPrefix:@"Bearer" forApiKeyIdentifier:@"apieco-key"];

String *apiecoKey = apiecoKey_example; // 
String *text = text_example; // The input text

SentimentAnalysisApi *apiInstance = [[SentimentAnalysisApi alloc] init];

// 
[apiInstance sentimentAnalysisWith:apiecoKey
    text:text
              completionHandler: ^(inline_response_200_2 output, NSError* error) {
                            if (output) {
                                NSLog(@"%@", output);
                            }
                            if (error) {
                                NSLog(@"Error: %@", error);
                            }
                        }];
var AniseTextAnalyzerApiDocumentation = require('anise_text_analyzer_api_documentation');
var defaultClient = AniseTextAnalyzerApiDocumentation.ApiClient.instance;

// Configure API key authorization: apieco-key
var apieco-key = defaultClient.authentications['apieco-key'];
apieco-key.apiKey = "YOUR API KEY"
// Uncomment the following line to set a prefix for the API key, e.g. "Token" (defaults to null)
//apieco-key.apiKeyPrefix['apieco-key'] = "Token"

var api = new AniseTextAnalyzerApiDocumentation.SentimentAnalysisApi()

var apiecoKey = apiecoKey_example; // {String} 

var text = text_example; // {String} The input text


var callback = function(error, data, response) {
  if (error) {
    console.error(error);
  } else {
    console.log('API called successfully. Returned data: ' + data);
  }
};
api.sentimentAnalysis(apiecoKey, text, callback);
using System;
using System.Diagnostics;
using IO.Swagger.Api;
using IO.Swagger.Client;
using IO.Swagger.Model;

namespace Example
{
    public class sentimentAnalysisExample
    {
        public void main()
        {
            
            // Configure API key authorization: apieco-key
            Configuration.Default.ApiKey.Add("apieco-key", "YOUR_API_KEY");
            // Uncomment below to setup prefix (e.g. Bearer) for API key, if needed
            // Configuration.Default.ApiKeyPrefix.Add("apieco-key", "Bearer");

            var apiInstance = new SentimentAnalysisApi();
            var apiecoKey = apiecoKey_example;  // String | 
            var text = text_example;  // String | The input text

            try
            {
                // 
                inline_response_200_2 result = apiInstance.sentimentAnalysis(apiecoKey, text);
                Debug.WriteLine(result);
            }
            catch (Exception e)
            {
                Debug.Print("Exception when calling SentimentAnalysisApi.sentimentAnalysis: " + e.Message );
            }
        }
    }
}
<?php
require_once(__DIR__ . '/vendor/autoload.php');

// Configure API key authorization: apieco-key
Swagger\Client\Configuration::getDefaultConfiguration()->setApiKey('apieco-key', 'YOUR_API_KEY');
// Uncomment below to setup prefix (e.g. Bearer) for API key, if needed
// Swagger\Client\Configuration::getDefaultConfiguration()->setApiKeyPrefix('apieco-key', 'Bearer');

$api_instance = new Swagger\Client\Api\SentimentAnalysisApi();
$apiecoKey = apiecoKey_example; // String | 
$text = text_example; // String | The input text

try {
    $result = $api_instance->sentimentAnalysis($apiecoKey, $text);
    print_r($result);
} catch (Exception $e) {
    echo 'Exception when calling SentimentAnalysisApi->sentimentAnalysis: ', $e->getMessage(), PHP_EOL;
}
?>
use Data::Dumper;
use WWW::SwaggerClient::Configuration;
use WWW::SwaggerClient::SentimentAnalysisApi;

# Configure API key authorization: apieco-key
$WWW::SwaggerClient::Configuration::api_key->{'apieco-key'} = 'YOUR_API_KEY';
# uncomment below to setup prefix (e.g. Bearer) for API key, if needed
#$WWW::SwaggerClient::Configuration::api_key_prefix->{'apieco-key'} = "Bearer";

my $api_instance = WWW::SwaggerClient::SentimentAnalysisApi->new();
my $apiecoKey = apiecoKey_example; # String | 
my $text = text_example; # String | The input text

eval { 
    my $result = $api_instance->sentimentAnalysis(apiecoKey => $apiecoKey, text => $text);
    print Dumper($result);
};
if ($@) {
    warn "Exception when calling SentimentAnalysisApi->sentimentAnalysis: $@\n";
}
from __future__ import print_statement
import time
import swagger_client
from swagger_client.rest import ApiException
from pprint import pprint

# Configure API key authorization: apieco-key
swagger_client.configuration.api_key['apieco-key'] = 'YOUR_API_KEY'
# Uncomment below to setup prefix (e.g. Bearer) for API key, if needed
# swagger_client.configuration.api_key_prefix['apieco-key'] = 'Bearer'

# create an instance of the API class
api_instance = swagger_client.SentimentAnalysisApi()
apiecoKey = apiecoKey_example # String | 
text = text_example # String | The input text

try: 
    # 
    api_response = api_instance.sentiment_analysis(apiecoKey, text)
    pprint(api_response)
except ApiException as e:
    print("Exception when calling SentimentAnalysisApi->sentimentAnalysis: %s\n" % e)

Parameters

Header parameters
Name Description
apieco-key*
String
Required
Query parameters
Name Description
text*
String
The input text
Required

Responses

Status: 200 - Successful

Status: 405 - Invalid input


Status

status

To get the current status on the api


/synonyms

Usage and SDK Samples

curl -X GET -H "apieco-key: [[apiKey]]" "https://api.apieco.ir/anise-text/synonyms"
import io.swagger.client.*;
import io.swagger.client.auth.*;
import io.swagger.client.model.*;
import io.swagger.client.api.StatusApi;

import java.io.File;
import java.util.*;

public class StatusApiExample {

    public static void main(String[] args) {
        ApiClient defaultClient = Configuration.getDefaultApiClient();
        
        // Configure API key authorization: apieco-key
        ApiKeyAuth apieco-key = (ApiKeyAuth) defaultClient.getAuthentication("apieco-key");
        apieco-key.setApiKey("YOUR API KEY");
        // Uncomment the following line to set a prefix for the API key, e.g. "Token" (defaults to null)
        //apieco-key.setApiKeyPrefix("Token");

        StatusApi apiInstance = new StatusApi();
        String apiecoKey = apiecoKey_example; // String | 
        try {
            inline_response_200 result = apiInstance.status(apiecoKey);
            System.out.println(result);
        } catch (ApiException e) {
            System.err.println("Exception when calling StatusApi#status");
            e.printStackTrace();
        }
    }
}
import io.swagger.client.api.StatusApi;

public class StatusApiExample {

    public static void main(String[] args) {
        StatusApi apiInstance = new StatusApi();
        String apiecoKey = apiecoKey_example; // String | 
        try {
            inline_response_200 result = apiInstance.status(apiecoKey);
            System.out.println(result);
        } catch (ApiException e) {
            System.err.println("Exception when calling StatusApi#status");
            e.printStackTrace();
        }
    }
}
Configuration *apiConfig = [Configuration sharedConfig];

// Configure API key authorization: (authentication scheme: apieco-key)
[apiConfig setApiKey:@"YOUR_API_KEY" forApiKeyIdentifier:@"apieco-key"];
// Uncomment below to setup prefix (e.g. Bearer) for API key, if needed
//[apiConfig setApiKeyPrefix:@"Bearer" forApiKeyIdentifier:@"apieco-key"];

String *apiecoKey = apiecoKey_example; // 

StatusApi *apiInstance = [[StatusApi alloc] init];

// 
[apiInstance statusWith:apiecoKey
              completionHandler: ^(inline_response_200 output, NSError* error) {
                            if (output) {
                                NSLog(@"%@", output);
                            }
                            if (error) {
                                NSLog(@"Error: %@", error);
                            }
                        }];
var AniseTextAnalyzerApiDocumentation = require('anise_text_analyzer_api_documentation');
var defaultClient = AniseTextAnalyzerApiDocumentation.ApiClient.instance;

// Configure API key authorization: apieco-key
var apieco-key = defaultClient.authentications['apieco-key'];
apieco-key.apiKey = "YOUR API KEY"
// Uncomment the following line to set a prefix for the API key, e.g. "Token" (defaults to null)
//apieco-key.apiKeyPrefix['apieco-key'] = "Token"

var api = new AniseTextAnalyzerApiDocumentation.StatusApi()

var apiecoKey = apiecoKey_example; // {String} 


var callback = function(error, data, response) {
  if (error) {
    console.error(error);
  } else {
    console.log('API called successfully. Returned data: ' + data);
  }
};
api.status(apiecoKey, callback);
using System;
using System.Diagnostics;
using IO.Swagger.Api;
using IO.Swagger.Client;
using IO.Swagger.Model;

namespace Example
{
    public class statusExample
    {
        public void main()
        {
            
            // Configure API key authorization: apieco-key
            Configuration.Default.ApiKey.Add("apieco-key", "YOUR_API_KEY");
            // Uncomment below to setup prefix (e.g. Bearer) for API key, if needed
            // Configuration.Default.ApiKeyPrefix.Add("apieco-key", "Bearer");

            var apiInstance = new StatusApi();
            var apiecoKey = apiecoKey_example;  // String | 

            try
            {
                // 
                inline_response_200 result = apiInstance.status(apiecoKey);
                Debug.WriteLine(result);
            }
            catch (Exception e)
            {
                Debug.Print("Exception when calling StatusApi.status: " + e.Message );
            }
        }
    }
}
<?php
require_once(__DIR__ . '/vendor/autoload.php');

// Configure API key authorization: apieco-key
Swagger\Client\Configuration::getDefaultConfiguration()->setApiKey('apieco-key', 'YOUR_API_KEY');
// Uncomment below to setup prefix (e.g. Bearer) for API key, if needed
// Swagger\Client\Configuration::getDefaultConfiguration()->setApiKeyPrefix('apieco-key', 'Bearer');

$api_instance = new Swagger\Client\Api\StatusApi();
$apiecoKey = apiecoKey_example; // String | 

try {
    $result = $api_instance->status($apiecoKey);
    print_r($result);
} catch (Exception $e) {
    echo 'Exception when calling StatusApi->status: ', $e->getMessage(), PHP_EOL;
}
?>
use Data::Dumper;
use WWW::SwaggerClient::Configuration;
use WWW::SwaggerClient::StatusApi;

# Configure API key authorization: apieco-key
$WWW::SwaggerClient::Configuration::api_key->{'apieco-key'} = 'YOUR_API_KEY';
# uncomment below to setup prefix (e.g. Bearer) for API key, if needed
#$WWW::SwaggerClient::Configuration::api_key_prefix->{'apieco-key'} = "Bearer";

my $api_instance = WWW::SwaggerClient::StatusApi->new();
my $apiecoKey = apiecoKey_example; # String | 

eval { 
    my $result = $api_instance->status(apiecoKey => $apiecoKey);
    print Dumper($result);
};
if ($@) {
    warn "Exception when calling StatusApi->status: $@\n";
}
from __future__ import print_statement
import time
import swagger_client
from swagger_client.rest import ApiException
from pprint import pprint

# Configure API key authorization: apieco-key
swagger_client.configuration.api_key['apieco-key'] = 'YOUR_API_KEY'
# Uncomment below to setup prefix (e.g. Bearer) for API key, if needed
# swagger_client.configuration.api_key_prefix['apieco-key'] = 'Bearer'

# create an instance of the API class
api_instance = swagger_client.StatusApi()
apiecoKey = apiecoKey_example # String | 

try: 
    # 
    api_response = api_instance.status(apiecoKey)
    pprint(api_response)
except ApiException as e:
    print("Exception when calling StatusApi->status: %s\n" % e)

Parameters

Header parameters
Name Description
apieco-key*
String
Required

Responses

Status: 200 - Successful

Status: 405 - Invalid input


TopicTagging

topicTagging

To get the most related topics to the input text


/topictagging

Usage and SDK Samples

curl -X POST -H "apieco-key: [[apiKey]]" "https://api.apieco.ir/anise-text/topictagging?text="
import io.swagger.client.*;
import io.swagger.client.auth.*;
import io.swagger.client.model.*;
import io.swagger.client.api.TopicTaggingApi;

import java.io.File;
import java.util.*;

public class TopicTaggingApiExample {

    public static void main(String[] args) {
        ApiClient defaultClient = Configuration.getDefaultApiClient();
        
        // Configure API key authorization: apieco-key
        ApiKeyAuth apieco-key = (ApiKeyAuth) defaultClient.getAuthentication("apieco-key");
        apieco-key.setApiKey("YOUR API KEY");
        // Uncomment the following line to set a prefix for the API key, e.g. "Token" (defaults to null)
        //apieco-key.setApiKeyPrefix("Token");

        TopicTaggingApi apiInstance = new TopicTaggingApi();
        String apiecoKey = apiecoKey_example; // String | 
        String text = text_example; // String | The input text
        try {
            inline_response_200_3 result = apiInstance.topicTagging(apiecoKey, text);
            System.out.println(result);
        } catch (ApiException e) {
            System.err.println("Exception when calling TopicTaggingApi#topicTagging");
            e.printStackTrace();
        }
    }
}
import io.swagger.client.api.TopicTaggingApi;

public class TopicTaggingApiExample {

    public static void main(String[] args) {
        TopicTaggingApi apiInstance = new TopicTaggingApi();
        String apiecoKey = apiecoKey_example; // String | 
        String text = text_example; // String | The input text
        try {
            inline_response_200_3 result = apiInstance.topicTagging(apiecoKey, text);
            System.out.println(result);
        } catch (ApiException e) {
            System.err.println("Exception when calling TopicTaggingApi#topicTagging");
            e.printStackTrace();
        }
    }
}
Configuration *apiConfig = [Configuration sharedConfig];

// Configure API key authorization: (authentication scheme: apieco-key)
[apiConfig setApiKey:@"YOUR_API_KEY" forApiKeyIdentifier:@"apieco-key"];
// Uncomment below to setup prefix (e.g. Bearer) for API key, if needed
//[apiConfig setApiKeyPrefix:@"Bearer" forApiKeyIdentifier:@"apieco-key"];

String *apiecoKey = apiecoKey_example; // 
String *text = text_example; // The input text

TopicTaggingApi *apiInstance = [[TopicTaggingApi alloc] init];

// 
[apiInstance topicTaggingWith:apiecoKey
    text:text
              completionHandler: ^(inline_response_200_3 output, NSError* error) {
                            if (output) {
                                NSLog(@"%@", output);
                            }
                            if (error) {
                                NSLog(@"Error: %@", error);
                            }
                        }];
var AniseTextAnalyzerApiDocumentation = require('anise_text_analyzer_api_documentation');
var defaultClient = AniseTextAnalyzerApiDocumentation.ApiClient.instance;

// Configure API key authorization: apieco-key
var apieco-key = defaultClient.authentications['apieco-key'];
apieco-key.apiKey = "YOUR API KEY"
// Uncomment the following line to set a prefix for the API key, e.g. "Token" (defaults to null)
//apieco-key.apiKeyPrefix['apieco-key'] = "Token"

var api = new AniseTextAnalyzerApiDocumentation.TopicTaggingApi()

var apiecoKey = apiecoKey_example; // {String} 

var text = text_example; // {String} The input text


var callback = function(error, data, response) {
  if (error) {
    console.error(error);
  } else {
    console.log('API called successfully. Returned data: ' + data);
  }
};
api.topicTagging(apiecoKey, text, callback);
using System;
using System.Diagnostics;
using IO.Swagger.Api;
using IO.Swagger.Client;
using IO.Swagger.Model;

namespace Example
{
    public class topicTaggingExample
    {
        public void main()
        {
            
            // Configure API key authorization: apieco-key
            Configuration.Default.ApiKey.Add("apieco-key", "YOUR_API_KEY");
            // Uncomment below to setup prefix (e.g. Bearer) for API key, if needed
            // Configuration.Default.ApiKeyPrefix.Add("apieco-key", "Bearer");

            var apiInstance = new TopicTaggingApi();
            var apiecoKey = apiecoKey_example;  // String | 
            var text = text_example;  // String | The input text

            try
            {
                // 
                inline_response_200_3 result = apiInstance.topicTagging(apiecoKey, text);
                Debug.WriteLine(result);
            }
            catch (Exception e)
            {
                Debug.Print("Exception when calling TopicTaggingApi.topicTagging: " + e.Message );
            }
        }
    }
}
<?php
require_once(__DIR__ . '/vendor/autoload.php');

// Configure API key authorization: apieco-key
Swagger\Client\Configuration::getDefaultConfiguration()->setApiKey('apieco-key', 'YOUR_API_KEY');
// Uncomment below to setup prefix (e.g. Bearer) for API key, if needed
// Swagger\Client\Configuration::getDefaultConfiguration()->setApiKeyPrefix('apieco-key', 'Bearer');

$api_instance = new Swagger\Client\Api\TopicTaggingApi();
$apiecoKey = apiecoKey_example; // String | 
$text = text_example; // String | The input text

try {
    $result = $api_instance->topicTagging($apiecoKey, $text);
    print_r($result);
} catch (Exception $e) {
    echo 'Exception when calling TopicTaggingApi->topicTagging: ', $e->getMessage(), PHP_EOL;
}
?>
use Data::Dumper;
use WWW::SwaggerClient::Configuration;
use WWW::SwaggerClient::TopicTaggingApi;

# Configure API key authorization: apieco-key
$WWW::SwaggerClient::Configuration::api_key->{'apieco-key'} = 'YOUR_API_KEY';
# uncomment below to setup prefix (e.g. Bearer) for API key, if needed
#$WWW::SwaggerClient::Configuration::api_key_prefix->{'apieco-key'} = "Bearer";

my $api_instance = WWW::SwaggerClient::TopicTaggingApi->new();
my $apiecoKey = apiecoKey_example; # String | 
my $text = text_example; # String | The input text

eval { 
    my $result = $api_instance->topicTagging(apiecoKey => $apiecoKey, text => $text);
    print Dumper($result);
};
if ($@) {
    warn "Exception when calling TopicTaggingApi->topicTagging: $@\n";
}
from __future__ import print_statement
import time
import swagger_client
from swagger_client.rest import ApiException
from pprint import pprint

# Configure API key authorization: apieco-key
swagger_client.configuration.api_key['apieco-key'] = 'YOUR_API_KEY'
# Uncomment below to setup prefix (e.g. Bearer) for API key, if needed
# swagger_client.configuration.api_key_prefix['apieco-key'] = 'Bearer'

# create an instance of the API class
api_instance = swagger_client.TopicTaggingApi()
apiecoKey = apiecoKey_example # String | 
text = text_example # String | The input text

try: 
    # 
    api_response = api_instance.topic_tagging(apiecoKey, text)
    pprint(api_response)
except ApiException as e:
    print("Exception when calling TopicTaggingApi->topicTagging: %s\n" % e)

Parameters

Header parameters
Name Description
apieco-key*
String
Required
Query parameters
Name Description
text*
String
The input text
Required

Responses

Status: 200 - Successful

Status: 405 - Invalid input