Cat Facts

ApplicationWadl

factById

request WADL for the interface.


/facts/{id}

Usage and SDK Samples

curl -X GET -H "apieco-key: [[apiKey]]" "https://api.apieco.ir/catfact/facts/{id}"
import io.swagger.client.*;
import io.swagger.client.auth.*;
import io.swagger.client.model.*;
import io.swagger.client.api.ApplicationWadlApi;

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

public class ApplicationWadlApiExample {

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

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

public class ApplicationWadlApiExample {

    public static void main(String[] args) {
        ApplicationWadlApi apiInstance = new ApplicationWadlApi();
        String apiecoKey = apiecoKey_example; // String | 
        String id = id_example; // String | Fct id
        try {
            inline_response_200 result = apiInstance.factById(apiecoKey, id);
            System.out.println(result);
        } catch (ApiException e) {
            System.err.println("Exception when calling ApplicationWadlApi#factById");
            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 *id = id_example; // Fct id

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

[apiInstance factByIdWith:apiecoKey
    id:id
              completionHandler: ^(inline_response_200 output, NSError* error) {
                            if (output) {
                                NSLog(@"%@", output);
                            }
                            if (error) {
                                NSLog(@"Error: %@", error);
                            }
                        }];
var CatFacts = require('cat_facts');
var defaultClient = CatFacts.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 CatFacts.ApplicationWadlApi()

var apiecoKey = apiecoKey_example; // {String} 

var id = id_example; // {String} Fct id


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

namespace Example
{
    public class factByIdExample
    {
        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 ApplicationWadlApi();
            var apiecoKey = apiecoKey_example;  // String | 
            var id = id_example;  // String | Fct id

            try
            {
                inline_response_200 result = apiInstance.factById(apiecoKey, id);
                Debug.WriteLine(result);
            }
            catch (Exception e)
            {
                Debug.Print("Exception when calling ApplicationWadlApi.factById: " + 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\ApplicationWadlApi();
$apiecoKey = apiecoKey_example; // String | 
$id = id_example; // String | Fct id

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

# 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::ApplicationWadlApi->new();
my $apiecoKey = apiecoKey_example; # String | 
my $id = id_example; # String | Fct id

eval { 
    my $result = $api_instance->factById(apiecoKey => $apiecoKey, id => $id);
    print Dumper($result);
};
if ($@) {
    warn "Exception when calling ApplicationWadlApi->factById: $@\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.ApplicationWadlApi()
apiecoKey = apiecoKey_example # String | 
id = id_example # String | Fct id

try: 
    api_response = api_instance.fact_by_id(apiecoKey, id)
    pprint(api_response)
except ApiException as e:
    print("Exception when calling ApplicationWadlApi->factById: %s\n" % e)

Parameters

Path parameters
Name Description
id*
String
Fct id
Required
Header parameters
Name Description
apieco-key*
String
Required

Responses

Status: 200 - Succesfull

Status: 401 - wrong code

Status: 405 - Invalid input


Cataloges

usersFacts

These are user-submitted Facts that are waiting to be sent


/facts

Usage and SDK Samples

curl -X GET -H "apieco-key: [[apiKey]]" "https://api.apieco.ir/catfact/facts?animal_type="
import io.swagger.client.*;
import io.swagger.client.auth.*;
import io.swagger.client.model.*;
import io.swagger.client.api.CatalogesApi;

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

public class CatalogesApiExample {

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

        CatalogesApi apiInstance = new CatalogesApi();
        String apiecoKey = apiecoKey_example; // String | 
        String animalType = animalType_example; // String | Type of animal the fact will describe
        try {
            inline_response_200_1 result = apiInstance.usersFacts(apiecoKey, animalType);
            System.out.println(result);
        } catch (ApiException e) {
            System.err.println("Exception when calling CatalogesApi#usersFacts");
            e.printStackTrace();
        }
    }
}
import io.swagger.client.api.CatalogesApi;

public class CatalogesApiExample {

    public static void main(String[] args) {
        CatalogesApi apiInstance = new CatalogesApi();
        String apiecoKey = apiecoKey_example; // String | 
        String animalType = animalType_example; // String | Type of animal the fact will describe
        try {
            inline_response_200_1 result = apiInstance.usersFacts(apiecoKey, animalType);
            System.out.println(result);
        } catch (ApiException e) {
            System.err.println("Exception when calling CatalogesApi#usersFacts");
            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 *animalType = animalType_example; // Type of animal the fact will describe

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

[apiInstance usersFactsWith:apiecoKey
    animalType:animalType
              completionHandler: ^(inline_response_200_1 output, NSError* error) {
                            if (output) {
                                NSLog(@"%@", output);
                            }
                            if (error) {
                                NSLog(@"Error: %@", error);
                            }
                        }];
var CatFacts = require('cat_facts');
var defaultClient = CatFacts.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 CatFacts.CatalogesApi()

var apiecoKey = apiecoKey_example; // {String} 

var animalType = animalType_example; // {String} Type of animal the fact will describe


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

namespace Example
{
    public class usersFactsExample
    {
        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 CatalogesApi();
            var apiecoKey = apiecoKey_example;  // String | 
            var animalType = animalType_example;  // String | Type of animal the fact will describe

            try
            {
                inline_response_200_1 result = apiInstance.usersFacts(apiecoKey, animalType);
                Debug.WriteLine(result);
            }
            catch (Exception e)
            {
                Debug.Print("Exception when calling CatalogesApi.usersFacts: " + 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\CatalogesApi();
$apiecoKey = apiecoKey_example; // String | 
$animalType = animalType_example; // String | Type of animal the fact will describe

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

# 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::CatalogesApi->new();
my $apiecoKey = apiecoKey_example; # String | 
my $animalType = animalType_example; # String | Type of animal the fact will describe

eval { 
    my $result = $api_instance->usersFacts(apiecoKey => $apiecoKey, animalType => $animalType);
    print Dumper($result);
};
if ($@) {
    warn "Exception when calling CatalogesApi->usersFacts: $@\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.CatalogesApi()
apiecoKey = apiecoKey_example # String | 
animalType = animalType_example # String | Type of animal the fact will describe

try: 
    api_response = api_instance.users_facts(apiecoKey, animalType)
    pprint(api_response)
except ApiException as e:
    print("Exception when calling CatalogesApi->usersFacts: %s\n" % e)

Parameters

Header parameters
Name Description
apieco-key*
String
Required
Query parameters
Name Description
animal_type*
String
Type of animal the fact will describe
Required

Responses

Status: 200 - Succesfull

Status: 401 - wrong code

Status: 405 - Invalid input


Contributers

contributers

Returns the data of the currently logged in User.


/users/me

Usage and SDK Samples

curl -X GET -H "apieco-key: [[apiKey]]" "https://api.apieco.ir/catfact/users/me"
import io.swagger.client.*;
import io.swagger.client.auth.*;
import io.swagger.client.model.*;
import io.swagger.client.api.ContributersApi;

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

public class ContributersApiExample {

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

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

public class ContributersApiExample {

    public static void main(String[] args) {
        ContributersApi apiInstance = new ContributersApi();
        String apiecoKey = apiecoKey_example; // String | 
        try {
            inline_response_200_2 result = apiInstance.contributers(apiecoKey);
            System.out.println(result);
        } catch (ApiException e) {
            System.err.println("Exception when calling ContributersApi#contributers");
            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; // 

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

[apiInstance contributersWith:apiecoKey
              completionHandler: ^(inline_response_200_2 output, NSError* error) {
                            if (output) {
                                NSLog(@"%@", output);
                            }
                            if (error) {
                                NSLog(@"Error: %@", error);
                            }
                        }];
var CatFacts = require('cat_facts');
var defaultClient = CatFacts.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 CatFacts.ContributersApi()

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.contributers(apiecoKey, callback);
using System;
using System.Diagnostics;
using IO.Swagger.Api;
using IO.Swagger.Client;
using IO.Swagger.Model;

namespace Example
{
    public class contributersExample
    {
        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 ContributersApi();
            var apiecoKey = apiecoKey_example;  // String | 

            try
            {
                inline_response_200_2 result = apiInstance.contributers(apiecoKey);
                Debug.WriteLine(result);
            }
            catch (Exception e)
            {
                Debug.Print("Exception when calling ContributersApi.contributers: " + 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\ContributersApi();
$apiecoKey = apiecoKey_example; // String | 

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

# 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::ContributersApi->new();
my $apiecoKey = apiecoKey_example; # String | 

eval { 
    my $result = $api_instance->contributers(apiecoKey => $apiecoKey);
    print Dumper($result);
};
if ($@) {
    warn "Exception when calling ContributersApi->contributers: $@\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.ContributersApi()
apiecoKey = apiecoKey_example # String | 

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

Parameters

Header parameters
Name Description
apieco-key*
String
Required

Responses

Status: 200 - Succesfull

Status: 401 - wrong code

Status: 405 - Invalid input


Facts

facts

Retrieve random facts


/facts/random

Usage and SDK Samples

curl -X GET -H "apieco-key: [[apiKey]]" "https://api.apieco.ir/catfact/facts/random?animal_type=&amount="
import io.swagger.client.*;
import io.swagger.client.auth.*;
import io.swagger.client.model.*;
import io.swagger.client.api.FactsApi;

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

public class FactsApiExample {

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

        FactsApi apiInstance = new FactsApi();
        String apiecoKey = apiecoKey_example; // String | 
        String animalType = animalType_example; // String | Type of animal the fact will describe
        BigDecimal amount = 8.14; // BigDecimal | Number of Facts to retrieve. If set to one, response will be a fact object. If many, response will be an array of Facts
        try {
            inline_response_200 result = apiInstance.facts(apiecoKey, animalType, amount);
            System.out.println(result);
        } catch (ApiException e) {
            System.err.println("Exception when calling FactsApi#facts");
            e.printStackTrace();
        }
    }
}
import io.swagger.client.api.FactsApi;

public class FactsApiExample {

    public static void main(String[] args) {
        FactsApi apiInstance = new FactsApi();
        String apiecoKey = apiecoKey_example; // String | 
        String animalType = animalType_example; // String | Type of animal the fact will describe
        BigDecimal amount = 8.14; // BigDecimal | Number of Facts to retrieve. If set to one, response will be a fact object. If many, response will be an array of Facts
        try {
            inline_response_200 result = apiInstance.facts(apiecoKey, animalType, amount);
            System.out.println(result);
        } catch (ApiException e) {
            System.err.println("Exception when calling FactsApi#facts");
            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 *animalType = animalType_example; // Type of animal the fact will describe
BigDecimal *amount = 8.14; // Number of Facts to retrieve. If set to one, response will be a fact object. If many, response will be an array of Facts (optional)

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

[apiInstance factsWith:apiecoKey
    animalType:animalType
    amount:amount
              completionHandler: ^(inline_response_200 output, NSError* error) {
                            if (output) {
                                NSLog(@"%@", output);
                            }
                            if (error) {
                                NSLog(@"Error: %@", error);
                            }
                        }];
var CatFacts = require('cat_facts');
var defaultClient = CatFacts.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 CatFacts.FactsApi()

var apiecoKey = apiecoKey_example; // {String} 

var animalType = animalType_example; // {String} Type of animal the fact will describe

var opts = { 
  'amount': 8.14 // {BigDecimal} Number of Facts to retrieve. If set to one, response will be a fact object. If many, response will be an array of Facts
};

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

namespace Example
{
    public class factsExample
    {
        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 FactsApi();
            var apiecoKey = apiecoKey_example;  // String | 
            var animalType = animalType_example;  // String | Type of animal the fact will describe
            var amount = 8.14;  // BigDecimal | Number of Facts to retrieve. If set to one, response will be a fact object. If many, response will be an array of Facts (optional) 

            try
            {
                inline_response_200 result = apiInstance.facts(apiecoKey, animalType, amount);
                Debug.WriteLine(result);
            }
            catch (Exception e)
            {
                Debug.Print("Exception when calling FactsApi.facts: " + 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\FactsApi();
$apiecoKey = apiecoKey_example; // String | 
$animalType = animalType_example; // String | Type of animal the fact will describe
$amount = 8.14; // BigDecimal | Number of Facts to retrieve. If set to one, response will be a fact object. If many, response will be an array of Facts

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

# 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::FactsApi->new();
my $apiecoKey = apiecoKey_example; # String | 
my $animalType = animalType_example; # String | Type of animal the fact will describe
my $amount = 8.14; # BigDecimal | Number of Facts to retrieve. If set to one, response will be a fact object. If many, response will be an array of Facts

eval { 
    my $result = $api_instance->facts(apiecoKey => $apiecoKey, animalType => $animalType, amount => $amount);
    print Dumper($result);
};
if ($@) {
    warn "Exception when calling FactsApi->facts: $@\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.FactsApi()
apiecoKey = apiecoKey_example # String | 
animalType = animalType_example # String | Type of animal the fact will describe
amount = 8.14 # BigDecimal | Number of Facts to retrieve. If set to one, response will be a fact object. If many, response will be an array of Facts (optional)

try: 
    api_response = api_instance.facts(apiecoKey, animalType, amount=amount)
    pprint(api_response)
except ApiException as e:
    print("Exception when calling FactsApi->facts: %s\n" % e)

Parameters

Header parameters
Name Description
apieco-key*
String
Required
Query parameters
Name Description
animal_type*
String
Type of animal the fact will describe
Required
amount
BigDecimal
Number of Facts to retrieve. If set to one, response will be a fact object. If many, response will be an array of Facts

Responses

Status: 200 - Succesfull

Status: 401 - wrong code

Status: 405 - Invalid input