MutualFundBroker-API
  1. mutual_fund_broker
MutualFundBroker-API
  • mutual_fund_broker
    • User Registration
      POST
    • User Login
      POST
    • Add Investment
      POST
    • Fetch Portfolio
      GET
    • Fetch Funds by Fund Family
      GET
  1. mutual_fund_broker

Fetch Funds by Fund Family

GET
/funds/
Fetches details about mutual funds available within a specified fund family (e.g., Motilal Oswal, UTI). The user provides the fund family name as a query parameter, and the response contains details about available schemes within that fund family, including the NAV and scheme names.

Request

Authorization
Provide your bearer token in the
Authorization
header when making requests to protected resources.
Example:
Authorization: Bearer ********************
Query Params

Request Code Samples

Shell
JavaScript
Java
Swift
Go
PHP
Python
HTTP
C
C#
Objective-C
Ruby
OCaml
Dart
R
Request Request Example
Shell
JavaScript
Java
Swift
curl --location --request GET 'http://localhost:8000/funds/?fund_family=Motilal Oswal Mutual Fund' \
--header 'Authorization: Bearer <token>'

Responses

🟢200Success
application/json
Body

Example
{
    "nav": 10.6374,
    "id": 7825,
    "scheme_name": "Motilal Oswal Nifty MidSmall IT and Telecom Index Fund-Regular Plan-Growth",
    "scheme_category": "Other Scheme - Index Funds",
    "fund_family": "Motilal Oswal Mutual Fund",
    "scheme_code": "153028",
    "scheme_type": "Open Ended Schemes",
    "date": "2024-12-20T00:00:00"
},
{
    "nav": 9.6412,
    "id": 7920,
    "scheme_name": "Motilal Oswal Nifty Capital Market Index Fund - Direct Plan - Growth",
    "scheme_category": "Other Scheme - Index Funds",
    "fund_family": "Motilal Oswal Mutual Fund",
    "scheme_code": "153138",
    "scheme_type": "Open Ended Schemes",
    "date": "2024-12-20T00:00:00"
}
Modified at 2024-12-22 14:59:59
Previous
Fetch Portfolio
Built with