Palladium Value Evaluation avatar

Palladium Value Evaluation

Pricing

$10.00/month + usage

Go to Apify Store
Palladium Value Evaluation

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

Taher Ali Badnawarwala

Maintained by Community

Actor stats

0

Bookmarked

2

Total users

1

Monthly active users

2 months ago

Last modified

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

ActionLink
Run in Apify ConsoleOpen 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

CategoryExamples
DashboardsLive palladium price, rate cards
AutomationScheduled palladium price checks, data pipelines
DevelopmentMock data, demos, internal tools
ResearchPalladium 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.

ScenarioInput
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

  1. Open the Actor in Apify Console.
  2. 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:

FieldDescription
symbolAlways XPD (palladium)
currencyAlways USD
ratesObject with Price_OZ, Price_G, Price_KG, Price_Tola
nameAlways Palladium
updatedAtISO timestamp of last update
updatedAtReadableHuman-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:


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 (/run or /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