gruite API Documentation

Meanings

meanings

Meaning of the word


/meaning

Usage and SDK Samples

curl -X GET -H "apieco-key: [[apiKey]]" "https://api.apieco.ir/gruite/meaning?word=&language="
import io.swagger.client.*;
import io.swagger.client.auth.*;
import io.swagger.client.model.*;
import io.swagger.client.api.MeaningsApi;

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

public class MeaningsApiExample {

    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");

        MeaningsApi apiInstance = new MeaningsApi();
        String apiecoKey = apiecoKey_example; // String | 
        Integer word = 56; // Integer | word
        Integer language = 56; // Integer | language of the word
        try {
            inline_response_200_1 result = apiInstance.meanings(apiecoKey, word, language);
            System.out.println(result);
        } catch (ApiException e) {
            System.err.println("Exception when calling MeaningsApi#meanings");
            e.printStackTrace();
        }
    }
}
import io.swagger.client.api.MeaningsApi;

public class MeaningsApiExample {

    public static void main(String[] args) {
        MeaningsApi apiInstance = new MeaningsApi();
        String apiecoKey = apiecoKey_example; // String | 
        Integer word = 56; // Integer | word
        Integer language = 56; // Integer | language of the word
        try {
            inline_response_200_1 result = apiInstance.meanings(apiecoKey, word, language);
            System.out.println(result);
        } catch (ApiException e) {
            System.err.println("Exception when calling MeaningsApi#meanings");
            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; // 
Integer *word = 56; // word
Integer *language = 56; // language of the word

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

// 
[apiInstance meaningsWith:apiecoKey
    word:word
    language:language
              completionHandler: ^(inline_response_200_1 output, NSError* error) {
                            if (output) {
                                NSLog(@"%@", output);
                            }
                            if (error) {
                                NSLog(@"Error: %@", error);
                            }
                        }];
var GruiteApiDocumentation = require('gruite_api_documentation');
var defaultClient = GruiteApiDocumentation.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 GruiteApiDocumentation.MeaningsApi()

var apiecoKey = apiecoKey_example; // {String} 

var word = 56; // {Integer} word

var language = 56; // {Integer} language of the word


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

namespace Example
{
    public class meaningsExample
    {
        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 MeaningsApi();
            var apiecoKey = apiecoKey_example;  // String | 
            var word = 56;  // Integer | word
            var language = 56;  // Integer | language of the word

            try
            {
                // 
                inline_response_200_1 result = apiInstance.meanings(apiecoKey, word, language);
                Debug.WriteLine(result);
            }
            catch (Exception e)
            {
                Debug.Print("Exception when calling MeaningsApi.meanings: " + 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\MeaningsApi();
$apiecoKey = apiecoKey_example; // String | 
$word = 56; // Integer | word
$language = 56; // Integer | language of the word

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

# 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::MeaningsApi->new();
my $apiecoKey = apiecoKey_example; # String | 
my $word = 56; # Integer | word
my $language = 56; # Integer | language of the word

eval { 
    my $result = $api_instance->meanings(apiecoKey => $apiecoKey, word => $word, language => $language);
    print Dumper($result);
};
if ($@) {
    warn "Exception when calling MeaningsApi->meanings: $@\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.MeaningsApi()
apiecoKey = apiecoKey_example # String | 
word = 56 # Integer | word
language = 56 # Integer | language of the word

try: 
    # 
    api_response = api_instance.meanings(apiecoKey, word, language)
    pprint(api_response)
except ApiException as e:
    print("Exception when calling MeaningsApi->meanings: %s\n" % e)

Parameters

Header parameters
Name Description
apieco-key*
String
Required
Query parameters
Name Description
word*
Integer
word
Required
language*
Integer
language of the word
Required

Responses

Status: 200 - Successful

Status: 405 - Invalid input


Synonym

synonym

Synonyms of the word


/synonyms

Usage and SDK Samples

curl -X GET -H "apieco-key: [[apiKey]]" "https://api.apieco.ir/gruite/synonyms?word=&language="
import io.swagger.client.*;
import io.swagger.client.auth.*;
import io.swagger.client.model.*;
import io.swagger.client.api.SynonymApi;

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

public class SynonymApiExample {

    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");

        SynonymApi apiInstance = new SynonymApi();
        String apiecoKey = apiecoKey_example; // String | 
        Integer word = 56; // Integer | word
        Integer language = 56; // Integer | language of the word
        try {
            inline_response_200 result = apiInstance.synonym(apiecoKey, word, language);
            System.out.println(result);
        } catch (ApiException e) {
            System.err.println("Exception when calling SynonymApi#synonym");
            e.printStackTrace();
        }
    }
}
import io.swagger.client.api.SynonymApi;

public class SynonymApiExample {

    public static void main(String[] args) {
        SynonymApi apiInstance = new SynonymApi();
        String apiecoKey = apiecoKey_example; // String | 
        Integer word = 56; // Integer | word
        Integer language = 56; // Integer | language of the word
        try {
            inline_response_200 result = apiInstance.synonym(apiecoKey, word, language);
            System.out.println(result);
        } catch (ApiException e) {
            System.err.println("Exception when calling SynonymApi#synonym");
            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; // 
Integer *word = 56; // word
Integer *language = 56; // language of the word

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

// 
[apiInstance synonymWith:apiecoKey
    word:word
    language:language
              completionHandler: ^(inline_response_200 output, NSError* error) {
                            if (output) {
                                NSLog(@"%@", output);
                            }
                            if (error) {
                                NSLog(@"Error: %@", error);
                            }
                        }];
var GruiteApiDocumentation = require('gruite_api_documentation');
var defaultClient = GruiteApiDocumentation.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 GruiteApiDocumentation.SynonymApi()

var apiecoKey = apiecoKey_example; // {String} 

var word = 56; // {Integer} word

var language = 56; // {Integer} language of the word


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

namespace Example
{
    public class synonymExample
    {
        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 SynonymApi();
            var apiecoKey = apiecoKey_example;  // String | 
            var word = 56;  // Integer | word
            var language = 56;  // Integer | language of the word

            try
            {
                // 
                inline_response_200 result = apiInstance.synonym(apiecoKey, word, language);
                Debug.WriteLine(result);
            }
            catch (Exception e)
            {
                Debug.Print("Exception when calling SynonymApi.synonym: " + 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\SynonymApi();
$apiecoKey = apiecoKey_example; // String | 
$word = 56; // Integer | word
$language = 56; // Integer | language of the word

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

# 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::SynonymApi->new();
my $apiecoKey = apiecoKey_example; # String | 
my $word = 56; # Integer | word
my $language = 56; # Integer | language of the word

eval { 
    my $result = $api_instance->synonym(apiecoKey => $apiecoKey, word => $word, language => $language);
    print Dumper($result);
};
if ($@) {
    warn "Exception when calling SynonymApi->synonym: $@\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.SynonymApi()
apiecoKey = apiecoKey_example # String | 
word = 56 # Integer | word
language = 56 # Integer | language of the word

try: 
    # 
    api_response = api_instance.synonym(apiecoKey, word, language)
    pprint(api_response)
except ApiException as e:
    print("Exception when calling SynonymApi->synonym: %s\n" % e)

Parameters

Header parameters
Name Description
apieco-key*
String
Required
Query parameters
Name Description
word*
Integer
word
Required
language*
Integer
language of the word
Required

Responses

Status: 200 - Successful

Status: 405 - Invalid input