Versions Compared

Key

  • This line was added.
  • This line was removed.
  • Formatting was changed.

...

Code Block
Request:
GET /api/v1.0/global/list?field=Sponsor


Response:
{
  "data": [
    "BOOST",
    "Blackrock (iShares)",
    "China Asset Management",
    "Source Holdings",
    "ETF Securities",
    "KSM",
    "Barclays iPath",
    "Van Eck Associates Corporation",
    "DBX Strategic Advisors",
    "UBS",
    "Amundi",
    "First Trust"
  ],
  "message": null,
  "status": true
}


Filter API

field parameter can have following valuesThis API returns all the fields in the Global ETF Object for specified input values. The input values must be from one of the query-able fields specified below. The possible input values for the query-able fields can be got using the Listing APIs .

CompositeTicker

Sponsor

BloombergSymbol

...

ExchangeName

ExchangeCode

AssetClass

To get possible value for a given field you can use Listing APIs

The default value for count is 100 and offset is 0.

The max value for count is 100.

Code Block
Request:
GET /api/v1.0/global/filter?field=ExchangeCode&value=XMIL&count=100&offset=0


Response:
{
	"data" : [List of Global ETF objects],
	"status" : true,
	"message" : null
}

...