Discover/Axiom API
live

Axiom APIaxiom.trade

Get live USD reference prices for major chain assets (BTC, ETH, SOL, BNB, and more) from axiom.trade via a single no-parameter API call.

Endpoint health
verified 2h ago
get_coin_prices
1/1 passing latest checkself-healing
Endpoints
1
Updated
4h ago

What is the Axiom API?

The axiom.trade API exposes 1 endpoint, get_coin_prices, that returns the current USD reference prices Axiom publishes for the base assets of every chain it supports. A single call returns an array of symbol-price pairs — covering assets like BTC, ETH, SOL, and BNB — with no parameters, no pagination, and prices that update on every request.

This call costs1 credit / call— charged only on success
Try it

No input parameters required.

api.parse.bot/scraper/e04b613a-1c81-4af8-849f-ab37f2e566b6/<endpoint>
Ready to send
Fill in the parameters and hit sign in to send to see live response data here.
Call it over HTTPgrab a free API key at signup
curl -X GET 'https://api.parse.bot/scraper/e04b613a-1c81-4af8-849f-ab37f2e566b6/get_coin_prices' \
  -H 'X-API-Key: $PARSE_API_KEY'
Python SDK · recommended

Typed, relational, agent-ready

A generated client with real types, enums, and the links between objects — the structure a flat JSON response can't carry. Autocompletes in your editor and reads cleanly to coding agents.

  • Fully typed · autocompletes
  • Objects link to objects
  • Typed errors & pagination

Typed Python client. Set up the SDK in your uv project, then pull this API’s typed client:

uv add parse-sdk
uv run parse init
uv run parse add --marketplace axiom-trade-api

uv run parse add --marketplace pulls a pinned snapshot of this canonical API — it won’t change underneath you. To customize it, subscribe and swap to your own copy.

"""Walkthrough: Axiom Trade API — fetch live USD reference prices."""
from parse_apis.axiom_trade_api import AxiomTrade, ParseError

client = AxiomTrade()

# Retrieve all currently published asset prices (one page, capped for safety).
try:
    for coin in client.coin_prices.list(limit=10):
        print(f"{coin.symbol}: ${coin.price_usd:,.2f}")
except ParseError as e:
    print(f"Failed to fetch prices: {e.code}")

# Drill into a single price using .first().
top = client.coin_prices.list(limit=1).first()
if top is not None:
    print(f"\nFirst listed asset: {top.symbol} at ${top.price_usd:,.2f}")

print("\nexercised: coin_prices.list")
All endpoints · 1 totalmissing one? ·

Returns the current USD reference prices Axiom publishes for the base assets of the chains it supports (one row per asset symbol, e.g. BTC, ETH, SOL, BNB). One round trip, no parameters, no pagination; prices are live and change on every call. The set of symbols is whatever the site currently publishes.

Input

No input parameters required.

Response
{
  "type": "object",
  "fields": {
    "prices": "array of {symbol, price_usd}: asset ticker symbol and its current USD price as a number",
    "currency": "quote currency of every price (always USD)"
  },
  "sample": {
    "data": {
      "prices": [
        {
          "symbol": "BTC",
          "price_usd": 78752.835
        },
        {
          "symbol": "ETH",
          "price_usd": 2496.885
        },
        {
          "symbol": "SOL",
          "price_usd": 104.16
        },
        {
          "symbol": "BNB",
          "price_usd": 756.065
        }
      ],
      "currency": "USD"
    },
    "status": "success"
  }
}

About the Axiom API

What the API Returns

The get_coin_prices endpoint returns an array of objects, each containing a symbol (the asset ticker, such as BTC, ETH, SOL, or BNB) and a price_usd numeric field representing the current USD reference price Axiom publishes for that asset. A top-level currency field confirms the quote denomination, which is always USD. The full set of symbols reflects exactly what Axiom currently supports across its listed chains.

Endpoint Behavior

get_coin_prices takes no input parameters and returns no pagination cursor — a single round trip delivers all currently tracked assets at once. Because Axiom's prices are live, the numeric values in price_usd can differ between consecutive calls. There is no historical data or timestamp field in the response; this endpoint is a snapshot of the current moment.

Coverage and Scope

The API covers the base chain assets Axiom tracks, which currently includes major layer-1 tokens. The symbol set is dynamic: as Axiom adds support for new chains, those assets appear automatically in the response array without any change to how you call the endpoint.

Reliability & maintenanceVerified

The Axiom API is a managed, monitored endpoint for axiom.trade — not a raw scraper you maintain. Every endpoint is automatically health-checked on a schedule, and when axiom.trade changes and a check fails, the API is automatically queued for repair and re-verified. It is built to keep working as the site underneath it changes.

This isn't an official axiom.trade API — it's an independent, maintained REST wrapper over public data. Where the source has no official API (or only a limited one), Parse gives you a stable contract over a source that never promised one, and keeps it current. Need a new endpoint or field? You can revise it yourself in plain English and the agent rebuilds it against the live site in minutes — contributing the change back to the shared API is free.

