Trading API Documentation

Base URL: https://trading.fusionfund.in

This page lists available controllers and endpoints with examples. Use POST requests with Content-Type: application/json when sending JSON payloads.

Endpoints

Open Test Tool

RegisterController

MethodPathDescriptionParameters / ExampleResponse
GET
/Register/CheckSponser?id={sponsor_id}
Check whether a sponsor id exists.
id (string) — required
JSON (sponsor info or error)
POST
/Register/Registration
Create a new member.
{
  "password": "P@ssw0rd",
  "confirm_password": "P@ssw0rd",
  "mob_no": "9876543210",
  "email": "user@example.com",
  "sponser_id": "NX0001",
  "member_name": "John Doe"
}
JSON { "Success": "1", "Message": "..." , ... }
GET
/Register/LoadCountry?f={format}
Return mobile codes for countries.
f = json or html
JSON array (json) or <option> elements (html)

LogInController

MethodPathDescriptionParameters / ExampleResponse
POST
/LogIn/LogInUser
Authenticate user and return a token.
{
  "log_id": "NX0001",
  "pass": "P@ssw0rd"
}
JSON { "Success": "1", "TokenValue": "..." }
POST
/LogIn/ForgetPassword
Send password via mobile or email.
{
  "log_id": "NX0001",
  "mode": "mobile"
}
JSON { "Success": "1", "Message": "..." }

Notes

If you need more examples or machine-readable API metadata (OpenAPI/Swagger), consider adding a JSON schema or Swagger generation to this project.