empty

คาร์บิเน็ตลูกค้า API

สิ่งสำคัญที่สุดในการทำงานของ InstaForex คือการให้บริการที่ทันสมัยเพื่อให้ลูกค้าประสบความสำเร็จในการซื้อขาย นับตั้งแต่วันแรกโบรกเกอร์นานาชาติอย่าง InstaForex ได้มุ่งมั่นพัฒนาการดำเนินงานด้านการลงทุนในตลาด Forex รูปแบบใหม่ๆให้แก่ลูกค้าอยู่เสมอ

นอกเหนือจากประโยชน์ต่างๆจากการทำงานกับ InstaForex แล้ว ลูกค้าทุกๆท่านในบริษัทของเราสามารถที่จะได้รับผลประโยชน์กับการบริการใหม่อีกด้วย

API เป็นฟังก์ชั่นห้องสมุดขนาดใหญ่ที่พร้อมสำหรับการใช้งานของลูกค้า InstaForex ทุกๆคน ด้วยการบริการแบบใหม่นี้ คุณสามารถที่จะมีการทำงานหลักของ Client Cabinet ในแหล่งข่าวจากเว็ปไซต์ใดๆก็ตาม

เพราะฉะนั้นลูกค้าของบริษัท InstaForex ทุกท่านสามารถจะใช้ประโยชน์จากเซตทางเลือกของ Client Cabinet ดังกล่าวได้ คำถามหรือข้อสงสัยใดๆจะเปิดให้ซักถามเกี่ยวกับ การเปิด-ปิดเทรด, ยอดบัญชีคงเหลือ, การปิดทั้งหลายทั้งปวงในช่วงระยะเวลาใดเวลาหนึ่งที่แน่นอน, โบนัสสถิติ, ประวัติการล็อคอิน และการสรุปบัญชี

ระดับการเข้าถึงทั้งหมด

ระดับการเข้าถึงClient Cabinet API ฟังก์ชั่น มีอยู่ทั้งหมด 2 ระดับ

การเข้าถึงแบบฟรีนั้นไม่ได้ต้องการข้อมูลเพิ่มเติมแต่อย่างใด

ทั้งหมดนี้ขึ้นอยู่กับการตั้งค่ากับขอบเขตของการเข้าถึงที่คุณสามารถจะดูข้อมูลได้ก็ต่อเมื่อ หลังจากใส่รหัสหรือรหัสIP และIP mask ลงไปแล้วเท่านั้น

Client Cabinet API สามารถทำให้ลูกค้าของบริษัท InstaForex ทุกราย ในการตรวจสอบรักษาบัญชีการเทรด โดยปราศจากการล็อคอินเข้าสู่ Client Cabinet บนเว็ปไซต์อย่างเป็นทางการของบริษัท

ตัวอย่าง PHP

$Login = 0; #Must be Changed
$apiPassword = "password"; #Must be Changed
$data = array("Login" => $Login, "Password" => $apiPassword);
$data_string = json_encode($data);

$apiAuthenticationMethod = ''; #Must be Changed
$ch = curl_init('https://client-api.instaforex.com/'.$apiAuthenticationMethod);

curl_setopt($ch, CURLOPT_CUSTOMREQUEST, "POST");
curl_setopt($ch, CURLOPT_POSTFIELDS, $data_string);
curl_setopt($ch, CURLOPT_RETURNTRANSFER, true);
curl_setopt($ch, CURLOPT_HTTPHEADER, array('Content-Type: application/json', 'Content-Length: ' . strlen($data_string)));

$token = curl_exec($ch);
curl_close($ch);

$apiMethodUrl = ''; #Must be Changed
$ch = curl_init('https://client-api.instaforex.com/'.$apiMethodUrl.$Login); #possibly Must be Changed part with [$Login]. Depends on the method param
curl_setopt($ch, CURLOPT_CUSTOMREQUEST, "GET");
curl_setopt($ch, CURLOPT_HTTPHEADER, array('passkey: '.$token));
$result = curl_exec($ch);
echo $result;

ตัวอย่าง C#

using System;
using System.Collections.Generic;
using System.Linq;
using System.Net.Http;
using System.Net.Http.Formatting;
using System.Text;

