JSON Whois - Screenshots - Google - Social Data

DomainInformation

information

Whois, Screenshot, Alexa, Google, Social Data


/api/v1/whois

Usage and SDK Samples

curl -X GET -H "apieco-key: [[apiKey]]" "https://api.apieco.ir/jasonwhois/api/v1/whois?domain="
import io.swagger.client.*;
import io.swagger.client.auth.*;
import io.swagger.client.model.*;
import io.swagger.client.api.DomainInformationApi;

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

public class DomainInformationApiExample {

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

        DomainInformationApi apiInstance = new DomainInformationApi();
        String apiecoKey = apiecoKey_example; // String | 
        String domain = domain_example; // String | The domain you want information for
        try {
            inline_response_200 result = apiInstance.information(apiecoKey, domain);
            System.out.println(result);
        } catch (ApiException e) {
            System.err.println("Exception when calling DomainInformationApi#information");
            e.printStackTrace();
        }
    }
}
import io.swagger.client.api.DomainInformationApi;

public class DomainInformationApiExample {

    public static void main(String[] args) {
        DomainInformationApi apiInstance = new DomainInformationApi();
        String apiecoKey = apiecoKey_example; // String | 
        String domain = domain_example; // String | The domain you want information for
        try {
            inline_response_200 result = apiInstance.information(apiecoKey, domain);
            System.out.println(result);
        } catch (ApiException e) {
            System.err.println("Exception when calling DomainInformationApi#information");
            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 *domain = domain_example; // The domain you want information for

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

[apiInstance informationWith:apiecoKey
    domain:domain
              completionHandler: ^(inline_response_200 output, NSError* error) {
                            if (output) {
                                NSLog(@"%@", output);
                            }
                            if (error) {
                                NSLog(@"Error: %@", error);
                            }
                        }];
var JsonWhoisScreenshotsGoogleSocialData = require('json_whois___screenshots___google___social_data');
var defaultClient = JsonWhoisScreenshotsGoogleSocialData.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 JsonWhoisScreenshotsGoogleSocialData.DomainInformationApi()

var apiecoKey = apiecoKey_example; // {String} 

var domain = domain_example; // {String} The domain you want information for


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

namespace Example
{
    public class informationExample
    {
        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 DomainInformationApi();
            var apiecoKey = apiecoKey_example;  // String | 
            var domain = domain_example;  // String | The domain you want information for

            try
            {
                inline_response_200 result = apiInstance.information(apiecoKey, domain);
                Debug.WriteLine(result);
            }
            catch (Exception e)
            {
                Debug.Print("Exception when calling DomainInformationApi.information: " + 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\DomainInformationApi();
$apiecoKey = apiecoKey_example; // String | 
$domain = domain_example; // String | The domain you want information for

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

# 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::DomainInformationApi->new();
my $apiecoKey = apiecoKey_example; # String | 
my $domain = domain_example; # String | The domain you want information for

eval { 
    my $result = $api_instance->information(apiecoKey => $apiecoKey, domain => $domain);
    print Dumper($result);
};
if ($@) {
    warn "Exception when calling DomainInformationApi->information: $@\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.DomainInformationApi()
apiecoKey = apiecoKey_example # String | 
domain = domain_example # String | The domain you want information for

try: 
    api_response = api_instance.information(apiecoKey, domain)
    pprint(api_response)
except ApiException as e:
    print("Exception when calling DomainInformationApi->information: %s\n" % e)

Parameters

Header parameters
Name Description
apieco-key*
String
Required
Query parameters
Name Description
domain*
String
The domain you want information for
Required

Responses

Status: 200 - Succesfull

Status: 401 - wrong code

Status: 405 - Invalid input


Screenshot

screenshot


/api/v1/screenshot

Usage and SDK Samples

curl -X GET -H "apieco-key: [[apiKey]]" "https://api.apieco.ir/jasonwhois/api/v1/screenshot?domain="
import io.swagger.client.*;
import io.swagger.client.auth.*;
import io.swagger.client.model.*;
import io.swagger.client.api.ScreenshotApi;

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

public class ScreenshotApiExample {

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

        ScreenshotApi apiInstance = new ScreenshotApi();
        String apiecoKey = apiecoKey_example; // String | 
        String domain = domain_example; // String | The domain you want to screenshot
        try {
            inline_response_200 result = apiInstance.screenshot(apiecoKey, domain);
            System.out.println(result);
        } catch (ApiException e) {
            System.err.println("Exception when calling ScreenshotApi#screenshot");
            e.printStackTrace();
        }
    }
}
import io.swagger.client.api.ScreenshotApi;

public class ScreenshotApiExample {

    public static void main(String[] args) {
        ScreenshotApi apiInstance = new ScreenshotApi();
        String apiecoKey = apiecoKey_example; // String | 
        String domain = domain_example; // String | The domain you want to screenshot
        try {
            inline_response_200 result = apiInstance.screenshot(apiecoKey, domain);
            System.out.println(result);
        } catch (ApiException e) {
            System.err.println("Exception when calling ScreenshotApi#screenshot");
            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 *domain = domain_example; // The domain you want to screenshot

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

[apiInstance screenshotWith:apiecoKey
    domain:domain
              completionHandler: ^(inline_response_200 output, NSError* error) {
                            if (output) {
                                NSLog(@"%@", output);
                            }
                            if (error) {
                                NSLog(@"Error: %@", error);
                            }
                        }];
var JsonWhoisScreenshotsGoogleSocialData = require('json_whois___screenshots___google___social_data');
var defaultClient = JsonWhoisScreenshotsGoogleSocialData.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 JsonWhoisScreenshotsGoogleSocialData.ScreenshotApi()

var apiecoKey = apiecoKey_example; // {String} 

var domain = domain_example; // {String} The domain you want to screenshot


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

namespace Example
{
    public class screenshotExample
    {
        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 ScreenshotApi();
            var apiecoKey = apiecoKey_example;  // String | 
            var domain = domain_example;  // String | The domain you want to screenshot

            try
            {
                inline_response_200 result = apiInstance.screenshot(apiecoKey, domain);
                Debug.WriteLine(result);
            }
            catch (Exception e)
            {
                Debug.Print("Exception when calling ScreenshotApi.screenshot: " + 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\ScreenshotApi();
$apiecoKey = apiecoKey_example; // String | 
$domain = domain_example; // String | The domain you want to screenshot

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

# 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::ScreenshotApi->new();
my $apiecoKey = apiecoKey_example; # String | 
my $domain = domain_example; # String | The domain you want to screenshot

eval { 
    my $result = $api_instance->screenshot(apiecoKey => $apiecoKey, domain => $domain);
    print Dumper($result);
};
if ($@) {
    warn "Exception when calling ScreenshotApi->screenshot: $@\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.ScreenshotApi()
apiecoKey = apiecoKey_example # String | 
domain = domain_example # String | The domain you want to screenshot

try: 
    api_response = api_instance.screenshot(apiecoKey, domain)
    pprint(api_response)
except ApiException as e:
    print("Exception when calling ScreenshotApi->screenshot: %s\n" % e)

Parameters

Header parameters
Name Description
apieco-key*
String
Required
Query parameters
Name Description
domain*
String
The domain you want to screenshot
Required

Responses

Status: 200 - Succesfull

Status: 401 - wrong code

Status: 405 - Invalid input


SocialData

social

Get social data for a URL


/api/v1/social

Usage and SDK Samples

curl -X GET -H "apieco-key: [[apiKey]]" "https://api.apieco.ir/jasonwhois/api/v1/social?domain="
import io.swagger.client.*;
import io.swagger.client.auth.*;
import io.swagger.client.model.*;
import io.swagger.client.api.SocialDataApi;

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

public class SocialDataApiExample {

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

        SocialDataApi apiInstance = new SocialDataApi();
        String apiecoKey = apiecoKey_example; // String | 
        String domain = domain_example; // String | Domain Name
        try {
            inline_response_200_1 result = apiInstance.social(apiecoKey, domain);
            System.out.println(result);
        } catch (ApiException e) {
            System.err.println("Exception when calling SocialDataApi#social");
            e.printStackTrace();
        }
    }
}
import io.swagger.client.api.SocialDataApi;

public class SocialDataApiExample {

    public static void main(String[] args) {
        SocialDataApi apiInstance = new SocialDataApi();
        String apiecoKey = apiecoKey_example; // String | 
        String domain = domain_example; // String | Domain Name
        try {
            inline_response_200_1 result = apiInstance.social(apiecoKey, domain);
            System.out.println(result);
        } catch (ApiException e) {
            System.err.println("Exception when calling SocialDataApi#social");
            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 *domain = domain_example; // Domain Name

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

[apiInstance socialWith:apiecoKey
    domain:domain
              completionHandler: ^(inline_response_200_1 output, NSError* error) {
                            if (output) {
                                NSLog(@"%@", output);
                            }
                            if (error) {
                                NSLog(@"Error: %@", error);
                            }
                        }];
var JsonWhoisScreenshotsGoogleSocialData = require('json_whois___screenshots___google___social_data');
var defaultClient = JsonWhoisScreenshotsGoogleSocialData.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 JsonWhoisScreenshotsGoogleSocialData.SocialDataApi()

var apiecoKey = apiecoKey_example; // {String} 

var domain = domain_example; // {String} Domain Name


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

namespace Example
{
    public class socialExample
    {
        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 SocialDataApi();
            var apiecoKey = apiecoKey_example;  // String | 
            var domain = domain_example;  // String | Domain Name

            try
            {
                inline_response_200_1 result = apiInstance.social(apiecoKey, domain);
                Debug.WriteLine(result);
            }
            catch (Exception e)
            {
                Debug.Print("Exception when calling SocialDataApi.social: " + 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\SocialDataApi();
$apiecoKey = apiecoKey_example; // String | 
$domain = domain_example; // String | Domain Name

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

# 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::SocialDataApi->new();
my $apiecoKey = apiecoKey_example; # String | 
my $domain = domain_example; # String | Domain Name

eval { 
    my $result = $api_instance->social(apiecoKey => $apiecoKey, domain => $domain);
    print Dumper($result);
};
if ($@) {
    warn "Exception when calling SocialDataApi->social: $@\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.SocialDataApi()
apiecoKey = apiecoKey_example # String | 
domain = domain_example # String | Domain Name

try: 
    api_response = api_instance.social(apiecoKey, domain)
    pprint(api_response)
except ApiException as e:
    print("Exception when calling SocialDataApi->social: %s\n" % e)

Parameters

Header parameters
Name Description
apieco-key*
String
Required
Query parameters
Name Description
domain*
String
Domain Name
Required

Responses

Status: 200 - Succesfull

Status: 401 - wrong code

Status: 405 - Invalid input