Breaking News Api

CompanyNews

companyNews

Company's specific breaking news


/news/{company}

Usage and SDK Samples

curl -X GET -H "apieco-key: [[apiKey]]" "https://api.apieco.ir/breaking-news/news/{company}"
import io.swagger.client.*;
import io.swagger.client.auth.*;
import io.swagger.client.model.*;
import io.swagger.client.api.CompanyNewsApi;

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

public class CompanyNewsApiExample {

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

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

public class CompanyNewsApiExample {

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

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

// Company's specific breaking news 
[apiInstance companyNewsWith:apiecoKey
    company:company
              completionHandler: ^(inline_response_200 output, NSError* error) {
                            if (output) {
                                NSLog(@"%@", output);
                            }
                            if (error) {
                                NSLog(@"Error: %@", error);
                            }
                        }];
var BreakingNewsApi_ = require('_breaking_news_api__');
var defaultClient = BreakingNewsApi_.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 BreakingNewsApi_.CompanyNewsApi()

var apiecoKey = apiecoKey_example; // {String} 

var company = company_example; // {String} company symbol


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

namespace Example
{
    public class companyNewsExample
    {
        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 CompanyNewsApi();
            var apiecoKey = apiecoKey_example;  // String | 
            var company = company_example;  // String | company symbol