namespace ClientPartnerApiDemoProject{
class PartnerApiSample{
public void TestMethod(){
const int login = 000000;
const string pass = "your pass";
var token = GetToken(login, pass);
var result = GetCommissionRecords(login, token);
foreach (var trade in result){
Console.WriteLine("{0} {1}",trade.Partner, trade.BalanceRecords.Count);
}
}
public string GetToken(int login, string password){
var client = new HttpClient();
HttpContent tokenContent = new ObjectContent(typeof(AccessTokenRequest), new AccessTokenRequest { Login = login, Password = password }, new JsonMediaTypeFormatter());
var token = client.PostAsync("https://client-api.instaforex.com/api/Authentication/RequestPartnerApiToken", tokenContent).Result.Content.ReadAsStringAsync().Result;
return token;
}
public List GetCommissionRecords(int login, string token){
var client = new HttpClient();
client.DefaultRequestHeaders.Add("passkey", token);
var result = client.GetAsync(string.Format("https://client-api.instaforex.com/partner/GetCommissionRecords/{0}", login)).Result.Content.ReadAsAsync>().Result;
return result;
}
public class AccessTokenRequest{
public int Login { get; set; }
public string Password { get; set; }
}
}
}

ดูเพิ่มเติม

Grand Choice Contest by InstaForex

InstaForex always strives to help you fulfill your biggest dreams. We all have different dreams and goals. We have taken it into account before launching our new contest. This time, we have prepared more than one prize. The winner will have the opportunity to decide which of the dreams to pursue.

Grand Choice Contest by InstaForex

InstaForex always strives to help you fulfill your biggest dreams. We all have different dreams and goals. We have taken it into account before launching our new contest. This time, we have prepared more than one prize. The winner will have the opportunity to decide which of the dreams to pursue.

InstaSpot

InstaSpot

We have created a convenient service for buying, selling, and exchanging currencies, cryptocurrencies, and other assets.

InstaSpot is a trustworthy service for a trader, miner, freelancer, and for everyone who does business on the Internet.

Familiarize yourself with a user-friendly and reliable exchanger for digital currencies and other popular assets. InstaSpot is based on the principle of P2P trading, which allows buyers and sellers to interact directly without intermediaries. At the same time, InstaForex acts as a guarantor of the secured transaction.

InstaSpot

We have created a convenient service for buying, selling, and exchanging currencies, cryptocurrencies, and other assets.

InstaSpot is a trustworthy service for a trader, miner, freelancer, and for everyone who does business on the Internet.

Familiarize yourself with a user-friendly and reliable exchanger for digital currencies and other popular assets. InstaSpot is based on the principle of P2P trading, which allows buyers and sellers to interact directly without intermediaries. At the same time, InstaForex acts as a guarantor of the secured transaction.

InstaForex หุ้นส่วนอย่างเป็นทางการของ Dragon Racing

InstaForex หุ้นส่วนอย่างเป็นทางการของ Dragon Racing

การแข่งขันรถแข่งมืออาชีพระดับโลก ก็เหมือนกับโลกแห่งการเงิน ที่พัฒนามาอย่างต่อเนื่อง และได้แนะนำเทคโนโลยีล่าสุด ที่ในที่สุดก็ได้กลายเป็นส่วนหนึ่งของการใช้ชีวิตในทุกๆวันของเรา ซึ่งนี่ได้เกิดขึ้นกับเครื่องยนต์เทอร์โบ, ระบบ KERS, เบรคเซรามิค, การเทรดทางออนไลน์ เช่นเดียวกับระบบ PAMM และ ForexCopy ณ ตอนนั้น ทุกอย่างดูจะเหมือนเป็นสิ่งที่เป็นเอกลักษณ์ และพร้อมที่จะเป็นผู้ถูกเลือกอันดับหนึ่ง ทุกวันนี้ เราขับรถยนต์ไฟฟ้า และเทรดง่ายๆบนตลาด Forex โลก ผ่านทางอุปกรณ์ขนาดจิ๋วที่เราพกพา ติดอยู่ในกระเป๋ากางเกงของเรา

InstaForex หุ้นส่วนอย่างเป็นทางการของ Dragon Racing

การแข่งขันรถแข่งมืออาชีพระดับโลก ก็เหมือนกับโลกแห่งการเงิน ที่พัฒนามาอย่างต่อเนื่อง และได้แนะนำเทคโนโลยีล่าสุด ที่ในที่สุดก็ได้กลายเป็นส่วนหนึ่งของการใช้ชีวิตในทุกๆวันของเรา ซึ่งนี่ได้เกิดขึ้นกับเครื่องยนต์เทอร์โบ, ระบบ KERS, เบรคเซรามิค, การเทรดทางออนไลน์ เช่นเดียวกับระบบ PAMM และ ForexCopy ณ ตอนนั้น ทุกอย่างดูจะเหมือนเป็นสิ่งที่เป็นเอกลักษณ์ และพร้อมที่จะเป็นผู้ถูกเลือกอันดับหนึ่ง ทุกวันนี้ เราขับรถยนต์ไฟฟ้า และเทรดง่ายๆบนตลาด Forex โลก ผ่านทางอุปกรณ์ขนาดจิ๋วที่เราพกพา ติดอยู่ในกระเป๋ากางเกงของเรา

