Skip to main content
GET
/
v1
/
assets
/
{asset_type}
/
{asset_symbol}
curl
curl -X GET "https://api.services.payward.com/v1/assets/stablecoin/USDC" \
  -H "API-Key: $PWS_API_KEY" \
  -H "API-Nonce: $PWS_API_NONCE" \
  -H "API-Sign: $PWS_API_SIGN"
{
  "data": {
    "symbol": "BTC",
    "type": "crypto",
    "name": "Bitcoin",
    "status": {
      "swap_trading": {
        "enabled": true,
        "disabled_against": []
      },
      "withdraw": {
        "enabled": true
      },
      "deposit": {
        "enabled": true
      }
    },
    "listing_date": "2013-09-12",
    "logo": {
      "width": 64,
      "height": 64,
      "href": "https://assets.payward.com/logos/btc.png",
      "type": "image/png"
    },
    "decimals": {
      "funding": 8,
      "swap": 8
    },
    "price": "67234.18",
    "market_cap": "1325840000000",
    "market_cap_rank": 1,
    "trending_rank": 3,
    "volume": {
      "last_24h": "38421000000"
    },
    "supply": {
      "circulating": "19720893",
      "total": "19720893",
      "max": "21000000",
      "in_quote": {
        "circulating": "1325840000000",
        "total": "1325840000000",
        "max": "1411917780000"
      }
    },
    "price_change_percent": {
      "last_1h": "0.21",
      "last_24h": "1.84",
      "last_7d": "-2.13",
      "last_30d": "6.42",
      "last_1y": "78.34"
    },
    "ath": {
      "value": "73750.07",
      "timestamp": "2024-03-14T14:08:00Z"
    }
  }
}

Authorizations

API-Key
string
header
required

Your public API key. Identifies the partner making the request.

API-Nonce
string
header
required

Monotonically increasing nonce included in the request signature.

API-Sign
string
header
required

HMAC signature over the request, computed with your private key.

Path Parameters

asset_type
enum<string>
required

Classification of the asset (fiat, crypto, stablecoin, or xstock).

Available options:
fiat,
crypto,
stablecoin,
xstock
asset_symbol
string
required

Asset name (e.g., BTC, ETH, USD). Ticker symbol of an asset (e.g. BTC, USDC, EUR).

Required string length: 3 - 16
Example:

"BTC"

Query Parameters

quote_symbol
string
default:USD

Ticker symbol of the fiat quote asset to use for valuations (e.g. USD, EUR). Defaults to USD. Ticker symbol of an asset (e.g. BTC, USDC, EUR).

Required string length: 3 - 16
Example:

"BTC"

quote_type
enum<string>
default:fiat

Classification of the quote asset. Currently only fiat is supported.

Available options:
fiat

Response

Response

data
object
required