Trading Intelligence API

TRADING
INTELLIGENCE API

Advanced neural networks for market analysis. Simple REST API • Real-time signals • Pay per use

2.4M+API Calls
23msLatency
99.97%Uptime
84%Accuracy

How it works

1

Get API Key

Sign up and generate your unique API access token.

2

Make Request

Send market parameters via a simple RESTful request.

3

Get Signal

Receive actionable AI-powered trading signals instantly.

Integration examples

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);

Transparent pricing

Starter

$3-15/req

  • Model v2.1
  • 100 rpm limit
  • Basic analysis
  • Email support

Enterprise

$15-75/req

  • Model v5.0 Ultra
  • 1000 rpm limit
  • Deep learning
  • Dedicated support

Ready to Build Smarter Trading Systems?

Start in minutes — generate your key and hit the endpoint.

Get Your API Key

Risk 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.