Last verified
2h ago
Latest check
1/1 endpoint passing
Maintenance
Monitored & self-healing
Will this API break when the source site changes?+
It's built not to. Every endpoint is health-checked on a schedule with automated test probes. When the source site changes and a check fails, the API is automatically queued for repair and re-verified — that's the self-healing layer. Each API page shows when its endpoints were last verified. And because marketplace APIs are shared, any fix reaches everyone using it.
Is this an official API from the source site?+
No — Parse APIs are independent, managed REST wrappers over publicly available data. That is the point: where a site has no official API (or only a limited one), Parse gives you a maintained, monitored endpoint for that data and keeps it working as the site changes — so you get a stable contract over a source that never promised one.
Can I fix or extend this API myself if I need a new endpoint or field?+
Yes — and you don't have to wait on us. This API was generated by the Parse agent, which stays attached. Describe the change in plain English ("add an endpoint that returns reviews", "fix the price field") in the revise box on the API page or via the revise_api MCP tool, and the agent rebuilds it against the live site in minutes. Contributing the change back to the public API is free.
What happens if I call an endpoint that has an issue?+
Errors are machine-readable: a bad call returns a clean status with the list of available endpoints and a repair hint, so an agent (or you) can recover or trigger a fix instead of failing silently. Confirmed failures feed the automatic repair queue.
Common use cases
  • Display live USD prices for BTC, ETH, SOL, and BNB alongside on-chain analytics dashboards
  • Trigger alerts when a specific asset's price_usd crosses a defined threshold
  • Normalize token amounts to USD value in portfolio tracking tools using current price_usd data
  • Populate a price ticker widget for a DeFi front-end that references Axiom-listed chains
  • Benchmark Axiom's published reference prices against other market feeds for spread analysis
  • Seed a database with spot USD prices for backtesting or logging purposes at regular polling intervals
Pricing & limitsSee full pricing →
TierPriceCredits/monthRate limit
Free$0/mo2005 req/min
Hobby$30/mo1,00020 req/min
Developer$100/mo5,000100 req/min
Team$300/mo20,000300 req/min
Company$1,000/mo100,000500 req/min

Each endpoint has a fixed posted price per successful call — most fall between 1 and 10 credits — shown on this API's page before you run it. Exceeding the rate limit returns a 429 response. Authenticate with the X-API-Key header.

Frequently asked questions
Does axiom.trade have an official developer API?+
Axiom.trade does not publish a documented public developer API. This Parse API provides structured access to the USD reference price data Axiom surfaces on its platform.
What exactly does get_coin_prices return?+
It returns an array of objects, one per supported asset, each with a symbol string (e.g. SOL, BNB) and a price_usd number. A top-level currency field confirms all prices are quoted in USD. There are no additional metadata fields such as timestamps, 24-hour change, or market cap in the current response.
Can I filter the response to a specific asset, or request historical prices?+
The endpoint returns all supported assets in a single call with no filtering parameters, and it provides only the current price — no historical data or OHLCV fields are included. You can fork this API on Parse and revise it to add a filtering layer or a separate historical-data endpoint.
Does the API cover token-level prices for assets traded on Axiom, beyond the base chain assets?+
Not currently. The API covers base chain assets (e.g. BTC, ETH, SOL, BNB) that Axiom publishes as reference prices. Individual token or memecoin prices are not included. You can fork it on Parse and revise to add an endpoint targeting specific token price data.
How fresh are the prices returned by get_coin_prices?+
Prices reflect the live reference values Axiom publishes at the moment of each request. There is no cache TTL or timestamp field in the response, so two calls made in quick succession may return different values. For time-series use cases, you would need to record and timestamp responses in your own system.
Page content last updated . Spec covers 1 endpoint from axiom.trade.
Related APIs in Crypto Web3See all →
cex.io API
Access real-time cryptocurrency market data from CEX.io, including live prices, tickers, order books, trade history, and OHLCV candles for spot trading pairs. Monitor market movements and analyze trading opportunities with comprehensive pricing and order depth information across supported cryptocurrencies.
cryptocraft.com API
Track real-time cryptocurrency prices across 20+ exchanges, analyze historical OHLC data and coin fundamentals, and stay informed with upcoming economic events and market news. Monitor thousands of coins and instruments to make data-driven investment decisions.
awx.pro API
Access data from awx.pro.
barchart.com API
Monitor live stock quotes and commodity prices, analyze options chains with gamma exposure data, and access historical market time series to track top-performing stocks. Use real-time and historical data to make informed trading and investment decisions across equities and commodities.
tradevertex-ai.polsia.app API
Access data from tradevertex-ai.polsia.app.
kraken.com API
Get live Kraken exchange market data including supported assets, trading pairs metadata, tickers, OHLCV candlesticks, and bid/ask spread history.
forex.com API
Access real-time forex prices and currency exchange rates, track client sentiment and pivot points, and browse economic calendar events. Search across multiple currency instruments and retrieve rollover rates.
usagold.com API
Get live and historical gold and silver prices from USAGOLD, including daily, weekly, and monthly data to track price trends over time. Access current market rates or retrieve price history summaries to monitor precious metal values.