---
name: api.stelardigital.com
description: api.stelardigital.com exposes a single endpoint that returns the current spot price, 24-hour and 7-day percentage changes, and a directional signal for a named asset. It is a single-shot lookup service with no streaming, historical, or order-book capabilities.
host: api.stelardigital.com
---

# api.stelardigital.com

Stelar Digital offers a lightweight price-check utility aimed at agents that need a quick snapshot of an asset's current price and short-term momentum signal without the overhead of a full market data integration. It covers named assets such as SOL and BTC and returns a compact response including price, two change windows, and a pre-computed directional signal.

## When to use this host

Use this host when an agent needs a fast, single-shot lookup of an asset's current price and short-term change data (24h, 7d) plus a pre-computed directional signal. Do not use it for historical OHLCV candles, order book depth, or streaming real-time price feeds — those require a dedicated market data provider such as CoinGecko, Binance, or a WebSocket-based feed. Also avoid this host if you need multi-asset batch pricing in one call, as the skill accepts a single asset symbol per request.

## Capabilities

### Spot Price and Directional Signal

Retrieves the current spot price of a named asset along with 24-hour and 7-day change percentages and a simple directional signal, providing a concise market snapshot in a single call.

- **`fetch-asset-price`** — Returns the latest price, 24-hour and 7-day change, and a directional signal for a given asset symbol.

## Skill reference

### `fetch-asset-price`

**PriceCheck** — Returns the latest price, 24-hour and 7-day change, and a directional signal for a given asset symbol.

*Use when:* Use when an agent needs the current spot price and short-term price change data for a named asset (e.g. SOL, BTC) along with a simple directional signal.

*Not for:* Do not use for historical OHLCV data or order book depth; use a dedicated market data API for those. Not suitable for streaming real-time price feeds — this is a single-shot lookup.

**Inputs:**

- `asset` (string, required) — Ticker symbol of the asset to price (e.g. SOL, BTC, ETH).

**Returns:** Returns a compact JSON object with the asset symbol, USD spot price, 24h and 7d percentage changes, a directional signal, and a Unix timestamp for when the data was recorded.

**Example:** `GET https://api.stelardigital.com/pricecheck?asset=SOL`

---
