Palladium Value Evaluation
Pricing
$10.00/month + usage
Palladium Value Evaluation
Get the latest palladium (XPD) spot price in USD with rates per troy ounce (OZ), gram (G), kilogram (KG), and tola. No input required. Returns clean JSON with symbol, currency, rates, and timestamp. Ideal for dashboards, automation workflows, and pricing tools.
Pricing
$10.00/month + usage
Rating
0.0
(0)
Developer
Taher Ali Badnawarwala
Actor stats
0
Bookmarked
2
Total users
1
Monthly active users
2 months ago
Last modified
Categories
Share
TL;DR
- Input: None required
- Output: One dataset item with palladium price: symbol (XPD), currency (USD), rates (OZ/G/KG/Tola), name, updatedAt, updatedAtReadable
- Use it for: Dashboards, automation, palladium pricing tools
- Result time: Usually under a few seconds
Table of contents
- Try it now
- Overview
- Usage examples
- Features
- Configuration
- Usage
- Output
- For bloggers & tutorial writers
- Integration
- Technical details
- FAQ
- Resources
Try it now
| Action | Link |
|---|---|
| Run in Apify Console | Open Actor → Start |
| API (sync) | POST https://api.apify.com/v2/acts/YOUR_USERNAME~palladium-value-evaluation/run-sync |
Replace YOUR_USERNAME with your Apify username.
Overview
The Palladium Value Evaluation Actor fetches the current palladium (XPD) spot price in USD via the MultipleWords assets API. No input is required. The Actor returns one item with symbol (XPD), currency (USD), rates per OZ/G/KG/Tola, name (Palladium), and last-updated timestamp.
This Actor is useful when you need the palladium price on demand, in workflows, or as part of an automated pipeline.
Common use cases
| Category | Examples |
|---|---|
| Dashboards | Live palladium price, rate cards |
| Automation | Scheduled palladium price checks, data pipelines |
| Development | Mock data, demos, internal tools |
| Research | Palladium spot price by unit (OZ, G, KG, Tola) |
Note: Usage rights depend on the upstream API and your Apify plan. Review terms before commercial use.
Usage examples
Use these in the Apify Console or API input.
| Scenario | Input |
|---|---|
| Default | {} |
Features
- Palladium (XPD) price in USD only—no user selection
- Rates per troy ounce (OZ), gram (G), kilogram (KG), and tola
- Clean JSON output for easy integration
- Retries with exponential backoff
- Runs fully on Apify (Console, API, automation tools)
Configuration
All settings are provided via the Actor input.
Input parameters
No input parameters. The Actor always fetches the palladium (XPD) price in USD.
Example input
{}
Usage
Apify Console
- Open the Actor in Apify Console.
- Click Start and check the Output tab for the palladium price.
API (run-sync)
Replace YOUR_USERNAME with your Apify username and YOUR_API_TOKEN with your Apify API token.
curl -X POST "https://api.apify.com/v2/acts/YOUR_USERNAME~palladium-value-evaluation/run-sync?token=YOUR_API_TOKEN" \-H "Content-Type: application/json" \-d '{}'
Response includes runId, status, and dataset items with the palladium price.
Output
Each run writes one item to the default dataset with this shape:
| Field | Description |
|---|---|
symbol | Always XPD (palladium) |
currency | Always USD |
rates | Object with Price_OZ, Price_G, Price_KG, Price_Tola |
name | Always Palladium |
updatedAt | ISO timestamp of last update |
updatedAtReadable | Human-readable update time (e.g. "a few seconds ago") |
Example output (dataset item)
{"symbol": "XPD","currency": "USD","rates": {"Price_OZ": 985.50,"Price_G": 31.67,"Price_KG": 31670.0,"Price_Tola": 369.56},"name": "Palladium","updatedAt": "2026-02-19T07:00:00Z","updatedAtReadable": "just now"}
In the Apify Console Output tab you can view the table (symbol, currency, name, Price/OZ, Price/G, Price/KG, Price/Tola, updated at).
For bloggers & tutorial writers
You can use this Actor in tutorials, blog posts, or videos without running it first:
- Input: Use the Example input or Usage examples table.
- Output: Use the Example output (dataset item) above to show what users get.
- API: Use the API (run-sync) curl example; remind readers to replace
YOUR_USERNAMEandYOUR_API_TOKEN.
Integration
- Make (Integromat) — Use the Apify module and select this Actor; no input required.
- Zapier — Use the Apify Zapier app and choose "Run Actor"; select this Actor.
- Custom apps — Call the Apify API (
/runor/run-sync) with{}.
Technical details
- Runtime: Node.js (see Dockerfile).
- Input: Validated against the input schema; invalid input returns a clear error.
- External API: GET
https://multiplewords.com/assets_management/api/commodities/rates/XPD/usd(palladium in USD); failures are retried with exponential backoff.
FAQ
How long does a run take?
Usually under a few seconds.
Which metal does this Actor return?
This Actor returns only the palladium (XPD) spot price in USD. No symbol or currency selection.
Do I need an API key?
No. You only need your Apify account and (for API calls) your Apify API token.
Resources
- Apify Console — Run the Actor and view datasets
- Apify API — Run actors programmatically