ZJ
ZJ Industries Copper Oracle
Admin
Class C Copper Oracle

Real Copper Scrap Prices.
From Real Suppliers.

Class C industrial copper pricing sourced from verified supplier quotes and invoices. Updated twice weekly. On-chain on Base. Available via REST API.

Pricing

Start free. Upgrade when you need more.

Yard Dog

$0/mo

Try it out

  • 10 API calls / month
  • Class C price per pound
  • 1-update delay
  • No price history
POPULAR

Copper Standard

$29/mo

For active shops

  • Unlimited API calls
  • Real-time pricing
  • 90-day price history
  • Email support

Industrial

$99/mo

For manufacturers

  • Unlimited API calls
  • Real-time pricing
  • 365-day price history
  • Webhook price alerts
  • Priority support

API Documentation

Simple REST API. One endpoint, one price.

Base URL

https://classc.mj41.me/api/v1

Authentication

Include your API key in the x-api-key header.

curl -H "x-api-key: YOUR_API_KEY" \
  https://classc.mj41.me/api/v1/price

Endpoints

GET/priceGet current Class C price

Returns the latest Class C copper scrap price per pound.

Response:

{
  "grade": "Class C",
  "price_per_lb": 13.85,
  "currency": "USD",
  "updated_at": "2026-04-21T09:00:00Z",
  "source": "ZJ Industries — 3-supplier average",
  "next_update": "2026-04-23T09:00:00Z",
  "is_fresh": true,
  "tier": "copper_standard"
}
GET/price/historyCopper Standard+ only

Returns historical prices. Optional ?limit=50 parameter.

GET/statusNo auth required

Check if the oracle is operational. No API key needed.

Code Examples

Python

import requests

resp = requests.get(
    "https://classc.mj41.me/api/v1/price",
    headers={"x-api-key": "YOUR_API_KEY"}
)
price = resp.json()["price_per_lb"]
print(f"Class C Copper: ${price}/lb")

JavaScript

const resp = await fetch(
  "https://classc.mj41.me/api/v1/price",
  { headers: { "x-api-key": "YOUR_API_KEY" } }
);
const { price_per_lb } = await resp.json();
console.log(`Class C Copper: $${price_per_lb}/lb`);

Get Your API Key

Contact ZJ Industries to request a free Yard Dog API key.

Request API Key

Free tier includes 10 calls/month with 1-update delay.