Fund Limits

Unlock a comprehensive view of your trading account with our API, offering real-time data and insights:

Holistic Account Insights:

Easily retrieve key details like balance, margin utilization, and collateral. Stay informed about your financial standing for confident decision-making.

Dynamic Funds Data:

Use our API to get real-time user funds data for equity and commodity markets. Track metrics such as margin utilization, available margin, and total pay-in amount, empowering you with the latest financial information.

Note

Request body not required for this API

Header Body:

Name Description
Authorization Access token obtained in after successful login
user-Id Client id of the user

Sample Response 1

{
   "systemMessage": "200 - Success",
   "systemMessageType": "success",
   "success": true,
   "data": [
      {
         "request_date_time": "21-02-2024 11:16:07",
         "status": "Ok",
         "profile_name": "ALLLEVEL",
         "cash": "100000000.00",
         "pay_in": "0.00",
         "pay_out": "0.00",
         "broker_collateral_amount": "0.00",
         "margin_used": "11100.00",
         "uncleared_cash": "0.00",
         "aux_daycash": "0.00",
         "aux_broker_collateral": "0.00",
         "aux_uncleared_cash": "0.00",
         "day_cash": "0.00",
         "turn_over_limit": "999999999999.00",
         "pending_order_limit": "999999999999.00",
         "blocked_amount": "0.00",
         "turn_over": "11100.00",
         "unrealized_mtom_e_i": "-1044.90",
         "scrip_basket_margin_e_i": "11100.00",
         "remarks_text": "",
         "remarks_amount": "0.00",
         "margin_used_percentage": "0.01"
      }
   ]
}
									

Sample Response 2

{
   "systemMessage": "401 - Unauthorized",
   "systemMessageType": "failed",
   "success": false
}
									

Sample Response 3

{
   "systemMessage": "400 - Bad Request",
   "systemMessageType": "failed",
   "success": false,
   "error": {
      "error_message": "user_id Not Provided"
   }
}
									

POST/client-handler-api/v1/funds/limits

										
cURL

Copied!

curl --location --request POST 'https://orca-uatapi.enrichmoney.in/client-handler-api/v1/funds/limits' \ --header 'Authorization: {{jwt_token}}' \ --header 'Content-Type: application/json' \ --header 'user-Id: {{userid}}'
										
python / requests

Copied!

import requests url = "https://orca-uatapi.enrichmoney.in/client-handler-api/v1/funds/limits" payload={} headers = { 'Authorization': '{{jwt_token}}', 'Content-Type': 'application/json', 'user-Id': '{{userid}}' } response = requests.request("POST", url, headers=headers, data=payload) print(response.text)
										
java / unirest

Copied!

Unirest.setTimeouts(0, 0); HttpResponse response = Unirest.post("https://orca-uatapi.enrichmoney.in/client-handler-api/v1/funds/limits") .header("Authorization", "{{jwt_token}}") .header("Content-Type": "application/json") .header("user-Id", "{{userid}}") .asString();
										
nodejs / axios

Copied!

var axios = require('axios'); var config = { method: 'post', maxBodyLength: Infinity, url: 'https://orca-uatapi.enrichmoney.in/client-handler-api/v1/funds/limits', headers: { 'Authorization': '{{jwt_token}}', 'Content-Type': 'application/json', 'user-Id': '{{userid}}' } }; axios(config) .then(function (response) { console.log(JSON.stringify(response.data)); }) .catch(function (error) { console.log(error); });

Mail Us

api-support@enrichmoney.in

Call Us

044 40063663/044 35000470

Powered by Enrich Money