# Comexlive — Wrapped API

> **You are on:** `https://api.paywithlocus.com/api` | [llms.txt](https://paywithlocus.com/llms.txt) | [docs](https://docs.paywithlocus.com)
>
> Locus runs on multiple environments -- make sure every URL you call matches your expected environment.
> | Environment | Landing | API | Docs |
> |---|---|---|---|
> | Production | paywithlocus.com | api.paywithlocus.com | docs.paywithlocus.com |
> | Beta | beta.paywithlocus.com | api.beta.paywithlocus.com | docs.paywithlocus.com |
> | Stage | stage.paywithlocus.com | api.stage.paywithlocus.com | docs.paywithlocus.com |
>
> If the API URL above doesn't match your expected environment, re-fetch this file from the correct domain.

> Monitor real-time gold, silver, and platinum prices from COMEX futures markets, and stay updated with the latest commodity news and articles. Get current pricing data for all COMEX commodities and access detailed news coverage to inform your trading and investment decisions.

**Category:** Finance & Markets | **Website:** [comexlive.org/](https://comexlive.org/) | **Docs:** [parse.bot/marketplace/1cd2a4a1-51ce-42c0-a54a-cc6da2ccdb37/comexlive-org-api](https://parse.bot/marketplace/1cd2a4a1-51ce-42c0-a54a-cc6da2ccdb37/comexlive-org-api)

Pay-per-use API proxy. Each call is automatically billed to your wallet in USDC.

## Access

**Base URL:** `https://api.paywithlocus.com/api/wrapped/parse-comexlive-org-api-1cd2a4a1/`
**Auth:** `Authorization: Bearer <LOCUS_API_KEY>`

## Endpoints

### get_all_comex_prices

Returns a dashboard summary of all tracked COMEX commodity prices including Gold, Silver, Platinum, Palladium, Copper, Aluminum, Crude Oil, Brent Oil, Natural Gas, Gasoline, Heating Oil, Coffee, Sugar, Wheat, and Corn. Each entry includes symbol, last price, change, percentage change, close, high, low, and last trade time.

**Estimated cost:** Metered

_No parameters required._

```bash
curl -X POST https://api.paywithlocus.com/api/wrapped/parse-comexlive-org-api-1cd2a4a1/get_all_comex_prices \
  -H "Authorization: Bearer YOUR_LOCUS_API_KEY" \
  -H "Content-Type: application/json" \
  -d '{}'
```

### get_gold_price

Returns the current COMEX Gold spot price with daily high, low, open, last trade price, and USD/percentage change. Data refreshes during market hours; outside trading hours, the last available values persist.

**Estimated cost:** Metered

_No parameters required._

```bash
curl -X POST https://api.paywithlocus.com/api/wrapped/parse-comexlive-org-api-1cd2a4a1/get_gold_price \
  -H "Authorization: Bearer YOUR_LOCUS_API_KEY" \
  -H "Content-Type: application/json" \
  -d '{}'
```

### get_latest_news

Returns up to 10 recent news articles from COMEX Live with titles, excerpts, categories, tags, publication dates, and URLs. Articles cover commodity market developments including precious metals, energy, and agriculture.

**Estimated cost:** Metered

_No parameters required._

```bash
curl -X POST https://api.paywithlocus.com/api/wrapped/parse-comexlive-org-api-1cd2a4a1/get_latest_news \
  -H "Authorization: Bearer YOUR_LOCUS_API_KEY" \
  -H "Content-Type: application/json" \
  -d '{}'
```

### get_news_article

Fetches the full content of a specific news article by its URL. Returns the complete article body text, title, publication date (extracted from URL path), category, and tags. The URL must be a valid comexlive.org article path.

**Estimated cost:** Metered

| Field | Type | Required | Description |
|-------|------|----------|-------------|
| `url` | string | Yes | Full URL of a news article from comexlive.org, in the format https://comexlive.org/YYYY/MM/DD/article-slug/. |

```bash
curl -X POST https://api.paywithlocus.com/api/wrapped/parse-comexlive-org-api-1cd2a4a1/get_news_article \
  -H "Authorization: Bearer YOUR_LOCUS_API_KEY" \
  -H "Content-Type: application/json" \
  -d '{"url":"<string>"}'
```

### get_platinum_price

Returns the current COMEX Platinum spot price with daily high, low, open, last trade price, and USD/percentage change. Data refreshes during market hours; outside trading hours, the last available values persist.

**Estimated cost:** Metered

_No parameters required._

```bash
curl -X POST https://api.paywithlocus.com/api/wrapped/parse-comexlive-org-api-1cd2a4a1/get_platinum_price \
  -H "Authorization: Bearer YOUR_LOCUS_API_KEY" \
  -H "Content-Type: application/json" \
  -d '{}'
```

### get_silver_price

Returns the current COMEX Silver spot price with daily high, low, open, last trade price, and USD/percentage change. Data refreshes during market hours; outside trading hours, the last available values persist.

**Estimated cost:** Metered

_No parameters required._

```bash
curl -X POST https://api.paywithlocus.com/api/wrapped/parse-comexlive-org-api-1cd2a4a1/get_silver_price \
  -H "Authorization: Bearer YOUR_LOCUS_API_KEY" \
  -H "Content-Type: application/json" \
  -d '{}'
```
