Skip to main content

ETF

ETF APIS

ETF Details​

  1. ETF Details

Request

curl --location --request GET https://fundsapi.wealthydev.in/market/v0/schemes/<id_type>/<id_value>/ 

Response

    {
"data": {
"isin": "INF769K01HS7",
"name": "Mirae Asset Hang Seng TECH ETF",
"display_name":null,
"ytd": 0.0,
"one_week": 0.0,
"one_month": 0.0,
"three_months": 0.0,
"six_months": 0.0,
"one_year": 0.0,
"two_years": 0.0,
"three_years": 0.0,
"five_years": 0.0,
"pe": 0.0,
"pb": 0.0,
"aum": 98.0678,
"expense_ratio": 0.5,
"fund_manager": "Siddharth Srivastava",
"launch_date": "2021-11-17"
}
}

Similar ETFs​

  1. Similar ETFs Request
curl --location --request GET https://fundsapi.wealthydev.in/market/v0/schemes/etfs/<id_type>/<id_value>/similar/

URL Example: https://fundsapi.wealthydev.in/market/v0/schemes/etfs/isin/INF769K01HS7/similar/

Response

    {
"data": [
{
"isin": "INF204KB19I1",
"name": "Nippon India ETF Hang Seng Bees",
"display_name": null,
"ytd": 0.0,
"one_week": 0.0,
"one_month": 0.0,
"three_months": 0.0,
"six_months": 0.0,
"one_year": 0.0,
"two_years": 0.0,
"three_years": 0.0,
"five_years": 0.0,
"pe": 0.0,
"pb": 0.0,
"aum": 101.8857,
"expense_ratio": 0.93,
"fund_manager": "Siddharth Deb",
"launch_date": "2010-02-15"
},
{
"isin": "INF247L01AP3",
"name": "Motilal Oswal NASDAQ 100 ETF",
"display_name": null,
"ytd": 0.0,
"one_week": 0.0,
"one_month": 0.0,
"three_months": 0.0,
"six_months": 0.0,
"one_year": 0.0,
"two_years": 0.0,
"three_years": 0.0,
"five_years": 0.0,
"pe": 0.0,
"pb": 0.0,
"aum": 5033.3925,
"expense_ratio": 0.58,
"fund_manager": "Ankush Sood",
"launch_date": "2011-03-16"
},
{
"isin": "INF247L01AU3",
"name": "Motilal Oswal Nasdaq Q 50 ETF",
"display_name": null,
"ytd": 0.0,
"one_week": 0.0,
"one_month": 0.0,
"three_months": 0.0,
"six_months": 0.0,
"one_year": 0.0,
"two_years": 0.0,
"three_years": 0.0,
"five_years": 0.0,
"pe": 0.0,
"pb": 0.0,
"aum": 19.8981,
"expense_ratio": 0.42,
"fund_manager": "Ankush Sood",
"launch_date": "2021-12-10"
},
{
"isin": "INF769K01HF4",
"name": "Mirae Asset NYSE FANG+ ETF",
"display_name": null,
"ytd": 0.0,
"one_week": 0.0,
"one_month": 0.0,
"three_months": 0.0,
"six_months": 0.0,
"one_year": 0.0,
"two_years": 0.0,
"three_years": 0.0,
"five_years": 0.0,
"pe": 0.0,
"pb": 0.0,
"aum": 994.7227,
"expense_ratio": 0.71,
"fund_manager": "Siddharth Srivastava",
"launch_date": "2021-04-19"
}
]
}

ETF by Category​

  1. ETFs by Category \ Request
curl --location --request GET https://fundsapi.wealthydev.in/market/v0/screeners/schemes/etfs/

Query parameters with valid values:

Type:

  1. 'gs' - Gold and Silver
  2. 'wi' - World Indices
  3. 'nse' - NSE
  4. 'bse' - BSE
  5. 'debt' - Debt

Note: Provide all the required etfs types in the query params comma separated.

URL Example:

https://fundsapi.wealthydev.in/market/v0/screeners/schemes/etfs/?type=gs,wi

This will return all 'gold and silver' and 'world index' etfs.

Response

        {
"data": [
{
"isin": "INF769K01HS7",
"name": "Mirae Asset Hang Seng TECH ETF",
"display_name": null,
"ytd": 0.0,
"one_week": 0.0,
"one_month": 0.0,
"three_months": 0.0,
"six_months": 0.0,
"one_year": 0.0,
"two_years": 0.0,
"three_years": 0.0,
"five_years": 0.0,
"pe": 0.0,
"pb": 0.0,
"aum": 98.0678,
"expense_ratio": 0.5,
"fund_manager": "Siddharth Srivastava",
"launch_date": "2021-11-17"
},
{
"isin": β€œINF204KB19I1",
"name": "Nippon India ETF Hang Seng Bees",
"display_name": null,
"ytd": 0.0,
"one_week": 0.0,
"one_month": 0.0,
"three_months": 0.0,
"six_months": 0.0,
"one_year": 0.0,
"two_years": 0.0,
"three_years": 0.0,
"five_years": 0.0,
"pe": 0.0,
"pb": 0.0,
"aum": 101.8857,
"expense_ratio": 0.93,
"fund_manager": "Siddharth Deb",
"launch_date": "2010-02-15"
}
]
}