Metals and Mining Insights

TURN MARKET COMPLEXITY INTO STRATEGIC ADVANTAGE

Stay ahead of volatile metals markets with Permutable AI’s metals and mining. Our advanced story signal analysis delivers actionable metals and mining insights across gold, silver, platinum, palladium, and copper before price movements occur. 

Monitor real-time supply-demand fundamentals, track geopolitical impacts, and identify emerging narratives through our AI-powered detection system. From new story breakouts to sentiment direction changes, we transform market complexity into strategic trading opportunities.

Access granular sentiment analysis via enterprise-grade API integration, enabling you to position ahead of market-moving events rather than react to them and navigate today’s interconnected energy landscape with confidence and precision.

Permutable Metals Intelligence Dashboard

Overview

Contact us at enquiries@permutable.ai

Permutable's Metals Intelligence platform provides granular insights into the precious and industrial metals sector. We track key assets including Gold (XAU), Silver (XAG), Copper, and Platinum. Our system analyzes demand and supply factors, price reports, trade effects, and regional price impacts. We also identify new story breakouts, monitor ongoing coverage, and detect sentiment shifts related to metals news. Furthermore, our advanced story signal analysis identifies critical narrative developments such as New Story Breakout - detects the initial emergence of a significant news narrative (e.g., gold_first_headline_detection); Story Volume Build Up - monitors increasing volume of discussion around a specific story (e.g., gold_story_modified_volume_increase); Story Direction Change - identifies shifts in the sentiment or focus of an evolving story (e.g., gold_story_modified_direction_change); and Forced Persistent Story - tracks narratives that maintain presence due to continuous external inputs or events (e.g., gold_story_persistent). These signals help you stay ahead of market-moving events.

Implementation Use Cases

Trends Across Metal Assets

Monitor real-time trends and data for key precious and industrial metals.

Gold, Silver, Copper
Platinum Group Metals
Industrial Metals

Topic & Regional Factors

Delayer each effect impacting price movements. Analyse key fundamental supply and demand themes shifts as well as price report sentiment.

Demand and supply factors
Price reports, trade effects
Geopolitical risk impacts

Story Signal

Identify impactful news narratives and sentiment shifts as they emerge through the following key signals:

New story breakout
Continued story buildup
Story direction shift

Macro & Geopolitical Insights

Track macroeconomic developments and geopolitical events that impact metal markets, from policy changes to global economic shifts.

Monitor interest rate policies and inflation
Analyze impact of economic indicators & policy
Track geopolitical tensions affecting markets

Permutable Co-Pilot API enables programmatic access to structured news data with millisecond latency and enterprise-grade reliability. Full documentation is available at https://copilot-api.permutable.ai/redoc, including Python, R, and Java client libraries with webhook support.

API Reference

Retrieves a paginated list of fundamental (metals-specific) events for a given ticker, ordered by date in descending order by event date (Newest to oldest). Supports date range filtering.

GET /v1/events/fundamental/ticker/{ticker}

Parameters

Name Description
ticker
required
string (path)
Ticker of the entity to fetch events for. Get these from GET /ticker endpoints.
start_date
string ($date-time)
Earliest date of the events to fetch (max 3 months before current date).
end_date
string ($date-time)
Latest date of the events to fetch.
limit
integer
Range: 1-100
Number of events per page. Default value: 10
offset
integer
Minimum: 0
Starting position of the current page. Default value: 0

Request Sample (Python)

import requests

# Replace with your actual credentials
API_KEY = "your-api-key"
METALS_TICKER = "QO_COM" # Example: Gold


# Headers
headers = {
    "x-api-key": API_KEY,
}

# Query parameters
params = {'start_date': '2024-11-25T00:00:00', 'end_date': '2024-11-25T00:00:00', 'limit': 10, 'offset': 0}

# Make the request
response = requests.get(
    f"https://copilot-api.permutable.ai/v1/events/fundamental/ticker/{METALS_TICKER}",
    headers=headers,
    params=params
)

# Check for errors
response.raise_for_status()

# Get the response data
data = response.json()
print(data)
                    

Responses

Code Description Links
200 Successful response No links

Response Type

application/json

Sample Response

// Structure: 'events' is an array of event objects, each with id, topic, event_name, event_date, summary, ticker, last_updated, direction_reasoning, and direction. Root includes total, limit, offset, has_more.
{
  "events": [
    {
      "id": "6f32a9b1-fe06-4a7f-b0ac-00b61df9ca32",
      "topic": "Monetary Policy-Interest Rates",
      "event_name": "Fed Signals Higher for Longer Rates",
      "event_date": "2025-05-31T09:15:00",
      "summary": "Federal Reserve minutes indicate a hawkish stance, with policymakers prepared to keep interest rates elevated to combat inflation, impacting gold prices.",
      "ticker": "XAU_COM",
      "last_updated": "2025-05-31T09:30:00",
      "direction_reasoning": "",
      "direction": "Bearish"
    },
    {
      "id": "35e8d8bc-ed27-43e7-b606-b8f16f35d055",
      "topic": "Supply-Mine Production",
      "event_name": "Chilean Mine Strikes Disrupt Copper Supply",
      "event_date": "2025-05-30T15:00:00",
      "summary": "A major copper mine in Chile has halted operations due to worker strikes, raising concerns about global supply shortages.",
      "ticker": "COPPER_COM",
      "last_updated": "2025-05-30T15:46:02",
      "direction_reasoning": "",
      "direction": "Bullish"
    }
  ],
  "total": 2,
  "limit": 10,
  "offset": 0,
  "has_more": false
```

Output

Asset Event Name Date Sentiment Topic Summary Type Sources