---
title: "Asset rating"
method: GET
path: "/explorer/{network}/asset/{asset}/rating"
tags: ["Asset Info API"]
---

# Asset rating

`GET /explorer/{network}/asset/{asset}/rating`

To solve the problem of assets ranking on StellarExpert, we designed a system of technical indicators based purely on the ledger activity, including

  - asset age (time elapsed sisnce the first payment)
  - established trustlines
  - total number of payments
  - total number of trades
  - weekly trading volume
  - market liquidity (based on the relative slippage of {ASSET}/XLM market)
  - asset interoperability (based on additional asset metadata and supported SEP standards)

All indicators are calculated on the logarithmic scale to normalize distribution for assets with high trading/transfer activity. The compound rating calculated as the average of all seven indicators can be used to roughly estimate the popularity of any Stellar asset purely from the technical point of view.

## Path parameters

- `network` 'public' | 'testnet', required — Stellar network
- `asset` string, required — An asset in the format {CODE}-{ISSUER} (or "XLM" for Stellar lumens)

## Response `200`

Asset rating fetched

- AssetRating — Asset rating info
  - `asset` string — An asset in the format {CODE}-{ISSUER} (or "XLM" for Stellar lumens)
  - `rating` object
    - `age` integer
    - `trages` integer
    - `payments` integer
    - `trustlines` integer
    - `volume7d` integer
    - `interop` integer
    - `liqidity` integer
    - `average` integer

## Other responses

- `400` — Invalid request parameters
- `404` — Asset not found

---

[API](https://skmtc.net/stellar-expert/apis/stellarexpert-api.md) · [All operations](https://skmtc.net/stellar-expert/apis/stellarexpert-api/llms.txt) · [OpenAPI document](https://skmtc-service-staging.skmtc.workers.dev/v1/apis/stellar-expert/stellarexpert-api/revisions/5d96955edab4/schema)