ผลิตภุณฑ์แบรนด์ InstaForex

ผลิตภุณฑ์แบรนด์ InstaForex

InstaForex ขอมอบผลิตภัณฑ์มากมายที่มาพร้อมกับโลโก้ของบริษัทเพื่อการจับจ่ายเป็นเจ้าของตามราคาผู้ผลิตอย่างเช่น เครื่องเขียนในสำนักงาน, เครื่องตกแต่ง, เสื้อผ้าและสินค้าประเภทอื่นๆ

เราขอนำเสนอเครื่องมือทางการตลาดจำนวนมากเพื่อใช้ในการดึงดูดลูกค้ารายใหม่ๆเข้ามาอย่างเช่นแบนเนอร์, โบรชัวร์ ป้าย, เนื้อหาเพื่อการฝึกฝนต่างๆ, ใบรับรองสุดพิเศษและตัวแจ้งเตือนฟอเร็กซ์

ผลิตภุณฑ์แบรนด์ InstaForex

InstaForex ขอมอบผลิตภัณฑ์มากมายที่มาพร้อมกับโลโก้ของบริษัทเพื่อการจับจ่ายเป็นเจ้าของตามราคาผู้ผลิตอย่างเช่น เครื่องเขียนในสำนักงาน, เครื่องตกแต่ง, เสื้อผ้าและสินค้าประเภทอื่นๆ

เราขอนำเสนอเครื่องมือทางการตลาดจำนวนมากเพื่อใช้ในการดึงดูดลูกค้ารายใหม่ๆเข้ามาอย่างเช่นแบนเนอร์, โบรชัวร์ ป้าย, เนื้อหาเพื่อการฝึกฝนต่างๆ, ใบรับรองสุดพิเศษและตัวแจ้งเตือนฟอเร็กซ์

ความรับผิดชอบต่อสังคมของ InstaForex

ความรับผิดชอบต่อสังคมของ InstaForex

มาตรฐานทางศีลธรรมแบบ Panhuman และความตระหนักต่อความรับผิดชอบต่อสังคมเป็นเส้นทางที่เราใช้ในการทำงานของบริษัท ในตลาดที่มีการแข่งขันสูง เป็นเรื่องสำคัญที่เราต้องปฏิบัติตามกฎด้านธุรกิจและศีลธรรมสากล

ทุกปี องค์กรเพื่อการกุศลหลายแห่งและผู้คนได้เข้ามาเป็นพันธมิตรกับ InstaForex หน้านี้จะแสดงวิสัยทักศน์ความรับผิดชอบต่อสังคมของพวกเรา

ความรับผิดชอบต่อสังคมของ InstaForex

มาตรฐานทางศีลธรรมแบบ Panhuman และความตระหนักต่อความรับผิดชอบต่อสังคมเป็นเส้นทางที่เราใช้ในการทำงานของบริษัท ในตลาดที่มีการแข่งขันสูง เป็นเรื่องสำคัญที่เราต้องปฏิบัติตามกฎด้านธุรกิจและศีลธรรมสากล

ทุกปี องค์กรเพื่อการกุศลหลายแห่งและผู้คนได้เข้ามาเป็นพันธมิตรกับ InstaForex หน้านี้จะแสดงวิสัยทักศน์ความรับผิดชอบต่อสังคมของพวกเรา

หากไม่สะดวกคุยในตอนนี้
ระบุคำถามไว้ได้ใน แชท.
Widget callback
 

Dear visitor,

Your IP address shows that you are currently located in the USA. If you are a resident of the United States, you are prohibited from using the services of InstaFintech Group including online trading, online transfers, deposit/withdrawal of funds, etc.

If you think you are seeing this message by mistake and your location is not the US, kindly proceed to the website. Otherwise, you must leave the website in order to comply with government restrictions.

Why does your IP address show your location as the USA?

  • - you are using a VPN provided by a hosting company based in the United States;
  • - your IP does not have proper WHOIS records;
  • - an error occurred in the WHOIS geolocation database.

Please confirm whether you are a US resident or not by clicking the relevant button below. If you choose the wrong option, being a US resident, you will not be able to open an account with InstaForex anyway.

We are sorry for any inconvenience caused by this message.