changedInput schema / properties / coinId / description
Previous value: -"Canonical CoinPaprika coin slug in 'symbol-name' format, e.g. 'btc-bitcoin', 'eth-ethereum', 'ada-cardano'. Do NOT pass ticker symbols ('BTC', 'AAVE') or guess the slug — it is not derivable from the symbol (e.g. AAVE resolves to 'aave-new', which you could not guess). Call search or resolveId first to resolve a symbol or name to its canonical id."New value: +"Canonical CoinPaprika coin slug in 'symbol-name' format, e.g. 'btc-bitcoin', 'eth-ethereum', 'ada-cardano'. Do NOT pass ticker symbols ('BTC', 'AAVE') or guess the slug; it is not derivable from the symbol (e.g. AAVE resolves to 'aave-new', which you could not guess). Call search or resolveId first to resolve a symbol or name to its canonical id."
changedOutput schema / (root)
Previous value: -nullNew value: +{
+ "$schema": "http://json-schema.org/draft-07/schema#",
+ "additionalProperties": true,
+ "properties": {
+ "beta_value": {
+ "type": [
+ "number",
+ "null"
+ ]
+ },
+ "circulating_supply": {
+ "type": [
+ "number",
+ "null"
+ ]
+ },
+ "first_data_at": {
+ "type": "string"
+ },
+ "id": {
+ "type": "string"
+ },
+ "last_updated": {
+ "type": "string"
+ },
+ "max_supply": {
+ "type": [
+ "number",
+ "null"
+ ]
+ },
+ "name": {
+ "type": "string"
+ },
+ "quotes": {
+ "additionalProperties": {
+ "additionalProperties": true,
+ "properties": {
+ "ath_date": {
+ "type": [
+ "string",
+ "null"
+ ]
+ },
+ "ath_price": {
+ "type": [
+ "number",
+ "null"
+ ]
+ },
+ "market_cap": {
+ "type": [
+ "number",
+ "null"
+ ]
+ },
+ "market_cap_change_24h": {
+ "type": [
+ "number",
+ "null"
+ ]
+ },
+ "percent_change_12h": {
+ "type": [
+ "number",
+ "null"
+ ]
+ },
+ "percent_change_15m": {
+ "type": [
+ "number",
+ "null"
+ ]
+ },
+ "percent_change_1h": {
+ "type": [
+ "number",
+ "null"
+ ]
+ },
+ "percent_change_1y": {
+ "type": [
+ "number",
+ "null"
+ ]
+ },
+ "percent_change_24h": {
+ "type": [
+ "number",
+ "null"
+ ]
+ },
+ "percent_change_30d": {
+ "type": [
+ "number",
+ "null"
+ ]
+ },
+ "percent_change_30m": {
+ "type": [
+ "number",
+ "null"
+ ]
+ },
+ "percent_change_6h": {
+ "type": [
+ "number",
+ "null"
+ ]
+ },
+ "percent_change_7d": {
+ "type": [
+ "number",
+ "null"
+ ]
+ },
+ "percent_from_price_ath": {
+ "type": [
+ "number",
+ "null"
+ ]
+ },
+ "price": {
+ "type": [
+ "number",
+ "null"
+ ]
+ },
+ "volume_24h": {
+ "type": [
+ "number",
+ "null"
+ ]
+ },
+ "volume_24h_change_24h": {
+ "type": [
+ "number",
+ "null"
+ ]
+ }
+ },
+ "type": "object"
+ },
+ "description": "Keyed by quote currency code (e.g. 'USD', 'BTC').",
+ "type": "object"
+ },
+ "rank": {
+ "type": "number"
+ },
+ "symbol": {
+ "type": "string"
+ },
+ "total_supply": {
+ "description": "May be 0 as a sentinel for tokens with no supply cap. Cross-reference with CoinPaprika docs for sentinel semantics.",
+ "type": [
+ "number",
+ "null"
+ ]
+ }
+ },
+ "type": "object"
+}