Tagdef API

ListOfDefinition

hashtagJsonGet

Returns the top definitions, currently max 5. Ordered by popularity. This popularity is based on user votes, but is weighed using an intern algorithm on Tagdef.com


/{hashtag}.json

Usage and SDK Samples

curl -X GET -H "apieco-key: [[apiKey]]" "https://api.apieco.ir/tagdef/{hashtag}.json"
import io.swagger.client.*;
import io.swagger.client.auth.*;
import io.swagger.client.model.*;
import io.swagger.client.api.ListOfDefinitionApi;

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

public class ListOfDefinitionApiExample {

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

        ListOfDefinitionApi apiInstance = new ListOfDefinitionApi();
        String apiecoKey = apiecoKey_example; // String | 
        String hashtag = hashtag_example; // String | The name of the hashtag
        try {
            hashtag result = apiInstance.hashtagJsonGet(apiecoKey, hashtag);
            System.out.println(result);
        } catch (ApiException e) {
            System.err.println("Exception when calling ListOfDefinitionApi#hashtagJsonGet");
            e.printStackTrace();
        }
    }
}
import io.swagger.client.api.ListOfDefinitionApi;

public class ListOfDefinitionApiExample {

    public static void main(String[] args) {
        ListOfDefinitionApi apiInstance = new ListOfDefinitionApi();
        String apiecoKey = apiecoKey_example; // String | 
        String hashtag = hashtag_example; // String | The name of the hashtag
        try {
            hashtag result = apiInstance.hashtagJsonGet(apiecoKey, hashtag);
            System.out.println(result);
        } catch (ApiException e) {
            System.err.println("Exception when calling ListOfDefinitionApi#hashtagJsonGet");
            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 *hashtag = hashtag_example; // The name of the hashtag

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

//  Returns the top definitions, currently max 5. Ordered by popularity. This popularity is based on user votes, but is weighed using an intern algorithm on Tagdef.com



[apiInstance hashtagJsonGetWith:apiecoKey
    hashtag:hashtag
              completionHandler: ^(hashtag output, NSError* error) {
                            if (output) {
                                NSLog(@"%@", output);
                            }
                            if (error) {
                                NSLog(@"Error: %@", error);
                            }
                        }];
var TagdefApi_ = require('tagdef_api_');
var defaultClient = TagdefApi_.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 TagdefApi_.ListOfDefinitionApi()

var apiecoKey = apiecoKey_example; // {String} 

var hashtag = hashtag_example; // {String} The name of the hashtag


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

namespace Example
{
    public class hashtagJsonGetExample
    {
        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 ListOfDefinitionApi();
            var apiecoKey = apiecoKey_example;  // String | 
            var hashtag = hashtag_example;  // String | The name of the hashtag

            try
            {
                //  Returns the top definitions, currently max 5. Ordered by popularity. This popularity is based on user votes, but is weighed using an intern algorithm on Tagdef.com



                hashtag result = apiInstance.hashtagJsonGet(apiecoKey, hashtag);
                Debug.WriteLine(result);
            }
            catch (Exception e)
            {
                Debug.Print("Exception when calling ListOfDefinitionApi.hashtagJsonGet: " + 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\ListOfDefinitionApi();
$apiecoKey = apiecoKey_example; // String | 
$hashtag = hashtag_example; // String | The name of the hashtag

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

# 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::ListOfDefinitionApi->new();
my $apiecoKey = apiecoKey_example; # String | 
my $hashtag = hashtag_example; # String | The name of the hashtag

eval { 
    my $result = $api_instance->hashtagJsonGet(apiecoKey => $apiecoKey, hashtag => $hashtag);
    print Dumper($result);
};
if ($@) {
    warn "Exception when calling ListOfDefinitionApi->hashtagJsonGet: $@\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.ListOfDefinitionApi()
apiecoKey = apiecoKey_example # String | 
hashtag = hashtag_example # String | The name of the hashtag

try: 
    #  Returns the top definitions, currently max 5. Ordered by popularity. This popularity is based on user votes, but is weighed using an intern algorithm on Tagdef.com



    api_response = api_instance.hashtag_json_get(apiecoKey, hashtag)
    pprint(api_response)
except ApiException as e:
    print("Exception when calling ListOfDefinitionApi->hashtagJsonGet: %s\n" % e)

Parameters

Path parameters
Name Description
hashtag*
String
The name of the hashtag
Required
Header parameters
Name Description
apieco-key*
String
Required

Responses

Status: 200 - Succesfull

Status: 401 - wrong code

Status: 405 - Invalid input


TopDefinition

oneHashtagJsonGet

TReturns the top definition for given hashtag. The top definition is calculated based on user votes, and weighed using an intern algorithm on Tagdef.com


/one.{hashtag}.json

Usage and SDK Samples

curl -X GET -H "apieco-key: [[apiKey]]" "https://api.apieco.ir/tagdef/one.{hashtag}.json"
import io.swagger.client.*;
import io.swagger.client.auth.*;
import io.swagger.client.model.*;
import io.swagger.client.api.TopDefinitionApi;

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

public class TopDefinitionApiExample {

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

        TopDefinitionApi apiInstance = new TopDefinitionApi();
        String apiecoKey = apiecoKey_example; // String | 
        String hashtag = hashtag_example; // String | The name of the hashtag
        try {
            hashtag result = apiInstance.oneHashtagJsonGet(apiecoKey, hashtag);
            System.out.println(result);
        } catch (ApiException e) {
            System.err.println("Exception when calling TopDefinitionApi#oneHashtagJsonGet");
            e.printStackTrace();
        }
    }
}
import io.swagger.client.api.TopDefinitionApi;

public class TopDefinitionApiExample {

    public static void main(String[] args) {
        TopDefinitionApi apiInstance = new TopDefinitionApi();
        String apiecoKey = apiecoKey_example; // String | 
        String hashtag = hashtag_example; // String | The name of the hashtag
        try {
            hashtag result = apiInstance.oneHashtagJsonGet(apiecoKey, hashtag);
            System.out.println(result);
        } catch (ApiException e) {
            System.err.println("Exception when calling TopDefinitionApi#oneHashtagJsonGet");
            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 *hashtag = hashtag_example; // The name of the hashtag

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

//  TReturns the top definition for given hashtag. The top definition is calculated based on user votes, and weighed using an intern algorithm on Tagdef.com



[apiInstance oneHashtagJsonGetWith:apiecoKey
    hashtag:hashtag
              completionHandler: ^(hashtag output, NSError* error) {
                            if (output) {
                                NSLog(@"%@", output);
                            }
                            if (error) {
                                NSLog(@"Error: %@", error);
                            }
                        }];
var TagdefApi_ = require('tagdef_api_');
var defaultClient = TagdefApi_.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 TagdefApi_.TopDefinitionApi()

var apiecoKey = apiecoKey_example; // {String} 

var hashtag = hashtag_example; // {String} The name of the hashtag


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

namespace Example
{
    public class oneHashtagJsonGetExample
    {
        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 TopDefinitionApi();
            var apiecoKey = apiecoKey_example;  // String | 
            var hashtag = hashtag_example;  // String | The name of the hashtag

            try
            {
                //  TReturns the top definition for given hashtag. The top definition is calculated based on user votes, and weighed using an intern algorithm on Tagdef.com



                hashtag result = apiInstance.oneHashtagJsonGet(apiecoKey, hashtag);
                Debug.WriteLine(result);
            }
            catch (Exception e)
            {
                Debug.Print("Exception when calling TopDefinitionApi.oneHashtagJsonGet: " + 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\TopDefinitionApi();
$apiecoKey = apiecoKey_example; // String | 
$hashtag = hashtag_example; // String | The name of the hashtag

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

# 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::TopDefinitionApi->new();
my $apiecoKey = apiecoKey_example; # String | 
my $hashtag = hashtag_example; # String | The name of the hashtag

eval { 
    my $result = $api_instance->oneHashtagJsonGet(apiecoKey => $apiecoKey, hashtag => $hashtag);
    print Dumper($result);
};
if ($@) {
    warn "Exception when calling TopDefinitionApi->oneHashtagJsonGet: $@\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.TopDefinitionApi()
apiecoKey = apiecoKey_example # String | 
hashtag = hashtag_example # String | The name of the hashtag

try: 
    #  TReturns the top definition for given hashtag. The top definition is calculated based on user votes, and weighed using an intern algorithm on Tagdef.com



    api_response = api_instance.one_hashtag_json_get(apiecoKey, hashtag)
    pprint(api_response)
except ApiException as e:
    print("Exception when calling TopDefinitionApi->oneHashtagJsonGet: %s\n" % e)

Parameters

Path parameters
Name Description
hashtag*
String
The name of the hashtag
Required
Header parameters
Name Description
apieco-key*
String
Required

Responses

Status: 200 - Succesfull

Status: 401 - wrong code

Status: 405 - Invalid input