Tradematic Cloud API
tradematic · Finance
### Overview Tradematic Cloud is a trading infrastructure for building investment services. It’s a trading engine + API + ready-made adapters to stock and forex brokers, crypto exchanges, and market data providers. You can use it as a cloud API, or you can deploy it on your servers. ### How to use Tradematic Cloud API Sign up at [tradematic.cloud](https://tradematic.cloud). After signing up, you will receive your API key. ### Authorization Add the 'X-API-KEY' header with your API key to
Authentication
Sample Requests
Get symbols list
Hover any highlighted part to learn what it does
curl -X GET "https://api.apis.guru/v2/specs/tradematic.com/1.0.2/marketdata/symbols?filter=1&marketid=1"
import requests
params = {
"filter": "1",
"marketid": "1"
}
response = requests.get(
"https://api.apis.guru/v2/specs/tradematic.com/1.0.2/marketdata/symbols",
params=params,
)
print(response.json())const url = new URL('https://api.apis.guru/v2/specs/tradematic.com/1.0.2/marketdata/symbols');
url.searchParams.set('filter', '1');
url.searchParams.set('marketid', '1');
const response = await fetch(url);
const data = await response.json();
console.log(data);package main
import (
"fmt"
"io"
"net/http"
"net/url"
)
func main() {
baseURL, _ := url.Parse("https://api.apis.guru/v2/specs/tradematic.com/1.0.2/marketdata/symbols")
q := baseURL.Query()
q.Set("filter", "1")
q.Set("marketid", "1")
baseURL.RawQuery = q.Encode()
targetURL := baseURL.String()
req, _ := http.NewRequest("GET", targetURL, nil)
client := &http.Client{}
resp, _ := client.Do(req)
defer resp.Body.Close()
body, _ := io.ReadAll(resp.Body)
fmt.Println(string(body))
}require "net/http"
require "json"
uri = URI("https://api.apis.guru/v2/specs/tradematic.com/1.0.2/marketdata/symbols")
uri.query = URI.encode_www_form({
"filter" => "1",
"marketid" => "1"
})
http = Net::HTTP.new(uri.host, uri.port)
http.use_ssl = uri.scheme == "https"
req = Net::HTTP::Get.new(uri)
res = http.request(req)
puts JSON.parse(res.body)<?php
$url = "https://api.apis.guru/v2/specs/tradematic.com/1.0.2/marketdata/symbols?" . http_build_query([
"filter" => "1",
"marketid" => "1"
]);
$opts = ["http" => [
"method" => "GET",
]];
$ctx = stream_context_create($opts);
$res = file_get_contents($url, false, $ctx);
print_r(json_decode($res, true));Ping
Hover any highlighted part to learn what it does
curl -X GET "https://api.apis.guru/v2/specs/tradematic.com/1.0.2/ping"
import requests
response = requests.get(
"https://api.apis.guru/v2/specs/tradematic.com/1.0.2/ping",
)
print(response.json())const url = 'https://api.apis.guru/v2/specs/tradematic.com/1.0.2/ping'; const response = await fetch(url); const data = await response.json(); console.log(data);
package main
import (
"fmt"
"io"
"net/http"
)
func main() {
targetURL := "https://api.apis.guru/v2/specs/tradematic.com/1.0.2/ping"
req, _ := http.NewRequest("GET", targetURL, nil)
client := &http.Client{}
resp, _ := client.Do(req)
defer resp.Body.Close()
body, _ := io.ReadAll(resp.Body)
fmt.Println(string(body))
}require "net/http"
require "json"
uri = URI("https://api.apis.guru/v2/specs/tradematic.com/1.0.2/ping")
http = Net::HTTP.new(uri.host, uri.port)
http.use_ssl = uri.scheme == "https"
req = Net::HTTP::Get.new(uri)
res = http.request(req)
puts JSON.parse(res.body)<?php
$url = "https://api.apis.guru/v2/specs/tradematic.com/1.0.2/ping";
$opts = ["http" => [
"method" => "GET",
]];
$ctx = stream_context_create($opts);
$res = file_get_contents($url, false, $ctx);
print_r(json_decode($res, true));Get current server time
Hover any highlighted part to learn what it does
curl -X GET "https://api.apis.guru/v2/specs/tradematic.com/1.0.2/time"
import requests
response = requests.get(
"https://api.apis.guru/v2/specs/tradematic.com/1.0.2/time",
)
print(response.json())const url = 'https://api.apis.guru/v2/specs/tradematic.com/1.0.2/time'; const response = await fetch(url); const data = await response.json(); console.log(data);
package main
import (
"fmt"
"io"
"net/http"
)
func main() {
targetURL := "https://api.apis.guru/v2/specs/tradematic.com/1.0.2/time"
req, _ := http.NewRequest("GET", targetURL, nil)
client := &http.Client{}
resp, _ := client.Do(req)
defer resp.Body.Close()
body, _ := io.ReadAll(resp.Body)
fmt.Println(string(body))
}require "net/http"
require "json"
uri = URI("https://api.apis.guru/v2/specs/tradematic.com/1.0.2/time")
http = Net::HTTP.new(uri.host, uri.port)
http.use_ssl = uri.scheme == "https"
req = Net::HTTP::Get.new(uri)
res = http.request(req)
puts JSON.parse(res.body)<?php
$url = "https://api.apis.guru/v2/specs/tradematic.com/1.0.2/time";
$opts = ["http" => [
"method" => "GET",
]];
$ctx = stream_context_create($opts);
$res = file_get_contents($url, false, $ctx);
print_r(json_decode($res, true));Postman Setup Guide
- See official documentation for authentication and setup.
What can you build with Tradematic Cloud API?
Tradematic Cloud API is a Finance API. Developers commonly use finance APIs for:
- processing payments and handling transactions
- building subscription and billing systems
- automating invoicing and financial reporting
- fraud detection and risk scoring
- connecting to banking and accounting software
No authentication required. This API is open — no signup or key needed. Ideal for quick prototypes and public-facing features. Tradematic Cloud API is free to use, making it a low-risk choice to experiment with.
New to APIs? Read our beginner's guide · Learn about API keys · What is REST?