curl --request GET \
--url https://api.worldmonitor.app/api/market/v1/get-gold-intelligence \
--header 'X-WorldMonitor-Key: <api-key>'import requests
url = "https://api.worldmonitor.app/api/market/v1/get-gold-intelligence"
headers = {"X-WorldMonitor-Key": "<api-key>"}
response = requests.get(url, headers=headers)
print(response.text)const options = {method: 'GET', headers: {'X-WorldMonitor-Key': '<api-key>'}};
fetch('https://api.worldmonitor.app/api/market/v1/get-gold-intelligence', options)
.then(res => res.json())
.then(res => console.log(res))
.catch(err => console.error(err));<?php
$curl = curl_init();
curl_setopt_array($curl, [
CURLOPT_URL => "https://api.worldmonitor.app/api/market/v1/get-gold-intelligence",
CURLOPT_RETURNTRANSFER => true,
CURLOPT_ENCODING => "",
CURLOPT_MAXREDIRS => 10,
CURLOPT_TIMEOUT => 30,
CURLOPT_HTTP_VERSION => CURL_HTTP_VERSION_1_1,
CURLOPT_CUSTOMREQUEST => "GET",
CURLOPT_HTTPHEADER => [
"X-WorldMonitor-Key: <api-key>"
],
]);
$response = curl_exec($curl);
$err = curl_error($curl);
curl_close($curl);
if ($err) {
echo "cURL Error #:" . $err;
} else {
echo $response;
}package main
import (
"fmt"
"net/http"
"io"
)
func main() {
url := "https://api.worldmonitor.app/api/market/v1/get-gold-intelligence"
req, _ := http.NewRequest("GET", url, nil)
req.Header.Add("X-WorldMonitor-Key", "<api-key>")
res, _ := http.DefaultClient.Do(req)
defer res.Body.Close()
body, _ := io.ReadAll(res.Body)
fmt.Println(string(body))
}HttpResponse<String> response = Unirest.get("https://api.worldmonitor.app/api/market/v1/get-gold-intelligence")
.header("X-WorldMonitor-Key", "<api-key>")
.asString();require 'uri'
require 'net/http'
url = URI("https://api.worldmonitor.app/api/market/v1/get-gold-intelligence")
http = Net::HTTP.new(url.host, url.port)
http.use_ssl = true
request = Net::HTTP::Get.new(url)
request["X-WorldMonitor-Key"] = '<api-key>'
response = http.request(request)
puts response.read_body{
"cbReserves": {
"asOfMonth": "example",
"topBuyers12m": [
{
"deltaTonnes12m": 1.5,
"iso3": "USA",
"name": "WorldMonitor Analyst"
}
],
"topHolders": [
{
"iso3": "USA",
"name": "WorldMonitor Analyst",
"pctOfReserves": 1.5,
"tonnes": 1.5
}
],
"topSellers12m": [
{
"deltaTonnes12m": 1.5,
"iso3": "USA",
"name": "WorldMonitor Analyst"
}
],
"totalTonnes": 1
},
"cot": {
"managedMoney": {
"longPositions": "1717200000000",
"netPct": 1.5,
"oiSharePct": 1.5,
"shortPositions": "1717200000000",
"wowNetDelta": "1717200000000"
},
"nextReleaseDate": "2026-01-15",
"openInterest": "1717200000000",
"producerSwap": {
"longPositions": "1717200000000",
"netPct": 1.5,
"oiSharePct": 1.5,
"shortPositions": "1717200000000",
"wowNetDelta": "1717200000000"
},
"reportDate": "2026-01-15"
},
"crossCurrencyPrices": [
{
"currency": "USD",
"flag": "example",
"price": 75.25
}
],
"drivers": [
{
"changePct": 1.5,
"correlation30d": 1.5,
"label": "example",
"symbol": "AAPL",
"value": 1.5
}
],
"etfFlows": {
"asOfDate": "2026-01-15",
"aumUsd": 1.5,
"changeM1Pct": 1.5,
"changeM1Tonnes": 1.5,
"changeW1Pct": 1.5
}
}{
"violations": [
{
"field": "<string>",
"description": "<string>"
}
]
}{
"error": "<string>"
}{
"error": "<string>",
"requiredTier": 123,
"currentTier": 123,
"planKey": "<string>"
}{
"message": "<string>"
}{
"message": "<string>"
}GetGoldIntelligence
GetGoldIntelligence retrieves gold pricing, cross-currency XAU, ratios, and CFTC positioning.
curl --request GET \
--url https://api.worldmonitor.app/api/market/v1/get-gold-intelligence \
--header 'X-WorldMonitor-Key: <api-key>'import requests
url = "https://api.worldmonitor.app/api/market/v1/get-gold-intelligence"
headers = {"X-WorldMonitor-Key": "<api-key>"}
response = requests.get(url, headers=headers)
print(response.text)const options = {method: 'GET', headers: {'X-WorldMonitor-Key': '<api-key>'}};
fetch('https://api.worldmonitor.app/api/market/v1/get-gold-intelligence', options)
.then(res => res.json())
.then(res => console.log(res))
.catch(err => console.error(err));<?php
$curl = curl_init();
curl_setopt_array($curl, [
CURLOPT_URL => "https://api.worldmonitor.app/api/market/v1/get-gold-intelligence",
CURLOPT_RETURNTRANSFER => true,
CURLOPT_ENCODING => "",
CURLOPT_MAXREDIRS => 10,
CURLOPT_TIMEOUT => 30,
CURLOPT_HTTP_VERSION => CURL_HTTP_VERSION_1_1,
CURLOPT_CUSTOMREQUEST => "GET",
CURLOPT_HTTPHEADER => [
"X-WorldMonitor-Key: <api-key>"
],
]);
$response = curl_exec($curl);
$err = curl_error($curl);
curl_close($curl);
if ($err) {
echo "cURL Error #:" . $err;
} else {
echo $response;
}package main
import (
"fmt"
"net/http"
"io"
)
func main() {
url := "https://api.worldmonitor.app/api/market/v1/get-gold-intelligence"
req, _ := http.NewRequest("GET", url, nil)
req.Header.Add("X-WorldMonitor-Key", "<api-key>")
res, _ := http.DefaultClient.Do(req)
defer res.Body.Close()
body, _ := io.ReadAll(res.Body)
fmt.Println(string(body))
}HttpResponse<String> response = Unirest.get("https://api.worldmonitor.app/api/market/v1/get-gold-intelligence")
.header("X-WorldMonitor-Key", "<api-key>")
.asString();require 'uri'
require 'net/http'
url = URI("https://api.worldmonitor.app/api/market/v1/get-gold-intelligence")
http = Net::HTTP.new(url.host, url.port)
http.use_ssl = true
request = Net::HTTP::Get.new(url)
request["X-WorldMonitor-Key"] = '<api-key>'
response = http.request(request)
puts response.read_body{
"cbReserves": {
"asOfMonth": "example",
"topBuyers12m": [
{
"deltaTonnes12m": 1.5,
"iso3": "USA",
"name": "WorldMonitor Analyst"
}
],
"topHolders": [
{
"iso3": "USA",
"name": "WorldMonitor Analyst",
"pctOfReserves": 1.5,
"tonnes": 1.5
}
],
"topSellers12m": [
{
"deltaTonnes12m": 1.5,
"iso3": "USA",
"name": "WorldMonitor Analyst"
}
],
"totalTonnes": 1
},
"cot": {
"managedMoney": {
"longPositions": "1717200000000",
"netPct": 1.5,
"oiSharePct": 1.5,
"shortPositions": "1717200000000",
"wowNetDelta": "1717200000000"
},
"nextReleaseDate": "2026-01-15",
"openInterest": "1717200000000",
"producerSwap": {
"longPositions": "1717200000000",
"netPct": 1.5,
"oiSharePct": 1.5,
"shortPositions": "1717200000000",
"wowNetDelta": "1717200000000"
},
"reportDate": "2026-01-15"
},
"crossCurrencyPrices": [
{
"currency": "USD",
"flag": "example",
"price": 75.25
}
],
"drivers": [
{
"changePct": 1.5,
"correlation30d": 1.5,
"label": "example",
"symbol": "AAPL",
"value": 1.5
}
],
"etfFlows": {
"asOfDate": "2026-01-15",
"aumUsd": 1.5,
"changeM1Pct": 1.5,
"changeM1Tonnes": 1.5,
"changeW1Pct": 1.5
}
}{
"violations": [
{
"field": "<string>",
"description": "<string>"
}
]
}{
"error": "<string>"
}{
"error": "<string>",
"requiredTier": 123,
"currentTier": 123,
"planKey": "<string>"
}{
"message": "<string>"
}{
"message": "<string>"
}Authorizations
User-issued WorldMonitor API key.
Query Parameters
Optional JMESPath expression applied server-side to project or reduce the JSON response before it is returned (mirrors the MCP jmespath argument). Invalid expressions, expressions larger than 1024 UTF-8 bytes, or projections that exceed the 256 KB output cap return HTTP 400 with a {_jmespath_error, original_keys} envelope. Grammar and worked examples: https://www.worldmonitor.app/docs/mcp-jmespath.
Response
Successful response
Show child attributes
Show child attributes
Show child attributes
Show child attributes
True when the upstream or seed-backed variant is unavailable; empty payload fields are graceful degradation, not confirmed zero data.
Show child attributes
Show child attributes
Show child attributes
Show child attributes
Show child attributes
Show child attributes
Show child attributes
Show child attributes
Show child attributes
Show child attributes
Show child attributes
Show child attributes
Was this page helpful?
