Price List Free Trial Browse More APIs

GetGlobalLastClosingPrice

Returns the last global closing price for a specified security.

Identifier:
IdentifierType:
AdjustmentMethod:

URL

Already have an account? Please log in.
Already have an account? Please log in.
Already have an account? Please log in.
Already have an account? Please log in.

Outputs

NameDescriptionAlways Present
GlobalHistoricalQuote
No
OutcomeNo
MessageNo
IdentityNo
DelayNo
Security
No
OutcomeNo
MessageNo
IdentityNo
DelayNo
CIKNo
CusipNo
SymbolNo
ISINNo
ValorenNo
NameNo
MarketNo
CategoryOrIndustryNo
DateNo
LastNo
OpenNo
HighNo
LowNo
VolumeNo
LastCloseNo
ChangeFromOpenNo
PercentChangeFromOpenNo
ChangeFromLastCloseNo
PercentChangeFromLastCloseNo
SplitRatioNo
CummulativeCashDividendNo
CummulativeStockDividendRatioNo
CurrencyNo
AdjustmentMethodUsedNo
DataConfidenceNo
Create custom API splice
Select Output Fields Select None
GlobalHistoricalQuote
Outcome
Message
Identity
Delay
Security
Outcome
Message
Identity
Delay
CIK
Cusip
Symbol
ISIN
Valoren
Name
Market
CategoryOrIndustry
Date
Last
Open
High
Low
Volume
LastClose
ChangeFromOpen
PercentChangeFromOpen
ChangeFromLastClose
PercentChangeFromLastClose
SplitRatio
CummulativeCashDividend
CummulativeStockDividendRatio
Currency
AdjustmentMethodUsed
DataConfidence

Hit Calculation

Requests against this operation count as one hit.


Authentication

In order to authenticate calls to our APIs, you must pass the token either:

  • As the _Token parameter in the query string of a REST request, or
  • In the Username value in the soap header of a SOAP request.
You can manage your API Tokens from your account page.


WSDL

If you are using SOAP, you can access the WSDL (Web Service Definition Language) file for the service using the link below: http://www.xignite.com/xGlobalHistorical.asmx?wsdl


Sample Code

Because they use open standards, Xignite’s APIs are easily accessible from any development environment without requiring any software installation. There are many flexible ways to integrate our APIs in your apps. The sections below provide sample code in popular programming languages you can easily copy, paste, and re-use.

Sample Code for GetGlobalLastClosingPrice

ASPX

<%@ Page Language="vb" %>
<%@ Import Namespace="System.Net" %>
<!-- here, XigniteGlobalHistorical is the name of this assembly-->
<%@ Import Namespace="XigniteGlobalHistorical" %>
<HTML>
<HEAD>
<script language="vb" runat="server">
' declare the return object globally so that you can reuse it around the page
Dim objGlobalHistoricalQuote As GlobalHistoricalQuote
' call the service inside the Page_Load routine
Sub Page_Load(obj as object, e as eventargs)
' create an instance of the web service
Dim objGlobalHistoricalService As New XigniteGlobalHistorical()
' add authentication info
Dim objHeader As New RemoteGlobalHistorical.Header = new Header();
objHeader.Username = "YOUR_TOKEN" objGlobalHistoricalQuote.HeaderValue = objHeader

' call the operation and load the return object
objGlobalHistoricalQuote = objGlobalHistoricalService.
GetGlobalLastClosingPrice("BMW.DE", RemoteGlobalHistorical.IdentifierTypes.Symbol, "SplitOnly")
If Not objGlobalHistoricalQuote Is Nothing Then
Select Case objGlobalHistoricalQuote.Outcome
Case OutcomeTypes.RegistrationError
' add processing for handling subscription problems, e.g.
Response.Write("Our subscription to this service has expired.")
Case OutcomeTypes.RequestError
' add processing for handling request problems, e.g.
' you could pass back the info message received from the service
Response.Write(objGlobalHistoricalQuote.Message)
Case OutcomeTypes.SystemError
' add processing for handling system problems, e.g.
Response.Write("Service is unavailable at this time.")
End Select
Else
' add error processing here
' this condition could be caused by an HTTP error (404,500...)
Response.Write("Service is unavailable at this time.")
End If
End Sub
</script>
</HEAD>
<BODY>
<TABLE>
<TR>
<TD>
<!-- add processing for displaying the results, e.g. -->
<!-- display the value for objGlobalHistoricalQuote.Last-->
<!-- other values could be consumed in the same manner-->
<%Response.Write(objGlobalHistoricalQuote.Last)%>
</TD>
</TR>
</TABLE>
</BODY>
</HTML>

C# (CSharp)

RemoteGlobalHistorical.XigniteGlobalHistorical objGlobalHistoricalService;
objGlobalHistoricalService = new RemoteGlobalHistorical.XigniteGlobalHistorical();
/// add authentication info
RemoteGlobalHistorical.Header objHeader = new RemoteGlobalHistorical.Header();
objHeader.Username = "YOUR_TOKEN";
objGlobalHistoricalService.HeaderValue = objHeader;