            try
            {
                // Company's specific breaking news 
                inline_response_200 result = apiInstance.companyNews(apiecoKey, company);
                Debug.WriteLine(result);
            }
            catch (Exception e)
            {
                Debug.Print("Exception when calling CompanyNewsApi.companyNews: " + 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\CompanyNewsApi();
$apiecoKey = apiecoKey_example; // String | 
$company = company_example; // String | company symbol

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

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

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

try: 
    # Company's specific breaking news 
    api_response = api_instance.company_news(apiecoKey, company)
    pprint(api_response)
except ApiException as e:
    print("Exception when calling CompanyNewsApi->companyNews: %s\n" % e)

Parameters

Path parameters
Name Description
company*
String
company symbol
Required
Header parameters
Name Description
apieco-key*
String
Required

Responses

Status: 200 - Succesfull

Status: 401 - wrong code

Status: 405 - Invalid input


GetCompanyDetailsBySymbol

companyDetails

Gets company's quote details.


/GetCompanyDetailsBySymbol

Usage and SDK Samples

curl -X GET -H "apieco-key: [[apiKey]]" "https://api.apieco.ir/breaking-news/GetCompanyDetailsBySymbol?symbol="
import io.swagger.client.*;
import io.swagger.client.auth.*;
import io.swagger.client.model.*;
import io.swagger.client.api.GetCompanyDetailsBySymbolApi;

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

public class GetCompanyDetailsBySymbolApiExample {

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

        GetCompanyDetailsBySymbolApi apiInstance = new GetCompanyDetailsBySymbolApi();
        String apiecoKey = apiecoKey_example; // String | 
        String symbol = symbol_example; // String | Symbol of the company
        try {
            inline_response_200_1 result = apiInstance.companyDetails(apiecoKey, symbol);
            System.out.println(result);
        } catch (ApiException e) {
            System.err.println("Exception when calling GetCompanyDetailsBySymbolApi#companyDetails");
            e.printStackTrace();
        }
    }
}
import io.swagger.client.api.GetCompanyDetailsBySymbolApi;

public class GetCompanyDetailsBySymbolApiExample {

    public static void main(String[] args) {
        GetCompanyDetailsBySymbolApi apiInstance = new GetCompanyDetailsBySymbolApi();
        String apiecoKey = apiecoKey_example; // String | 
        String symbol = symbol_example; // String | Symbol of the company
        try {
            inline_response_200_1 result = apiInstance.companyDetails(apiecoKey, symbol);
            System.out.println(result);
        } catch (ApiException e) {
            System.err.println("Exception when calling GetCompanyDetailsBySymbolApi#companyDetails");
            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 *symbol = symbol_example; // Symbol of the company

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

// Gets company's quote details. 
[apiInstance companyDetailsWith:apiecoKey
    symbol:symbol
              completionHandler: ^(inline_response_200_1 output, NSError* error) {
                            if (output) {
                                NSLog(@"%@", output);
                            }
                            if (error) {
                                NSLog(@"Error: %@", error);
                            }
                        }];
var BreakingNewsApi_ = require('_breaking_news_api__');
var defaultClient = BreakingNewsApi_.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 BreakingNewsApi_.GetCompanyDetailsBySymbolApi()

var apiecoKey = apiecoKey_example; // {String} 

var symbol = symbol_example; // {String} Symbol of the company


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

namespace Example
{
    public class companyDetailsExample
    {
        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 GetCompanyDetailsBySymbolApi();
            var apiecoKey = apiecoKey_example;  // String | 
            var symbol = symbol_example;  // String | Symbol of the company

            try
            {
                // Gets company's quote details. 
                inline_response_200_1 result = apiInstance.companyDetails(apiecoKey, symbol);
                Debug.WriteLine(result);
            }
            catch (Exception e)
            {
                Debug.Print("Exception when calling GetCompanyDetailsBySymbolApi.companyDetails: " + 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\GetCompanyDetailsBySymbolApi();
$apiecoKey = apiecoKey_example; // String | 
$symbol = symbol_example; // String | Symbol of the company

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

# 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::GetCompanyDetailsBySymbolApi->new();
my $apiecoKey = apiecoKey_example; # String | 
my $symbol = symbol_example; # String | Symbol of the company

eval { 
    my $result = $api_instance->companyDetails(apiecoKey => $apiecoKey, symbol => $symbol);
    print Dumper($result);
};
if ($@) {
    warn "Exception when calling GetCompanyDetailsBySymbolApi->companyDetails: $@\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.GetCompanyDetailsBySymbolApi()
apiecoKey = apiecoKey_example # String | 
symbol = symbol_example # String | Symbol of the company

try: 
    # Gets company's quote details. 
    api_response = api_instance.company_details(apiecoKey, symbol)
    pprint(api_response)
except ApiException as e:
    print("Exception when calling GetCompanyDetailsBySymbolApi->companyDetails: %s\n" % e)

Parameters

Header parameters
Name Description
apieco-key*
String
Required
Query parameters
Name Description
symbol*
String
Symbol of the company
Required

Responses

Status: 200 - Succesfull

Status: 401 - wrong code

Status: 405 - Invalid input


RealTimeNewsFeed

getTopNews

Get all Breaking News


/GetTopNews

Usage and SDK Samples

curl -X GET -H "apieco-key: [[apiKey]]" "https://api.apieco.ir/breaking-news/GetTopNews"
import io.swagger.client.*;
import io.swagger.client.auth.*;
import io.swagger.client.model.*;
import io.swagger.client.api.RealTimeNewsFeedApi;

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

public class RealTimeNewsFeedApiExample {

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

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

public class RealTimeNewsFeedApiExample {

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

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

// Get all Breaking News 
[apiInstance getTopNewsWith:apiecoKey
              completionHandler: ^(inline_response_200 output, NSError* error) {
                            if (output) {
                                NSLog(@"%@", output);
                            }
                            if (error) {
                                NSLog(@"Error: %@", error);
                            }
                        }];
var BreakingNewsApi_ = require('_breaking_news_api__');
var defaultClient = BreakingNewsApi_.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 BreakingNewsApi_.RealTimeNewsFeedApi()

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

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

            try
            {
                // Get all Breaking News 
                inline_response_200 result = apiInstance.getTopNews(apiecoKey);
                Debug.WriteLine(result);
            }
            catch (Exception e)
            {
                Debug.Print("Exception when calling RealTimeNewsFeedApi.getTopNews: " + 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\RealTimeNewsFeedApi();
$apiecoKey = apiecoKey_example; // String | 

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

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

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

try: 
    # Get all Breaking News 
    api_response = api_instance.get_top_news(apiecoKey)
    pprint(api_response)
except ApiException as e:
    print("Exception when calling RealTimeNewsFeedApi->getTopNews: %s\n" % e)

Parameters

Header parameters
Name Description
apieco-key*
String
Required

Responses

Status: 200 - Succesfull

Status: 401 - wrong code

Status: 405 - Invalid input