changedInput schema / properties / order_by / enum
Previous value: -[
- "volume_usd_24h",
- "volume_usd_7d",
- "volume_usd_30d",
- "liquidity_usd",
- "txns_24h",
- "created_at",
- "price_usd",
- "price_change_percentage_24h",
- "volume_usd",
- "transactions",
- "last_price_change_usd_24h",
- "volume_24h",
- "volume_7d",
- "volume_30d",
- "liquidity"
-]New value: +[
+ "volume_usd_24h",
+ "volume_usd_7d",
+ "volume_usd_30d",
+ "liquidity_usd",
+ "txns_24h",
+ "created_at",
+ "price_usd",
+ "price_change_percentage_24h",
+ "price_change_percentage_6h",
+ "price_change_percentage_1h",
+ "price_change_percentage_5m",
+ "volume_usd",
+ "transactions",
+ "last_price_change_usd_24h",
+ "volume_24h",
+ "volume_7d",
+ "volume_30d",
+ "liquidity"
+]
changedInput schema / properties / sort_by / enum
Previous value: -[
- "volume_usd_24h",
- "volume_usd_7d",
- "volume_usd_30d",
- "liquidity_usd",
- "txns_24h",
- "created_at",
- "price_usd",
- "price_change_percentage_24h",
- "volume_usd",
- "transactions",
- "last_price_change_usd_24h",
- "volume_24h",
- "volume_7d",
- "volume_30d",
- "liquidity"
-]New value: +[
+ "volume_usd_24h",
+ "volume_usd_7d",
+ "volume_usd_30d",
+ "liquidity_usd",
+ "txns_24h",
+ "created_at",
+ "price_usd",
+ "price_change_percentage_24h",
+ "price_change_percentage_6h",
+ "price_change_percentage_1h",
+ "price_change_percentage_5m",
+ "volume_usd",
+ "transactions",
+ "last_price_change_usd_24h",
+ "volume_24h",
+ "volume_7d",
+ "volume_30d",
+ "liquidity"
+]
changedOutput schema / (root)
Previous value: -nullNew value: +{
+ "$schema": "http://json-schema.org/draft-07/schema#",
+ "additionalProperties": true,
+ "properties": {
+ "has_next_page": {
+ "description": "True if more results are available; fetch them by passing next_cursor as `cursor`.",
+ "type": "boolean"
+ },
+ "next_cursor": {
+ "description": "Opaque pagination cursor. Pass back as the `cursor` argument to fetch the next page; null/absent on the last page.",
+ "type": [
+ "string",
+ "null"
+ ]
+ },
+ "query": {
+ "additionalProperties": {},
+ "description": "Echo of the resolved query and filters the API applied.",
+ "type": "object"
+ },
+ "results": {
+ "items": {
+ "additionalProperties": true,
+ "properties": {
+ "chain": {
+ "description": "Network slug (e.g. 'ethereum'). Note: also exposed as 'network' on some endpoints.",
+ "type": "string"
+ },
+ "created_at": {
+ "description": "ISO 8601 pool-creation timestamp.",
+ "type": "string"
+ },
+ "created_at_block_number": {
+ "type": "number"
+ },
+ "dex_id": {
+ "type": "string"
+ },
+ "dex_name": {
+ "type": "string"
+ },
+ "fee": {
+ "description": "Pool fee (units depend on DEX; null for some DEXes).",
+ "type": [
+ "number",
+ "null"
+ ]
+ },
+ "id": {
+ "description": "Pool contract address.",
+ "type": "string"
+ },
+ "last_price": {
+ "type": [
+ "number",
+ "null"
+ ]
+ },
+ "last_price_usd": {
+ "type": [
+ "number",
+ "null"
+ ]
+ },
+ "tokens": {
+ "items": {
+ "additionalProperties": true,
+ "properties": {
+ "added_at": {
+ "description": "ISO 8601 timestamp when DexPaprika first indexed this token.",
+ "type": "string"
+ },
+ "chain": {
+ "type": "string"
+ },
+ "decimals": {
+ "type": "number"
+ },
+ "fdv": {
+ "description": "Fully-diluted valuation in USD.",
+ "type": [
+ "number",
+ "null"
+ ]
+ },
+ "id": {
+ "description": "Token contract address (chain-canonical form).",
+ "type": "string"
+ },
+ "name": {
+ "type": "string"
+ },
+ "symbol": {
+ "type": "string"
+ }
+ },
+ "type": "object"
+ },
+ "type": "array"
+ }
+ },
+ "type": "object"
+ },
+ "type": "array"
+ }
+ },
+ "required": [
+ "results"
+ ],
+ "type": "object"
+}