RemoteGlobalHistorical.GlobalHistoricalQuote objGlobalHistoricalQuote;
objGlobalHistoricalQuote = objGlobalHistoricalService.
GetGlobalLastClosingPrice("BMW.DE", RemoteGlobalHistorical.IdentifierTypes.Symbol, "SplitOnly");

if (objGlobalHistoricalQuote == null)
{
/// add error processing here
/// this condition could be caused by an HTTP error (404,500...)
Console.Write("Service is unavailable at this time.");
}
else
{
switch(objGlobalHistoricalQuote.Outcome)
{
case RemoteGlobalHistorical.OutcomeTypes.Success:
/// add processing for displaying the results, e.g.
/// display the value for objGlobalHistoricalQuote.Last
/// other values could be consumed in the same manner
Console.Write(objGlobalHistoricalQuote.Last);
break;
default:
/// add processing for handling request problems, e.g.
/// you could pass back the info message received from the service
Console.Write(objGlobalHistoricalQuote.Message);
break;
}
}

Classic ASP

This code requires the Microsoft SOAP Toolkit 3.0 and MSXML 4.0. You can download these from the Microsoft site.

Dim objSOAPClient
Set objSOAPClient = Server.CreateObject("MSSOAP.SoapClient30")
' the node list is of type MSXML2.IXMLDOMNodeList
Dim objXMLNodeList
' the node is of type MSXML2.IXMLDOMNode
Dim objXMLNode

' initialize the soap engine
objSOAPClient.ClientProperty("ServerHTTPRequest") = True
objSOAPClient.MSSoapInit("http://www.xignite.com/xGlobalHistorical.asmx?WSDL")

' Set the header values for authentication
objSOAPClient.ConnectorProperty("Username") = "YOUR_TOKEN"
' load the node list with the records received from the service
Set objXMLNodeList = objSOAPClient.GetGlobalLastClosingPrice("BMW.DE", RemoteGlobalHistorical.IdentifierTypes.Symbol, "SplitOnly")

' loop through the index records and load in the document
For Each objXMLNode In objXMLNodeList
' your can print out the content of each node
Response.Write objXMLNode.xml
Next

Java/Axis

This section assumes that you have Axis installed on your machine and that you are fairly familiar with it.

Because all our web services return complex types, the best way to use Axis (Apache Axis2 1.4+) is to first generate a proxy class using the 'WSDL2Java' tool'. By default, the tool will put all generated classes into the package "com.xignite.www.services".

You should then compile the classes (including the axis dependencies):


