TRADING
INTELLIGENCE API
Advanced neural networks for market analysis. Simple REST API • Real-time signals • Pay per use
Advanced neural networks for market analysis. Simple REST API • Real-time signals • Pay per use
Sign up and generate your unique API access token.
Send market parameters via a simple RESTful request.
Receive actionable AI-powered trading signals instantly.
import requests
url = "https://api.fxdock.com/v1/signals"
headers = {
"Authorization": "Bearer YOUR_API_KEY",
"Content-Type": "application/json"
}
data = { "symbol": "ETH/USD", "interval": "4h" }
res = requests.post(url, headers=headers, json=data)
print(res.json())
const res = await fetch("https://api.fxdock.com/v1/signals", {
method: "POST",
headers: {
Authorization: "Bearer YOUR_API_KEY",
"Content-Type": "application/json"
},
body: JSON.stringify({ symbol: "BTC/USD", interval: "1h" })
});
console.log(await res.json());
curl -X POST https://api.fxdock.com/v1/signals \
-H "Authorization: Bearer YOUR_API_KEY" \
-H "Content-Type: application/json" \
-d '{ "symbol": "XAU/USD", "interval": "1h" }'
<?php
$ch = curl_init("https://api.fxdock.com/v1/signals");
curl_setopt_array($ch, [
CURLOPT_POST => true,
CURLOPT_HTTPHEADER => [
"Authorization: Bearer YOUR_API_KEY",
"Content-Type: application/json"
],
CURLOPT_RETURNTRANSFER => true,
CURLOPT_POSTFIELDS => json_encode([
"symbol" => "ETH/USD",
"interval" => "4h"
])
]);
echo curl_exec($ch);
$3-15/req
$5-35/req
$15-75/req
Start in minutes — generate your key and hit the endpoint.
Get Your API KeyRisk Warning: Trading Forex and CFDs involves significant risk and can result in the loss of your invested capital. You should not invest more than you can afford to lose. Between 74-89% of retail investor accounts lose money when trading CFDs. Please ensure you fully understand the risks involved and seek independent advice if necessary. FXDock provides analytical tools and signals only; we do not execute trades on your behalf. Past performance is not indicative of future results. By using our services, you acknowledge that you have read and understood our Terms of Service and Risk Disclosure.