C:\axis>java org.apache.axis.wsdl.WSDL2Java http://www.xignite.com/xGlobalHistorical.asmx?WSDL
C:\axis>javac com\xignite\*.java
C:\axis>
C:\axis>YOUR_AXIS_INSTALLATION\bin\wsdl2java.bat -ap -uri http://www.xignite.com/xGlobalHistorical.asmx?WSDL
C:\axis>javac -classpath "YOUR_AXIS_INSTALLATION/lib/*" com/xignite/www/services/*.java

You can then create your source file. See below


After creating your source file, you can compile it like this:

C:\axis>javac -classpath .;"YOUR_AXIS_INSTALLATION/lib/*" XigniteGlobalHistoricalDemo.java

// By default, all of the classes auto-generated by the Axis2 
// "WSDL2Java" tool are placed into the package "com.xignite.www.services"
// for our Xignite WSDL, so we need an import.
import com.xignite.www.services.XigniteGlobalHistoricalXigniteGlobalHistoricalSoapStub; import com.xignite.www.services.XigniteGlobalHistoricalXigniteGlobalHistoricalSoapStub.*;
public class XigniteGlobalHistoricalDemo {
public static void main(String[] args) throws Exception { // Instantiate the XigniteGlobalHistorical proxy
// proxy object using the Helper class.
// This class was autogenerated by the WSDL2Java tool

try { XigniteGlobalHistoricalXigniteGlobalHistoricalSoapStub stub = new XigniteGlobalHistoricalXigniteGlobalHistoricalSoapStub(); // Instantiate the return class from the operation
// This class was autogenerated by the WSDL2Java tool
GetGlobalLastClosingPrice getGlobalLastClosingPriceArguments = new GetGlobalLastClosingPrice(); getGlobalLastClosingPriceArguments.setIdentifier("BMW.DE");
getGlobalLastClosingPriceArguments.setIdentifierType("IdentifierTypes.Symbol");
getGlobalLastClosingPriceArguments.setAdjustmentMethod("SplitOnly");
// Add authentication info
HeaderE header = new HeaderE(); Header myHeader = new Header(); myHeader.setUsername("YOUR_TOKEN"); header.setHeader(myHeader);

GetGlobalLastClosingPriceResponse response = stub.getGlobalLastClosingPrice(getGlobalLastClosingPriceArguments, header); GlobalHistoricalQuote objGlobalHistoricalQuote = response.getGetGlobalLastClosingPriceResult(); // objGlobalHistoricalQuote is pointing to the result of the operation
if (objGlobalHistoricalQuote.getOutcome() == OutcomeTypes.RegistrationError) { // code to handle registration errors
System.out.println(OutcomeTypes.RegistrationError.toString() + ": " + objGlobalHistoricalQuote.getMessage()); } else if (objGlobalHistoricalQuote.getOutcome() == OutcomeTypes.RequestError) { // code to handle request errors
System.out.println(OutcomeTypes.RequestError.toString() + ": " + objGlobalHistoricalQuote.getMessage()); } else if (objGlobalHistoricalQuote.getOutcome() == OutcomeTypes.SystemError) { // code to handle system errors
System.out.println(OutcomeTypes.SystemError.toString() + ": " + objGlobalHistoricalQuote.getMessage()); } else // Success
{ System.out.println(objGlobalHistoricalQuote.getLast()); } } catch (Exception ex) { // add exception handling code here

} } }

PHP/NuSoap

NuSoap is one of the three major SOAP implementations for PHP: PEAR::SOAP, NuSOAP, and PHP-SOAP.

If you use PHP, we recommend you use NuSoap to access our web services. NuSoap uses our web services for demonstration in their own documentation and it works well.

This section assumes that you have PHP installed on your machine and that you are fairly familiar with it. We have tested this implementation for PHP 4.2.1 on Windows 2000. It should also work with more recent versions on more recent platforms. Note that PHP 5.0 supports SOAP natively (without extension), please follow their documentation for upgrade or code changes required.

To install NuSoap, download the latest package from this location. You can unzip the package in your PHP application directory. The package includes libraries (/lib) and samples (/samples). The sample code below is based on the wsdlclient1.php sample.

If you use one of the older version or PHP (i.e. 4.2.1) , you will need to comment out one line in the /lib/nusoap.php file. That section is not supported in earlier version. The line to comment out is line 1877 as shown below.


1876 // set response timeout
1877 //socket_set_timeout( $this->fp, $response_timeout);

You can then create your source file.


<?php
// need to use the NuSoap extension
require_once('../lib/nusoap.php');

// if you access the internet through a proxy server
$proxyhost = isset($_POST['proxyhost']) ? $_POST['proxyhost'] : '';
$proxyport = isset($_POST['proxyport']) ? $_POST['proxyport'] : '';
$proxyusername = isset($_POST['proxyusername']) ? $_POST['proxyusername'] : '';
$proxypassword = isset($_POST['proxypassword']) ? $_POST['proxypassword'] : '';

// define the SOAP client using the url for the service
$client = new soapclient('http://www.xignite.com/xGlobalHistorical.asmx?WSDL',
true, $proxyhost, $proxyport, $proxyusername, $proxypassword);

// assess the results
$err = $client->getError();
if ($err) {
echo '<h2>Constructor error</h2><pre>' . $err . '</pre>';
}

// create an array of parameters
$param = array(
'Identifier' => "BMW.DE",
'IdentifierType' => "Symbol",
'AdjustmentMethod' => "SplitOnly");
// call the service, passing the parameters and the name of the operation
$result = $client->call('GetGlobalLastClosingPrice', array('parameters' => $param), '', '', false, true);
// assess the results
if ($client->fault) {
echo '<h2>Fault</h2><pre>';
print_r($result);
echo '</pre>';
} else {
$err = $client->getError();
if ($err) {
echo '<h2>Error</h2><pre>' . $err . '</pre>';
} else {
// display the results
echo '<h2>Result</h2><pre>';
// this function exposes the complete structure of the return class
print_r($result);
echo '</pre>';
}
}
// print the SOAP request
echo '<h2>Request</h2><pre>' . htmlspecialchars($client->request, ENT_QUOTES) . '</pre>';
// print the SOAP response
echo '<h2>Response</h2><pre>' . htmlspecialchars($client->response, ENT_QUOTES) . '</pre>';
// print the PHP debugging trace
echo '<h2>Debug</h2><pre>' . htmlspecialchars($client->debug_str, ENT_QUOTES) . '</pre>';
?>

PHP5

PHP-SOAP is one of the three major SOAP implementations for PHP: PEAR::SOAP, NuSOAP, and PHP-SOAP.

This section assumes that you have PHP5.0 installed on your machine and that you are fairly familiar with it.

Note that PHP 5.0 supports SOAP, please follow their documentation for code changes required.

Here is a sample source for this operation.

<?php
// define the SOAP client using the url for the service
$client = new soapclient('http://www.xignite.com/xGlobalHistorical.asmx?WSDL');
// create an array of parameters
$param = array( 'Identifier' => "BMW.DE",
'IdentifierType' => "Symbol",
'AdjustmentMethod' => "SplitOnly");
// add authentication info
new SoapHeader('http://www.xignite.com/services/',
"Header", array("Username" => "YOUR_TOKEN"));
$client->__setSoapHeaders(array($xignite_header));

// call the service, passing the parameters and the name of the operation
$result = $client->GetGlobalLastClosingPrice($param); // assess the results
if (is_soap_fault($result)) { echo '<h2>Fault</h2><pre>'; print_r($result); echo '</pre>'; } else { echo '<h2>Result</h2><pre>'; print_r($result); echo '</pre>'; } // print the SOAP request
echo '<h2>Request</h2><pre>' . htmlspecialchars($client->__getLastRequest(), ENT_QUOTES) . '</pre>'; // print the SOAP request Headers
echo '<h2>Request Headers</h2><pre>' . htmlspecialchars($client->__getLastRequestHeaders(), ENT_QUOTES) . '</pre>'; // print the SOAP response
echo '<h2>Response</h2><pre>' . htmlspecialchars($client->__getLastResponse(), ENT_QUOTES) . '</pre>'; ?>

Perl/SoapLite

This section assumes that you have SOAP::Lite for Perl installed on your machine and that you are fairly familiar with it. But just in case your are not:

You can then use a text editor to create the source code below. You can execute it by running:


C:\perl\perl demo.pl

Note that there are some unique steps to follow to use SOAP::Lite with .Net web Services. For detailed info, check this article on MSDN.

Here is a sample source for this operation.
# the maptype instruction is critical for compatibility 
use SOAP::Lite maptype => {};
use Data::Dumper;

# this is our namespace
my $namespace = 'http://www.xignite.com/services/';

# declare the service using the namespace, the SOAP action and the uri
my $service = SOAP::Lite
-> uri($namespace)
-> on_action( sub { join '/', 'http://www.xignite.com/services', $_[1] } )
-> proxy('http://www.xignite.com/xGlobalHistorical.asmx');

# .Net requires the method, header, and attributes to be fully qualified
my $method = SOAP::Data->name('GetGlobalLastClosingPrice')
->attr({xmlns => $namespace});

# this section is required for authentication
# you can skip it if you use IP-based authentication
my $header = SOAP::Header->name(Header => {
Username => '<your username here>'})->uri($namespace)->prefix('');

# same here, you can omit $header if you use IP-based authentication

my @params = ( $header,
SOAP::Data->name(Identifier => "BMW.DE")->uri($namespace),
SOAP::Data->name(IdentifierType => "Symbol")->uri($namespace),
SOAP::Data->name(AdjustmentMethod => "SplitOnly")->uri($namespace));
# you can now call the service
my $result = $service->call($method => @params);
if ($result->fault)
{
print $result->faultstring;
}
else
{
# here we parse the output using the main return class
# and one of its attributes
# Uncoment the line below to print the full result object graph:
# print Dumper($result);
print $result->valueof('//GetGlobalLastClosingPriceResult/objGlobalHistoricalQuote/Last'), "\n";
}

Ruby

This section assumes that you have some knowledge of the Ruby language, and in particular the SOAP library Savon.

require 'rubygems'
require 'savon'
require 'pp'
url = "http://www.xignite.com/xGlobalHistorical.asmx?WSDL"
client = Savon::Client.new(url) response = client.request :GetGlobalLastClosingPrice do
soap.env_namespace = ""
soap.element_form_default = false
soap.namespaces["xmlns:xignite"] = "http://www.xignite.com/services/"
soap.input = "xignite:GetGlobalLastClosingPrice"
soap.header => {
xignite:Header => {
xignite:Username => "YOUR_TOKEN"
}
}
soap.body = {
'xignite:Identifier' => "BMW.DE",
'xignite:IdentifierType' => "Symbol",
'xignite:AdjustmentMethod' => "SplitOnly"
}
end
pp response.to_hash

VB.NET

Dim objGlobalHistoricalService As New RemoteGlobalHistorical.XigniteGlobalHistorical()
Dim objHeader As New RemoteGlobalHistorical.Header = new RemoteGlobalHistorical.Header();
objHeader.Username = "YOUR_TOKEN" objGlobalHistorical.HeaderValue = objHeader

Dim objGlobalHistoricalQuote As RemoteGlobalHistorical.GlobalHistoricalQuote _
= objGlobalHistoricalService.GetGlobalLastClosingPrice("BMW.DE", RemoteGlobalHistorical.IdentifierTypes.Symbol, "SplitOnly")

If Not objGlobalHistoricalQuote Is Nothing Then
Select Case objGlobalHistoricalQuote.Outcome
Case RemoteGlobalHistorical.OutcomeTypes.RegistrationError
' display the error to facilitate diagnostics, e.g.
Console.WriteLine(objGlobalHistoricalQuote.Message)
Case RemoteGlobalHistorical.OutcomeTypes.RequestError
' add processing for handling request problems, e.g.
' you could pass back the info message received from the service
Console.WriteLine(objGlobalHistoricalQuote.Message)
Case RemoteGlobalHistorical.OutcomeTypes.SystemError
' add processing for handling system problems, e.g.
Console.WriteLine("Service is unavailable at this time.")
Case Else
' add processing for displaying the results, e.g.
' display the value for objGlobalHistoricalQuote.Last
' other values could be consumed in the same manner
Console.WriteLine(objGlobalHistoricalQuote.Last)
End Select
Else
' add error processing here
' this condition could be caused by an HTTP error (404,500...)
Console.WriteLine("Service is unavailable at this time.")
End If

VB6

' this DOM object will contain the result of the call
Dim objResult As IXMLDOMSelection
' create an instance of the soap toolkit
Dim objService As New MSSOAPLib30.SoapClient30
' if your network uses a proxy server, add this line
objService.ConnectorProperty("ProxyServer") = "ip of your proxy server"
' SOAP headers are not supported in the toolkit, so we will fake it with this handler
Dim objHeader As ClientHeaderHandler
Set objHeader = New ClientHeaderHandler
' set the username and passwords to your values
objHeader.Username = "YOUR_TOKEN"
Set objService.HeaderHandler = objHeader

' point the the toolkit to the WSDL
objService.mssoapinit "http://www.xignite.com/xGlobalHistorical.asmx?WSDL"

' load the result into the DOM object
Set objResult = objService.GetGlobalLastClosingPrice("BMW.DE", RemoteGlobalHistorical.IdentifierTypes.Symbol, "SplitOnly")

' you can access the properties this way:
' where objResult(5).nodeName is the name of the 5th field of the instance returned
' and objResult(5).Text is the value
MsgBox objResult(5).nodeName & " = " & objResult(5).Text


' you must also add this class to your code.
' it will create the SOAP header to pass with your request
Class Module "ClientHeaderHandler"
Option Explicit
Implements IHeaderHandler

Private m_uid As String
Private m_pwd As String
Private m_tracer As String

Property Let Username(ByVal value As String)
m_uid = value
End Property

Property Let Password(ByVal value As String)
m_pwd = value
End Property

Property Let Tracer(ByVal value As String)
m_tracer = value
End Property

Private Function iHeaderHandler_ReadHeader( _
ByVal par_reader As MSSOAPLib30.ISoapReader, _
ByVal par_HeaderNode As MSXML2.IXMLDOMNode, _
ByVal par_object As Object) As Boolean
iHeaderHandler_ReadHeader = False
End Function

Private Function iHeaderhandler_willWriteHeaders() As Boolean
iHeaderhandler_willWriteHeaders = True
End Function

Private Sub iHeaderHandler_WriteHeaders( _
ByVal par_serializer As MSSOAPLib30.ISoapSerializer, _
ByVal par_object As Object)

Dim XigniteHeaderString As String

XigniteHeaderString = "<Header xmlns="http://www.xignite.com/services/"> " & _
"<Username>" & m_uid & "</Username>" & _
"<Password>" & m_pwd & "</Password>" & _
"<Tracer>" & m_tracer & "</Tracer>" & _
"</Header>"

par_serializer.WriteXml XigniteHeaderString
End Sub

XSLT

When working with XSL, you only need to worry about properly dealing with namespaces.

The general principle in working with XSL is to apply the stylesheet (the XSL document) to the output of the web service (XML document). The code required to accomplish this varies based on your envirobment. For instance, using VB.Net it would be:

Dim objSOAPClient
Dim objTemplate As New System.Xml.Xsl.XslTransform()
objTemplate.Load(<url_of_XSL_template>)
objTemplate.Transform(<url_of_input_document>,<url_of_output_document>)

In the code above, you want to replace the <url_of_input_document> with the following URL.

http://www.xignite.com/xGlobalHistorical.asmx/GetGlobalLastClosingPrice?Identifier=BMW.DE&IdentifierType=IdentifierTypesSymbol&AdjustmentMethod=SplitOnly


And this is how you could write the XSL stylesheet. Note that all node names are prefixed.

<?xml version="1.0"?>
<xsl:stylesheet xmlns:xsl="http://www.w3.org/1999/XSL/Transform"
xmlns:xi="http://www.xignite.com/services/"
version="1.0" exclude-result-prefixes="xi">
<xsl:template match="xi:GlobalHistoricalQuote">
<p>
<xsl:value-of select="xi:Last"/>
</p>
</xsl:template>
</xsl:template></xsl:stylesheet>

The sample code is provided "as is" without any express or implied warranty. You are solely responsible for obtaining any necessary licenses or ownership rights, including for Xignite APIs and open source code, to use this sample code. Xignite has no obligation to test, certify, or support its use.


Sample Requests

All Xignite APIs support multiple, easy-to-use, open standard protocols. You can place requests against the API using a simple REST request using POST or GET or you can place a request using SOAP. The sections below show how properly formed requests and corresponding outputs look like for each protocol.

SOAP Request for GetGlobalLastClosingPrice

Request

POST http://www.xignite.com/xGlobalHistorical.asmx HTTP/1.1
Host: www.xignite.com
Content-Type: text/xml; charset=utf-8
Content-Length: length
SOAPAction: "http://www.xignite.com/services/GetGlobalLastClosingPrice"

<?xml version="1.0" encoding="utf-8"?>
<soap:Envelope 
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
xmlns:xsd="http://www.w3.org/2001/XMLSchema"
xmlns:soap="http://schemas.xmlsoap.org/soap/envelope/"> <soap:Header> <Header xmlns="http://www.xignite.com/services/"> <Username>string</Username> <Password>string</Password> <Tracer>string</Tracer> </Header> </soap:Header> <soap:Body> <GetGlobalLastClosingPrice xmlns="http://www.xignite.com/services/"> <Identifier>string</Identifier> <IdentifierType>Symbol or CIK or CUSIP or ISIN or Valoren or SEDOL</IdentifierType> <AdjustmentMethod>None or SplitOnly or CashDividendOnly or SplitAndProportionalCashDividend
or SplitAndCashDividend or All or DefaultValue</AdjustmentMethod> </GetGlobalLastClosingPrice> </soap:Body> </soap:Envelope>

Response

HTTP/1.1 200 OK
Content-Type: text/xml; charset=utf-8
Content-Length: length

<?xml version="1.0" encoding="utf-8"?>
<soap:Envelope 
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
xmlns:xsd="http://www.w3.org/2001/XMLSchema"
xmlns:soap="http://schemas.xmlsoap.org/soap/envelope/"> <soap:Body> <GetGlobalLastClosingPriceResponse xmlns="http://www.xignite.com/services/"> <GetGlobalLastClosingPriceResult> <AbstractGlobalHistoricalObject> <Common> <Outcome>Success or SystemError or RequestError or RegistrationError
</Outcome> <Message>string</Message> <Identity>string</Identity> <Delay>double</Delay> </Common> </AbstractGlobalHistoricalObject> <Security> <Common> <Outcome>Success or SystemError or RequestError or RegistrationError
</Outcome> <Message>string</Message> <Identity>string</Identity> <Delay>double</Delay> </Common> <CIK>string</CIK> <Cusip>string</Cusip> <Symbol>string</Symbol> <ISIN>string</ISIN> <Valoren>string</Valoren> <Name>string</Name> <Market>string</Market> <CategoryOrIndustry>string</CategoryOrIndustry> </Security> <Date>string</Date> <Last>double</Last> <Open>double</Open> <High>double</High> <Low>double</Low> <Volume>double</Volume> <LastClose>double</LastClose> <ChangeFromOpen>double</ChangeFromOpen> <PercentChangeFromOpen>double</PercentChangeFromOpen> <ChangeFromLastClose>double</ChangeFromLastClose> <PercentChangeFromLastClose>double</PercentChangeFromLastClose> <SplitRatio>double</SplitRatio> <CummulativeCashDividend>double</CummulativeCashDividend> <CummulativeStockDividendRatio>double</CummulativeStockDividendRatio> <Currency>USD or AED or AFA or AFN or ALL or AMD or ANG or AOA
or ARA or ARE or ARS or ATS or AUD or AUN or AWG or AZM
or BAM or BBD or BDT or BEF or BEL or BGL or BGN or BHD
or BIF or BMD or BND or BOB or BOV or BRC or BRE or BRI
or BRL or BRR or BSD or BTN or BWP or BYR or BZD or CAD
or CDF or CHF or CLF or CHK or CLP or CNY or COP or CRC
or CSD or CUP or CVE or CYP or CZK or DEM or DJF or DKK
or DOP or DOE or DOW or DZD or ECS or EEK or EGP or ERN
or ESP or ETB or EUR or FIM or FJD or FKP or FRF or FRN
or GBP or GEL or GGP or GHC or GHS or GIP or GMD or GNF
or GRD or GTQ or GYD or HKD or HNL or HRD or HRK or HTG
or HUF or IDR or IEP or ILS or IMP or INR or IQD or IRR
or ISK or ITL or JEP or JMD or JOD or JPY or KES or KGS
or KHR or KMF or KPW or KRU or KRW or KWD or KYD or KZT
or LAK or LBP or LKR or LRD or LSL or LTL or LUF or LVL
or LYD or M5P or MAD or MAL or MDL or MFG or MGA or MKD
or MMK or MNT or MOP or MRO or MTL or MTP or MUR or MVR
or MWK or MXN or MXP or MXV or MYR or MZM or MZN or NAD
or NBL or NGN or NIC or NIO or NLG or NOK or NPR or NSO
or NZD or OMR or OSO or PAB or PEI or PEN or PES or PGK
or PHP or PKR or PLN or PLZ or PTE or PYG or QAR or ROL
or RON or RSD or RUB or RUR or RWF or SAR or SBD or SCR
or SDD or SDP or SDR or SEK or SGD or SHP or SIT or SKK
or SLL or SOS or SPL or SRG or STD or SUR or SVC or SYP
or SZL or THB or TJR or TJS or TMM or TND or TOP or TRL
or TRY or TTD or TVD or TWD or TZS or UAH or UGX or UNK
or UYP or UYU or UZS or VEB or VEF or VND or VRL or VRN
or VUV or WST or XAF or XAG or XAU or XCD or XDR or XEU
or XOF or XPD or XPF or XPT or YER or YUD or YUM or ZAL
or ZAR or ZMK or ZRN or ZRZ or ZWD or BAD or NOCURRENCY
</Currency> <AdjustmentMethodUsed>None or SplitOnly or CashDividendOnly or SplitAndProportionalCashDividend
or SplitAndCashDividend or All or DefaultValue</AdjustmentMethodUsed> <DataConfidence>Valid or MissingId or UnknownDate or UnknownOpen or UnknownHigh
or UnknownLow or UnknownClose or UnknownVolume or LowGreaterThanHigh
or CloseGreaterThanHigh or OpenGreaterThanHigh or CloseLessThanLow
or HighLessThanLow or OpenLessThanLow or UnknownExchange
or MissingLastClose or UnknownCurrency or DividendCurrencyDoesNotMatchQuoteCurrency
</DataConfidence> </GetGlobalLastClosingPriceResult> </GetGlobalLastClosingPriceResponse> </soap:Body> </soap:Envelope>

REST GET Request for GetGlobalLastClosingPrice

Request

GET http://www.xignite.com/xGlobalHistorical.asmx/GetGlobalLastClosingPrice?
Identifier=string&IdentifierType=string&AdjustmentMethod=string
HTTP/1.1 Host: www.xignite.com

Response

HTTP/1.1 200 OK
Content-Type: text/xml; charset=utf-8
Content-Length: length

<?xml version="1.0" encoding="utf-8"?>
<GlobalHistoricalQuote xmlns="http://www.xignite.com/services/">
  <AbstractGlobalHistoricalObject>
    <Common>
      <Outcome>Success or SystemError or RequestError or RegistrationError
</Outcome> <Message>string</Message> <Identity>string</Identity> <Delay>double</Delay> </Common> </AbstractGlobalHistoricalObject> <Security> <Common> <Outcome>Success or SystemError or RequestError or RegistrationError
</Outcome> <Message>string</Message> <Identity>string</Identity> <Delay>double</Delay> </Common> <CIK>string</CIK> <Cusip>string</Cusip> <Symbol>string</Symbol> <ISIN>string</ISIN> <Valoren>string</Valoren> <Name>string</Name> <Market>string</Market> <CategoryOrIndustry>string</CategoryOrIndustry> </Security> <Date>string</Date> <Last>double</Last> <Open>double</Open> <High>double</High> <Low>double</Low> <Volume>double</Volume> <LastClose>double</LastClose> <ChangeFromOpen>double</ChangeFromOpen> <PercentChangeFromOpen>double</PercentChangeFromOpen> <ChangeFromLastClose>double</ChangeFromLastClose> <PercentChangeFromLastClose>double</PercentChangeFromLastClose> <SplitRatio>double</SplitRatio> <CummulativeCashDividend>double</CummulativeCashDividend> <CummulativeStockDividendRatio>double</CummulativeStockDividendRatio> <Currency>USD or AED or AFA or AFN or ALL or AMD or ANG or AOA
or ARA or ARE or ARS or ATS or AUD or AUN or AWG or AZM
or BAM or BBD or BDT or BEF or BEL or BGL or BGN or BHD
or BIF or BMD or BND or BOB or BOV or BRC or BRE or BRI
or BRL or BRR or BSD or BTN or BWP or BYR or BZD or CAD
or CDF or CHF or CLF or CHK or CLP or CNY or COP or CRC
or CSD or CUP or CVE or CYP or CZK or DEM or DJF or DKK
or DOP or DOE or DOW or DZD or ECS or EEK or EGP or ERN
or ESP or ETB or EUR or FIM or FJD or FKP or FRF or FRN
or GBP or GEL or GGP or GHC or GHS or GIP or GMD or GNF
or GRD or GTQ or GYD or HKD or HNL or HRD or HRK or HTG
or HUF or IDR or IEP or ILS or IMP or INR or IQD or IRR
or ISK or ITL or JEP or JMD or JOD or JPY or KES or KGS
or KHR or KMF or KPW or KRU or KRW or KWD or KYD or KZT
or LAK or LBP or LKR or LRD or LSL or LTL or LUF or LVL
or LYD or M5P or MAD or MAL or MDL or MFG or MGA or MKD
or MMK or MNT or MOP or MRO or MTL or MTP or MUR or MVR
or MWK or MXN or MXP or MXV or MYR or MZM or MZN or NAD
or NBL or NGN or NIC or NIO or NLG or NOK or NPR or NSO
or NZD or OMR or OSO or PAB or PEI or PEN or PES or PGK
or PHP or PKR or PLN or PLZ or PTE or PYG or QAR or ROL
or RON or RSD or RUB or RUR or RWF or SAR or SBD or SCR
or SDD or SDP or SDR or SEK or SGD or SHP or SIT or SKK
or SLL or SOS or SPL or SRG or STD or SUR or SVC or SYP
or SZL or THB or TJR or TJS or TMM or TND or TOP or TRL
or TRY or TTD or TVD or TWD or TZS or UAH or UGX or UNK
or UYP or UYU or UZS or VEB or VEF or VND or VRL or VRN
or VUV or WST or XAF or XAG or XAU or XCD or XDR or XEU
or XOF or XPD or XPF or XPT or YER or YUD or YUM or ZAL
or ZAR or ZMK or ZRN or ZRZ or ZWD or BAD or NOCURRENCY
</Currency> <AdjustmentMethodUsed>None or SplitOnly or CashDividendOnly or SplitAndProportionalCashDividend
or SplitAndCashDividend or All or DefaultValue</AdjustmentMethodUsed> <DataConfidence>Valid or MissingId or UnknownDate or UnknownOpen or UnknownHigh
or UnknownLow or UnknownClose or UnknownVolume or LowGreaterThanHigh
or CloseGreaterThanHigh or OpenGreaterThanHigh or CloseLessThanLow
or HighLessThanLow or OpenLessThanLow or UnknownExchange
or MissingLastClose or UnknownCurrency or DividendCurrencyDoesNotMatchQuoteCurrency
</DataConfidence> </GlobalHistoricalQuote>

REST POST Request for GetGlobalLastClosingPrice

Request

POST http://www.xignite.com/xGlobalHistorical.asmx/GetGlobalLastClosingPrice HTTP/1.1
Host: www.xignite.com
Content-Type: application/x-www-form-urlencoded
Content-Length: length

Identifier=string&IdentifierType=string&AdjustmentMethod=string

Response

HTTP/1.1 200 OK
Content-Type: text/xml; charset=utf-8
Content-Length: length

<?xml version="1.0" encoding="utf-8"?>
<GlobalHistoricalQuote xmlns="http://www.xignite.com/services/">
  <AbstractGlobalHistoricalObject>
    <Common>
      <Outcome>Success or SystemError or RequestError or RegistrationError
</Outcome> <Message>string</Message> <Identity>string</Identity> <Delay>double</Delay> </Common> </AbstractGlobalHistoricalObject> <Security> <Common> <Outcome>Success or SystemError or RequestError or RegistrationError
</Outcome> <Message>string</Message> <Identity>string</Identity> <Delay>double</Delay> </Common> <CIK>string</CIK> <Cusip>string</Cusip> <Symbol>string</Symbol> <ISIN>string</ISIN> <Valoren>string</Valoren> <Name>string</Name> <Market>string</Market> <CategoryOrIndustry>string</CategoryOrIndustry> </Security> <Date>string</Date> <Last>double</Last> <Open>double</Open> <High>double</High> <Low>double</Low> <Volume>double</Volume> <LastClose>double</LastClose> <ChangeFromOpen>double</ChangeFromOpen> <PercentChangeFromOpen>double</PercentChangeFromOpen> <ChangeFromLastClose>double</ChangeFromLastClose> <PercentChangeFromLastClose>double</PercentChangeFromLastClose> <SplitRatio>double</SplitRatio> <CummulativeCashDividend>double</CummulativeCashDividend> <CummulativeStockDividendRatio>double</CummulativeStockDividendRatio> <Currency>USD or AED or AFA or AFN or ALL or AMD or ANG or AOA
or ARA or ARE or ARS or ATS or AUD or AUN or AWG or AZM
or BAM or BBD or BDT or BEF or BEL or BGL or BGN or BHD
or BIF or BMD or BND or BOB or BOV or BRC or BRE or BRI
or BRL or BRR or BSD or BTN or BWP or BYR or BZD or CAD
or CDF or CHF or CLF or CHK or CLP or CNY or COP or CRC
or CSD or CUP or CVE or CYP or CZK or DEM or DJF or DKK
or DOP or DOE or DOW or DZD or ECS or EEK or EGP or ERN
or ESP or ETB or EUR or FIM or FJD or FKP or FRF or FRN
or GBP or GEL or GGP or GHC or GHS or GIP or GMD or GNF
or GRD or GTQ or GYD or HKD or HNL or HRD or HRK or HTG
or HUF or IDR or IEP or ILS or IMP or INR or IQD or IRR
or ISK or ITL or JEP or JMD or JOD or JPY or KES or KGS
or KHR or KMF or KPW or KRU or KRW or KWD or KYD or KZT
or LAK or LBP or LKR or LRD or LSL or LTL or LUF or LVL
or LYD or M5P or MAD or MAL or MDL or MFG or MGA or MKD
or MMK or MNT or MOP or MRO or MTL or MTP or MUR or MVR
or MWK or MXN or MXP or MXV or MYR or MZM or MZN or NAD
or NBL or NGN or NIC or NIO or NLG or NOK or NPR or NSO
or NZD or OMR or OSO or PAB or PEI or PEN or PES or PGK
or PHP or PKR or PLN or PLZ or PTE or PYG or QAR or ROL
or RON or RSD or RUB or RUR or RWF or SAR or SBD or SCR
or SDD or SDP or SDR or SEK or SGD or SHP or SIT or SKK
or SLL or SOS or SPL or SRG or STD or SUR or SVC or SYP
or SZL or THB or TJR or TJS or TMM or TND or TOP or TRL
or TRY or TTD or TVD or TWD or TZS or UAH or UGX or UNK
or UYP or UYU or UZS or VEB or VEF or VND or VRL or VRN
or VUV or WST or XAF or XAG or XAU or XCD or XDR or XEU
or XOF or XPD or XPF or XPT or YER or YUD or YUM or ZAL
or ZAR or ZMK or ZRN or ZRZ or ZWD or BAD or NOCURRENCY
</Currency> <AdjustmentMethodUsed>None or SplitOnly or CashDividendOnly or SplitAndProportionalCashDividend
or SplitAndCashDividend or All or DefaultValue</AdjustmentMethodUsed> <DataConfidence>Valid or MissingId or UnknownDate or UnknownOpen or UnknownHigh
or UnknownLow or UnknownClose or UnknownVolume or LowGreaterThanHigh
or CloseGreaterThanHigh or OpenGreaterThanHigh or CloseLessThanLow
or HighLessThanLow or OpenLessThanLow or UnknownExchange
or MissingLastClose or UnknownCurrency or DividendCurrencyDoesNotMatchQuoteCurrency
</DataConfidence> </GlobalHistoricalQuote>

Knowledge Base Search

Find answers to your questions - search our FAQs by keyword.

Loading FAQs...

Here are our most popular FAQs. Alternatively you can search our FAQs by using the search box above or browse our FAQs.

Contact Support

Email

Standard Support: 1 Business Day
Premium Support: 2 Business Hours
support@xignite.com

Phone

Monday-Friday 9:00am-6:00pm Eastern US Time
Toll-Free: 1-866-965-7627
Phone: (650) 655-3700

See more information

Request a Consultation

We're here to assist you with your questions
Talk to an expert now