{
  "openapi": "3.1.0",
  "info": {
    "version": "1.1.0",
    "title": "Blockchain Data API",
    "description": "Blockchain data endpoints for Solana accounts, tokens, and transactions."
  },
  "servers": [
    {
      "url": "https://public-api.birdeye.so"
    }
  ],
  "tags": [
    {
      "name": "Account"
    },
    {
      "name": "Token"
    },
    {
      "name": "Transaction"
    }
  ],
  "paths": {
    "/blockchain/v1/account/detail": {
      "get": {
        "tags": [
          "Account"
        ],
        "summary": "Blockchain - Account Detail",
        "description": "Returns account details for a Solana address.\n",
        "parameters": [
          {
            "name": "address",
            "description": "Solana account address.",
            "in": "query",
            "required": true,
            "schema": {
              "type": "string",
              "example": "99wRz6QVMo8HbDQTrv4GrFEUPymiiZeXtzjs3JGVbFNs"
            }
          }
        ],
        "responses": {
          "200": {
            "$ref": "#/components/responses/blockchainAccountDetailResponse"
          },
          "400": {
            "$ref": "#/components/responses/400"
          },
          "401": {
            "$ref": "#/components/responses/401"
          },
          "403": {
            "$ref": "#/components/responses/403"
          },
          "429": {
            "$ref": "#/components/responses/429"
          },
          "500": {
            "$ref": "#/components/responses/500"
          }
        },
        "operationId": "get-blockchain-v1-account-detail"
      }
    },
    "/blockchain/v1/account/detail/multiple": {
      "post": {
        "tags": [
          "Account"
        ],
        "summary": "Blockchain - Multiple Account Details",
        "description": "Returns account details for up to 100 Solana addresses.\n",
        "requestBody": {
          "required": true,
          "content": {
            "application/json": {
              "schema": {
                "type": "object",
                "required": [
                  "addresses"
                ],
                "properties": {
                  "addresses": {
                    "type": "array",
                    "minItems": 1,
                    "maxItems": 100,
                    "description": "Solana account addresses. Maximum 100 addresses.",
                    "items": {
                      "type": "string"
                    }
                  }
                }
              },
              "example": {
                "addresses": [
                  "99wRz6QVMo8HbDQTrv4GrFEUPymiiZeXtzjs3JGVbFNs",
                  "BXeZkgCdNgpJ8SkSWqVnheB5WSUm7qy52SkRDrE1Jbi6",
                  "12LmXPr2z4TfkDMS4PA87wvAbW8w2JUBKsW5kMV9VN5",
                  "125Ei5rFXvLoThesL8PpszoebQS2mTKNtLAH1NECtQd"
                ]
              }
            }
          }
        },
        "responses": {
          "200": {
            "$ref": "#/components/responses/blockchainAccountMultipleResponse"
          },
          "400": {
            "$ref": "#/components/responses/400"
          },
          "401": {
            "$ref": "#/components/responses/401"
          },
          "403": {
            "$ref": "#/components/responses/403"
          },
          "429": {
            "$ref": "#/components/responses/429"
          },
          "500": {
            "$ref": "#/components/responses/500"
          }
        },
        "operationId": "post-blockchain-v1-account-detail-multiple"
      }
    },
    "/blockchain/v1/account/token-accounts": {
      "get": {
        "tags": [
          "Account"
        ],
        "summary": "Blockchain - Token Accounts",
        "description": "Returns token accounts owned by a Solana address. Omit state to return all states. hide_zero defaults to false.\n",
        "parameters": [
          {
            "name": "owner",
            "description": "Solana owner address.",
            "in": "query",
            "required": true,
            "schema": {
              "type": "string",
              "example": "11111111111111111111111111111111"
            }
          },
          {
            "name": "state",
            "description": "Filter by state. Omit to return all states.",
            "in": "query",
            "schema": {
              "type": "string",
              "enum": [
                "uninitialized",
                "initialized",
                "frozen"
              ],
              "example": "initialized"
            }
          },
          {
            "name": "hide_zero",
            "description": "Exclude token accounts with zero balance. Defaults to false.",
            "in": "query",
            "schema": {
              "type": "boolean",
              "default": false,
              "example": false
            }
          }
        ],
        "responses": {
          "200": {
            "$ref": "#/components/responses/blockchainTokenAccountsResponse"
          },
          "400": {
            "$ref": "#/components/responses/400"
          },
          "401": {
            "$ref": "#/components/responses/401"
          },
          "403": {
            "$ref": "#/components/responses/403"
          },
          "429": {
            "$ref": "#/components/responses/429"
          },
          "500": {
            "$ref": "#/components/responses/500"
          }
        },
        "operationId": "get-blockchain-v1-account-token-accounts"
      }
    },
    "/blockchain/v1/token/metadata": {
      "get": {
        "tags": [
          "Token"
        ],
        "summary": "Blockchain - Token Metadata",
        "description": "Returns metadata for a Solana token mint.\n",
        "parameters": [
          {
            "name": "token",
            "description": "Solana token mint address.",
            "in": "query",
            "required": true,
            "schema": {
              "type": "string",
              "example": "2wjBpgBd215Wp5s9hxJ8wG8K7hoxEhGFfyp55NCh8Fmt"
            }
          }
        ],
        "responses": {
          "200": {
            "$ref": "#/components/responses/blockchainTokenMetadataResponse"
          },
          "400": {
            "$ref": "#/components/responses/400"
          },
          "401": {
            "$ref": "#/components/responses/401"
          },
          "403": {
            "$ref": "#/components/responses/403"
          },
          "429": {
            "$ref": "#/components/responses/429"
          },
          "500": {
            "$ref": "#/components/responses/500"
          }
        },
        "operationId": "get-blockchain-v1-token-metadata"
      }
    },
    "/blockchain/v1/token/metadata/multiple": {
      "post": {
        "tags": [
          "Token"
        ],
        "summary": "Blockchain - Multiple Token Metadata",
        "description": "Returns metadata for up to 100 Solana token mints.\n",
        "requestBody": {
          "required": true,
          "content": {
            "application/json": {
              "schema": {
                "type": "object",
                "required": [
                  "tokens"
                ],
                "properties": {
                  "tokens": {
                    "type": "array",
                    "minItems": 1,
                    "maxItems": 100,
                    "description": "Solana token mint addresses. Maximum 100 tokens.",
                    "items": {
                      "type": "string"
                    }
                  }
                }
              },
              "example": {
                "tokens": [
                  "FhMxWnZts95ViF8hgzwvomydAiLP9qfgZHyGRnvkNia5",
                  "6hiALznKpxkDjUXmmja8QhCY3meTN1wTEga8vSSUgaA4"
                ]
              }
            }
          }
        },
        "responses": {
          "200": {
            "$ref": "#/components/responses/blockchainTokenMetadataMultipleResponse"
          },
          "400": {
            "$ref": "#/components/responses/400"
          },
          "401": {
            "$ref": "#/components/responses/401"
          },
          "403": {
            "$ref": "#/components/responses/403"
          },
          "429": {
            "$ref": "#/components/responses/429"
          },
          "500": {
            "$ref": "#/components/responses/500"
          }
        },
        "operationId": "post-blockchain-v1-token-metadata-multiple"
      }
    },
    "/blockchain/v1/transaction/detail": {
      "get": {
        "tags": [
          "Transaction"
        ],
        "summary": "Blockchain - Transaction Detail",
        "description": "Returns details for a Solana transaction signature.\n",
        "parameters": [
          {
            "name": "signature",
            "description": "Solana transaction signature.",
            "in": "query",
            "required": true,
            "schema": {
              "type": "string",
              "example": "39FeSE4ykBAZiFsSJrhAKoqTszXF8fbTMZE1oEu5c91AuYq9t1vcg8wsXxYigdXNm22QAHCJ6oUG23Mnr4bKF5ao"
            }
          }
        ],
        "responses": {
          "200": {
            "$ref": "#/components/responses/blockchainTransactionDetailResponse"
          },
          "400": {
            "$ref": "#/components/responses/400"
          },
          "401": {
            "$ref": "#/components/responses/401"
          },
          "403": {
            "$ref": "#/components/responses/403"
          },
          "429": {
            "$ref": "#/components/responses/429"
          },
          "500": {
            "$ref": "#/components/responses/500"
          }
        },
        "operationId": "get-blockchain-v1-transaction-detail"
      }
    }
  },
  "components": {
    "securitySchemes": {
      "apiKeyAuth": {
        "type": "apiKey",
        "in": "header",
        "name": "X-API-KEY",
        "description": "API key for authentication"
      }
    },
    "requestBodies": {
      "multiPrice": {
        "required": true,
        "content": {
          "application/json": {
            "schema": {
              "$ref": "#/components/schemas/MultiPriceBody"
            },
            "examples": {
              "solana": {
                "value": {
                  "list_address": "So11111111111111111111111111111111111111112,DezXAZ8z7PnrnRJjz3wXBoRgixCa6xjnB7YaB1pPB263"
                }
              }
            }
          }
        }
      },
      "multiPriceVolume": {
        "required": true,
        "content": {
          "application/json": {
            "schema": {
              "$ref": "#/components/schemas/MultiPriceVolumeBody"
            },
            "examples": {
              "solana": {
                "value": {
                  "list_address": "So11111111111111111111111111111111111111112,DezXAZ8z7PnrnRJjz3wXBoRgixCa6xjnB7YaB1pPB263",
                  "type": "24h"
                }
              }
            }
          }
        }
      },
      "tokenHolderBatch": {
        "required": true,
        "content": {
          "application/json": {
            "schema": {
              "$ref": "#/components/schemas/TokenHolderBatchBody"
            },
            "examples": {
              "solana": {
                "value": {
                  "token_address": "So11111111111111111111111111111111111111112",
                  "wallets": [
                    "5Q544fKrFoe6tsEbD7S8EmxGTJYAKtTVhAW5Q5pge4j1",
                    "2fgUSSpZFi8PjyhbrETSeLutJpFsuCfWsk2H6gb3Reye",
                    "CZY9M9BywshFAFjPw7uLgXw9yGtNL26YypLCJdewiHo"
                  ]
                }
              }
            }
          }
        }
      },
      "listAddressParam": {
        "required": true,
        "content": {
          "application/json": {
            "schema": {
              "$ref": "#/components/schemas/ListAddressBody"
            },
            "examples": {
              "solana": {
                "value": {
                  "list_address": "So11111111111111111111111111111111111111112,DezXAZ8z7PnrnRJjz3wXBoRgixCa6xjnB7YaB1pPB263"
                }
              }
            }
          }
        }
      },
      "latestTokenLiquidity": {
        "required": true,
        "content": {
          "application/json": {
            "schema": {
              "$ref": "#/components/schemas/LatestTokenLiquidityBody"
            },
            "examples": {
              "solana": {
                "value": {
                  "addresses": [
                    "2RaLR1kY37bbNfqWTK49AiCbPtdF27497jZ6DatKpump"
                  ]
                }
              }
            }
          }
        }
      },
      "walletTokenBalance": {
        "required": true,
        "content": {
          "application/json": {
            "schema": {
              "$ref": "#/components/schemas/WalletTokenBalanceBody"
            },
            "examples": {
              "solana": {
                "value": {
                  "wallet": "GbrNi5tsbViArzsiE2WX94rMCCGz87w9cVVWVqcPEyx6",
                  "token_addresses": [
                    "8i42ZVsjEGVhZ6spj4Z5aB36Msh9Vq4nnBaw5kq4pump"
                  ]
                }
              }
            }
          }
        }
      },
      "walletTxFirstFunded": {
        "required": true,
        "content": {
          "application/json": {
            "schema": {
              "$ref": "#/components/schemas/WalletTxFirstFundedBody"
            },
            "examples": {
              "solana": {
                "value": {
                  "wallets": [
                    "5Q544fKrFoe6tsEbD7S8EmxGTJYAKtTVhAW5Q5pge4j1",
                    "2fgUSSpZFi8PjyhbrETSeLutJpFsuCfWsk2H6gb3Reye",
                    "CZY9M9BywshFAFjPw7uLgXw9yGtNL26YypLCJdewiHo"
                  ],
                  "token_addresses": "So11111111111111111111111111111111111111112"
                }
              }
            }
          }
        }
      },
      "walletFundedBy": {
        "required": true,
        "content": {
          "application/json": {
            "schema": {
              "$ref": "#/components/schemas/WalletFundedByBody"
            },
            "examples": {
              "solana": {
                "value": {
                  "wallets": [
                    "5Q544fKrFoe6tsEbD7S8EmxGTJYAKtTVhAW5Q5pge4j1",
                    "2fgUSSpZFi8PjyhbrETSeLutJpFsuCfWsk2H6gb3Reye",
                    "CZY9M9BywshFAFjPw7uLgXw9yGtNL26YypLCJdewiHo"
                  ]
                }
              }
            }
          }
        }
      },
      "RequiredWallets": {
        "required": true,
        "content": {
          "application/json": {
            "schema": {
              "required": [
                "wallets"
              ],
              "type": "object",
              "properties": {
                "wallets": {
                  "type": "array",
                  "items": {
                    "type": "string"
                  },
                  "example": [
                    "5Q544fKrFoe6tsEbD7S8EmxGTJYAKtTVhAW5Q5pge4j1",
                    "2fgUSSpZFi8PjyhbrETSeLutJpFsuCfWsk2H6gb3Reye"
                  ]
                }
              }
            },
            "examples": {
              "solana": {
                "value": {
                  "wallets": [
                    "5Q544fKrFoe6tsEbD7S8EmxGTJYAKtTVhAW5Q5pge4j1",
                    "2fgUSSpZFi8PjyhbrETSeLutJpFsuCfWsk2H6gb3Reye",
                    "CZY9M9BywshFAFjPw7uLgXw9yGtNL26YypLCJdewiHo"
                  ]
                }
              }
            }
          }
        }
      },
      "walletPnlDetails": {
        "required": true,
        "content": {
          "application/json": {
            "schema": {
              "required": [
                "wallet"
              ],
              "type": "object",
              "properties": {
                "wallet": {
                  "type": "string",
                  "example": "5Q544fKrFoe6tsEbD7S8EmxGTJYAKtTVhAW5Q5pge4j1"
                },
                "token_addresses": {
                  "type": "array",
                  "items": {
                    "type": "string"
                  },
                  "example": [
                    "2VKDTnMF9hmDfCG4i7yPHsfYzYCRhLwQcgUQPxvvYKnV"
                  ]
                },
                "duration": {
                  "type": "string",
                  "enum": [
                    "all",
                    "90d",
                    "30d",
                    "7d",
                    "24h"
                  ],
                  "default": "all"
                },
                "position_scope": {
                  "type": "string",
                  "description": "Calculation mode for PnL. duration_only calculates PnL only for each selected time bucket. cumulative calculates realized_pnl cumulatively from the start time, while unrealized_pnl is based on the all-time open position. Defaults to duration_only.",
                  "enum": [
                    "duration_only",
                    "cumulative"
                  ],
                  "default": "duration_only"
                },
                "pnl_method": {
                  "type": "string",
                  "description": "PNL calculation method. `wac` (Weighted Average Cost): calculates PNL for each sell against the average cost of the position held at the time of the sell. Buys only re-average the cost of the remaining inventory, and previously realized sell PNL is not affected by later trades. `netcash` (Net Cash): calculates PNL across the full trade history using the spread between cumulative average sell price and cumulative average buy price. The buy average includes all buys and is not reduced by sells, so later buys can change the reported PNL.",
                  "required": false,
                  "schema": {
                    "type": "string",
                    "enum": [
                      "wac",
                      "net_cash"
                    ],
                    "default": "net_cash"
                  }
                },
                "sort_type": {
                  "type": "string",
                  "enum": [
                    "asc",
                    "desc"
                  ],
                  "default": "desc"
                },
                "sort_by": {
                  "type": "string",
                  "enum": [
                    "last_trade"
                  ],
                  "default": "last_trade"
                },
                "limit": {
                  "type": "integer",
                  "minimum": 1,
                  "maximum": 100,
                  "default": 10
                },
                "offset": {
                  "type": "integer",
                  "minimum": 0,
                  "maximum": 10000,
                  "default": 0
                }
              }
            },
            "examples": {
              "solana": {
                "value": {
                  "wallet": "123hJZ8FGVhesDUrv5dCgorewd7KMqBkFhoGdyZNp62D",
                  "sort_by": "value",
                  "duration": "7d",
                  "sort_type": "asc",
                  "limit": 2,
                  "token_addresses": [
                    "2VKDTnMF9hmDfCG4i7yPHsfYzYCRhLwQcgUQPxvvYKnV"
                  ]
                }
              }
            }
          }
        }
      },
      "walletTransfer": {
        "required": true,
        "content": {
          "application/json": {
            "schema": {
              "$ref": "#/components/schemas/WalletTransferBody"
            },
            "examples": {
              "solana": {
                "value": {
                  "wallet": "41zCUJsKk6cMB94DDtm99qWmyMZfp4GkAhhuz4xTwePu",
                  "token_address": "EPjFWdd5AufqSSqeM2qN1xzybapC8G4wEGGkZwyTDt1v",
                  "time_from": 1727788070,
                  "time_to": 1727788076,
                  "flow": "in",
                  "from_amount": 10.01,
                  "to_amount": 10.001,
                  "from_value": 1.001,
                  "to_value": 10000,
                  "from_wallet": "41zCUJsKk6cMB94DDtm99qWmyMZfp4GkAhhuz4xTwePu",
                  "to_wallet": "41zCUJsKk6cMB94DDtm99qWmyMZfp4GkAhhuz4xTwePu",
                  "cursor": "xxx",
                  "limit": 100
                }
              }
            }
          }
        }
      },
      "totalWalletTransfer": {
        "required": true,
        "content": {
          "application/json": {
            "schema": {
              "$ref": "#/components/schemas/TotalWalletTransferBody"
            },
            "examples": {
              "solana": {
                "value": {
                  "wallet": "41zCUJsKk6cMB94DDtm99qWmyMZfp4GkAhhuz4xTwePu",
                  "token_address": "EPjFWdd5AufqSSqeM2qN1xzybapC8G4wEGGkZwyTDt1v",
                  "time_from": 1727788070,
                  "time_to": 1727788076,
                  "flow": "in",
                  "from_amount": 10.01,
                  "to_amount": 10.001,
                  "from_value": 1.001,
                  "to_value": 10000,
                  "from_wallet": "41zCUJsKk6cMB94DDtm99qWmyMZfp4GkAhhuz4xTwePu",
                  "to_wallet": "41zCUJsKk6cMB94DDtm99qWmyMZfp4GkAhhuz4xTwePu"
                }
              }
            }
          }
        }
      },
      "tokenTransfer": {
        "required": true,
        "content": {
          "application/json": {
            "schema": {
              "$ref": "#/components/schemas/TokenTransferBody"
            },
            "examples": {
              "solana": {
                "value": {
                  "token_address": "EPjFWdd5AufqSSqeM2qN1xzybapC8G4wEGGkZwyTDt1v",
                  "time_from": 1727788070,
                  "time_to": 1727788076,
                  "from_amount": 10.01,
                  "to_amount": 10.001,
                  "from_value": 1.001,
                  "to_value": 10000,
                  "from_wallet": "41zCUJsKk6cMB94DDtm99qWmyMZfp4GkAhhuz4xTwePu",
                  "to_wallet": "41zCUJsKk6cMB94DDtm99qWmyMZfp4GkAhhuz4xTwePu",
                  "cursor": "xxxx",
                  "limit": 100
                }
              }
            }
          }
        }
      },
      "totalTokenTransfer": {
        "required": true,
        "content": {
          "application/json": {
            "schema": {
              "$ref": "#/components/schemas/TotalTokenTransferBody"
            },
            "examples": {
              "solana": {
                "value": {
                  "token_address": "EPjFWdd5AufqSSqeM2qN1xzybapC8G4wEGGkZwyTDt1v",
                  "time_from": 1727788070,
                  "time_to": 1727788076,
                  "from_amount": 10.01,
                  "to_amount": 10.001,
                  "from_value": 1.001,
                  "to_value": 10000,
                  "from_wallet": "41zCUJsKk6cMB94DDtm99qWmyMZfp4GkAhhuz4xTwePu",
                  "to_wallet": "41zCUJsKk6cMB94DDtm99qWmyMZfp4GkAhhuz4xTwePu",
                  "limit": 100
                }
              }
            }
          }
        }
      },
      "perpWalletTradeFills": {
        "required": true,
        "content": {
          "application/json": {
            "schema": {
              "required": [
                "wallet"
              ],
              "type": "object",
              "properties": {
                "wallet": {
                  "type": "string",
                  "example": "0x5b5d51203a0f9079f8aeb098a6523a13f298c060"
                },
                "sort_type": {
                  "type": "string",
                  "enum": [
                    "asc",
                    "desc"
                  ],
                  "default": "desc"
                },
                "limit": {
                  "type": "integer",
                  "minimum": 1,
                  "maximum": 20,
                  "default": 10
                },
                "cursor": {
                  "type": "string",
                  "default": ""
                }
              }
            },
            "examples": {
              "WalletTradeFills": {
                "value": {
                  "wallet": "0x5b5d51203a0f9079f8aeb098a6523a13f298c060",
                  "sort_type": "desc",
                  "limit": 1,
                  "cursor": "MHg1YjVkNTEyMDNhMGY5MDc5ZjhhZWIwOThhNjUyM2ExM2YyOThjMDYwLTE3ODkzNDM4NzcwMjgtMHhjOTYxNTY5MmM1YjQ0ZWJjY2FkYjA0NDQ1OGE4NDcwMjAyNDgwMDc4NjBiNzZkOGU2ZDJhMDFlNTg0YjgyOGE3"
                }
              }
            }
          }
        }
      },
      "perpWalletTransfers": {
        "required": true,
        "content": {
          "application/json": {
            "schema": {
              "required": [
                "wallet"
              ],
              "type": "object",
              "properties": {
                "wallet": {
                  "type": "string",
                  "example": "0x5b5d51203a0f9079f8aeb098a6523a13f298c060"
                },
                "sort_type": {
                  "type": "string",
                  "enum": [
                    "asc",
                    "desc"
                  ],
                  "default": "desc"
                },
                "limit": {
                  "type": "integer",
                  "minimum": 1,
                  "maximum": 20,
                  "default": 10
                },
                "cursor": {
                  "type": "string",
                  "default": ""
                }
              }
            },
            "examples": {
              "WalletTransfers": {
                "value": {
                  "wallet": "0x5b5d51203a0f9079f8aeb098a6523a13f298c060",
                  "sort_type": "desc",
                  "limit": 1,
                  "cursor": "MHg1YjVkNTEyMDNhMGY5MDc5ZjhhZWIwOThhNjUyM2ExM2YyOThjMDYwLTE3ODkzNDA2NjAzMzYtMHhiOWI5MzcwMTE1M2JkNDFmYmIzMjA0NDQ1N2ZhNzgwMjAxNGIwMGU2YjAzZWYyZjE1ZDgxZTI1M2Q0M2ZhZTBh"
                }
              }
            }
          }
        }
      }
    },
    "responses": {
      "400": {
        "description": "Bad Request",
        "content": {
          "application/json": {
            "schema": {
              "$ref": "#/components/schemas/ErrorResponse"
            },
            "example": {
              "success": false,
              "message": "Bad request"
            }
          }
        }
      },
      "401": {
        "description": "Unauthorized. API key is missing or invalid",
        "content": {
          "application/json": {
            "schema": {
              "$ref": "#/components/schemas/ErrorResponse"
            },
            "example": {
              "success": false,
              "message": "Unauthorized"
            }
          }
        }
      },
      "403": {
        "description": "Forbidden. Request is blacklisted or not whitelisted",
        "content": {
          "application/json": {
            "schema": {
              "$ref": "#/components/schemas/ErrorResponse"
            },
            "example": {
              "success": false,
              "message": "Access Denied"
            }
          }
        }
      },
      "429": {
        "description": "Too Many Requests. Rate limit reached",
        "content": {
          "application/json": {
            "schema": {
              "$ref": "#/components/schemas/ErrorResponse"
            },
            "example": {
              "success": false,
              "message": "Too many requests"
            }
          }
        }
      },
      "500": {
        "description": "Internal Server Error",
        "content": {
          "application/json": {
            "schema": {
              "$ref": "#/components/schemas/ErrorResponse"
            },
            "example": {
              "success": false,
              "message": "Internal Server Error"
            }
          }
        }
      },
      "DefiPrice": {
        "description": "JSON object containing price value and update time of a token",
        "content": {
          "application/json": {
            "schema": {
              "$ref": "#/components/schemas/DefiPriceResponse"
            },
            "examples": {
              "SolanaWithLiquidity": {
                "value": {
                  "data": {
                    "isScaledUiToken": false,
                    "value": 0.38622452197470425,
                    "updateUnixTime": 1745058945,
                    "updateHumanTime": "2025-04-19T10:35:45",
                    "priceChange24h": 1.933391934259418,
                    "priceInNative": 0.0027761598581298626,
                    "liquidity": 10854103.37938592
                  },
                  "success": true
                }
              },
              "EVMWithLiquidity": {
                "value": {
                  "data": {
                    "value": 0.000012151838032744844,
                    "updateUnixTime": 1745058827,
                    "updateHumanTime": "2025-04-19T10:33:47",
                    "priceChange24h": 1.4986903810717627,
                    "liquidity": 3349464.6246886267
                  },
                  "success": true
                }
              },
              "SolanaScaledUIAmount": {
                "value": {
                  "data": {
                    "isScaledUiToken": true,
                    "value": 404.21180826549516,
                    "updateUnixTime": 1751369725,
                    "updateHumanTime": "2025-07-01T11:35:25",
                    "priceChange24h": 4.268112150090328,
                    "priceInNative": 2.7135492516187805,
                    "scaledValue": 404.21180826549516,
                    "multiplier": 1,
                    "scaledPriceInNative": 2.7135492516187805
                  },
                  "success": true
                }
              },
              "MissingPrice": {
                "value": {
                  "success": true,
                  "data": null
                }
              }
            }
          }
        }
      },
      "DefiMultiPrice": {
        "description": "JSON object containing price values and update time of multiple tokens",
        "content": {
          "application/json": {
            "schema": {
              "$ref": "#/components/schemas/DefiMultiPriceResponse"
            },
            "examples": {
              "Solana": {
                "value": {
                  "success": true,
                  "data": {
                    "So11111111111111111111111111111111111111112": {
                      "isScaledUiToken": false,
                      "value": 127.32916175338693,
                      "updateUnixTime": 1726673192,
                      "updateHumanTime": "2024-09-18T15:26:32",
                      "priceInNative": 1,
                      "priceChange24h": -5.833510393308625,
                      "liquidity": 7026264396
                    },
                    "DezXAZ8z7PnrnRJjz3wXBoRgixCa6xjnB7YaB1pPB263": {
                      "isScaledUiToken": false,
                      "value": 0.00001598090539282,
                      "updateUnixTime": 1726673185,
                      "updateHumanTime": "2024-09-18T15:26:25",
                      "priceInNative": 1.2583e-7,
                      "priceChange24h": -4.766925300538944,
                      "liquidity": 1234414
                    }
                  }
                }
              },
              "EVM": {
                "value": {
                  "success": true,
                  "data": {
                    "0xC02aaA39b223FE8D0A0e5C4F27eAD9083C756Cc2": {
                      "value": 2600,
                      "updateUnixTime": 1726673192,
                      "updateHumanTime": "2024-09-18T15:26:32",
                      "priceChange24h": -5.833510393308625,
                      "liquidity": 7026264396
                    },
                    "0x6982508145454Ce325dDbE47a25d4ec3d2311933": {
                      "value": 9.58e-7,
                      "updateUnixTime": 1726673185,
                      "updateHumanTime": "2024-09-18T15:26:25",
                      "priceChange24h": -4.766925300538944,
                      "liquidity": 1431513
                    }
                  }
                }
              },
              "SolanaScaledUIAmount": {
                "value": {
                  "data": {
                    "XsP7xzNPvEHS1m6qfanPUGjNmdnmsLKEoNAnHjdxxyZ": {
                      "isScaledUiToken": true,
                      "value": 404.21180826549516,
                      "updateUnixTime": 1751369725,
                      "updateHumanTime": "2025-07-01T11:35:25",
                      "priceInNative": 2.71366223488443,
                      "priceChange24h": 4.268112150090328,
                      "scaledValue": 404.21180826549516,
                      "multiplier": 1,
                      "scaledPriceInNative": 2.71366223488443
                    },
                    "DezXAZ8z7PnrnRJjz3wXBoRgixCa6xjnB7YaB1pPB263": {
                      "isScaledUiToken": false,
                      "value": 0.000013874375132396532,
                      "updateUnixTime": 1751369771,
                      "updateHumanTime": "2025-07-01T11:36:11",
                      "priceInNative": 9.314514583570637e-8,
                      "priceChange24h": -4.55999840357565
                    }
                  },
                  "success": true
                }
              },
              "MissingMultiPrice": {
                "value": {
                  "success": true,
                  "data": {
                    "So11111111111111111111111111111111111111112": null,
                    "DezXAZ8z7PnrnRJjz3wXBoRgixCa6xjnB7YaB1pPB263": null
                  }
                }
              }
            }
          }
        }
      },
      "DefiHistoryPrice": {
        "description": "JSON object containing values and  unix timestamps of a token or pair",
        "content": {
          "application/json": {
            "schema": {
              "$ref": "#/components/schemas/DefiHistoryPriceResponse"
            },
            "examples": {
              "Solana": {
                "value": {
                  "success": true,
                  "data": {
                    "isScaledUiToken": false,
                    "items": [
                      {
                        "unixTime": 1726670700,
                        "value": 127.97284640184616
                      },
                      {
                        "unixTime": 1726671600,
                        "value": 128.04188346328968
                      },
                      {
                        "unixTime": 1726672500,
                        "value": 127.40223856228901
                      }
                    ]
                  }
                }
              },
              "SolanaScaledUIAmount": {
                "value": {
                  "data": {
                    "isScaledUiToken": true,
                    "multiplier": 1,
                    "items": [
                      {
                        "address": "Xsc9qvGR1efVDFGLrVsmkzv3qi45LTBjeUKSPmx9qEh",
                        "unixTime": 1751417580,
                        "value": 153.4602929354709,
                        "scaledValue": 153.4602929354709
                      },
                      {
                        "address": "Xsc9qvGR1efVDFGLrVsmkzv3qi45LTBjeUKSPmx9qEh",
                        "unixTime": 1751417640,
                        "value": 153.4602929354709,
                        "scaledValue": 153.4602929354709
                      }
                    ]
                  },
                  "success": true
                }
              }
            }
          }
        }
      },
      "DefiHistoryPriceUnix": {
        "description": "JSON object containing the historical price of a token resolved near the requested unix timestamp",
        "content": {
          "application/json": {
            "schema": {
              "$ref": "#/components/schemas/DefiHistoryPriceUnixResponse"
            },
            "examples": {
              "Solana": {
                "value": {
                  "success": true,
                  "data": {
                    "isScaledUiToken": false,
                    "value": 128.09276765626564,
                    "updateUnixTime": 1726675897,
                    "priceChange24h": -4.924324221890145
                  }
                }
              },
              "SolanaScaledUIAmount": {
                "value": {
                  "data": {
                    "isScaledUiToken": true,
                    "value": 154.24048063205083,
                    "updateUnixTime": 1751417954,
                    "priceChange24h": -2.3458062991146713,
                    "scaledValue": 154.24048063205083,
                    "multiplier": 1
                  },
                  "success": true
                }
              },
              "MissingHistoryPriceUnix": {
                "value": {
                  "success": true,
                  "data": null
                }
              }
            }
          }
        }
      },
      "DefiTxsToken": {
        "description": "JSON object containing transactions of a token",
        "content": {
          "application/json": {
            "schema": {
              "$ref": "#/components/schemas/LegacyTokenTradeListResponse"
            },
            "examples": {
              "SolanaScaledUIAmount": {
                "value": {
                  "success": true,
                  "data": {
                    "items": [
                      {
                        "quote": {
                          "symbol": "SHIPE",
                          "decimals": 6,
                          "address": "9K78h3XEb7qqRu4XEaAEhe3qXaAeN1XyHa65bLwKXaNp",
                          "amount": 3000940514830,
                          "uiAmount": 3000940.51483,
                          "price": 0.00008920248678973954,
                          "nearestPrice": 0.00008879906452142359,
                          "changeAmount": 3000940514830,
                          "uiChangeAmount": 3000940.51483,
                          "isScaledUiToken": false,
                          "multiplier": null
                        },
                        "base": {
                          "symbol": "SOL",
                          "decimals": 9,
                          "address": "So11111111111111111111111111111111111111112",
                          "amount": 1452043321,
                          "uiAmount": 1.452043321,
                          "price": 184.35493814782487,
                          "nearestPrice": 184.35493814782487,
                          "changeAmount": -1452043321,
                          "uiChangeAmount": -1.452043321,
                          "isScaledUiToken": false,
                          "multiplier": null
                        },
                        "basePrice": 184.35493814782487,
                        "quotePrice": 0.00008920248678973954,
                        "txHash": "NLiBctRYuhibKZCJPkPxGhDKi9pCo2fx818H1UBJ82gD5DKddvufzf5DAPVKkLgejQ4EezcgE72FUrf327VQGaV",
                        "source": "pump_amm",
                        "blockUnixTime": 1754883867,
                        "txType": "swap",
                        "owner": "5V7aauQjnizwXAPGcJnjC7mbpenbiQZBfBSxW3n7NGCD",
                        "side": "sell",
                        "alias": null,
                        "pricePair": 2066701.7790924432,
                        "from": {
                          "symbol": "SOL",
                          "decimals": 9,
                          "address": "So11111111111111111111111111111111111111112",
                          "amount": 1452043321,
                          "uiAmount": 1.452043321,
                          "price": 184.35493814782487,
                          "nearestPrice": 184.35493814782487,
                          "changeAmount": -1452043321,
                          "uiChangeAmount": -1.452043321,
                          "isScaledUiToken": false,
                          "multiplier": null
                        },
                        "to": {
                          "symbol": "SHIPE",
                          "decimals": 6,
                          "address": "9K78h3XEb7qqRu4XEaAEhe3qXaAeN1XyHa65bLwKXaNp",
                          "amount": 3000940514830,
                          "uiAmount": 3000940.51483,
                          "price": 0.00008920248678973954,
                          "nearestPrice": 0.00008879906452142359,
                          "changeAmount": 3000940514830,
                          "uiChangeAmount": 3000940.51483,
                          "isScaledUiToken": false,
                          "multiplier": null
                        },
                        "tokenPrice": 184.35493814782487,
                        "poolId": "7LfK73yHk16kaSqa4FDB8t1oU445zzSsgMMC3at4eCFR"
                      }
                    ],
                    "hasNext": true
                  }
                }
              },
              "TokenTransactions": {
                "value": {
                  "success": true,
                  "data": {
                    "items": [
                      {
                        "quote": {
                          "symbol": "POTUS",
                          "decimals": 6,
                          "address": "7hyHfdgxwtaj1QpQSJw3s4R2LMxShPpmr2GsCw9npump",
                          "amount": 13922809,
                          "feeInfo": null,
                          "uiAmount": 13.922809,
                          "price": null,
                          "nearestPrice": 0.00008581853084042329,
                          "changeAmount": 13922809,
                          "uiChangeAmount": 13.922809
                        },
                        "base": {
                          "symbol": "SOL",
                          "decimals": 9,
                          "address": "So11111111111111111111111111111111111111112",
                          "amount": 9090,
                          "uiAmount": 0.00000909,
                          "price": null,
                          "nearestPrice": 128.201119598627,
                          "changeAmount": -9090,
                          "uiChangeAmount": -0.00000909
                        },
                        "basePrice": null,
                        "quotePrice": null,
                        "txHash": "5G72183B77KafzKv4GEJNnDrV7rtspv5X5WM9yG9g1P89iG1UCGBuAqcMasgGhRYN24bmWsNPkQqptRbX5uoH44K",
                        "source": "raydium",
                        "blockUnixTime": 1726676178,
                        "txType": "swap",
                        "owner": "AavgaV4YKned3RN6JVMANKmAaVS2Tpfnw88HbYtzgBAn",
                        "side": "sell",
                        "alias": null,
                        "pricePair": 1531662.1562156219,
                        "from": {
                          "symbol": "SOL",
                          "decimals": 9,
                          "address": "So11111111111111111111111111111111111111112",
                          "amount": 9090,
                          "uiAmount": 0.00000909,
                          "price": null,
                          "nearestPrice": 128.201119598627,
                          "changeAmount": -9090,
                          "uiChangeAmount": -0.00000909
                        },
                        "to": {
                          "symbol": "POTUS",
                          "decimals": 6,
                          "address": "7hyHfdgxwtaj1QpQSJw3s4R2LMxShPpmr2GsCw9npump",
                          "amount": 13922809,
                          "feeInfo": null,
                          "uiAmount": 13.922809,
                          "price": null,
                          "nearestPrice": 0.00008581853084042329,
                          "changeAmount": 13922809,
                          "uiChangeAmount": 13.922809
                        },
                        "tokenPrice": null,
                        "poolId": "2L8fo6g6me9ZubZhH2iiz6616GouRbGeEuvNoGv69xWE"
                      },
                      {
                        "quote": {
                          "symbol": "PEAKY",
                          "decimals": 6,
                          "address": "62uBW5K24PdxXk185tNjz9pwzkpHinKt8qZznxPPpump",
                          "amount": 35238136,
                          "feeInfo": null,
                          "uiAmount": 35.238136,
                          "price": null,
                          "nearestPrice": 0.00003742796781669965,
                          "changeAmount": 35238136,
                          "uiChangeAmount": 35.238136
                        },
                        "base": {
                          "symbol": "SOL",
                          "decimals": 9,
                          "address": "So11111111111111111111111111111111111111112",
                          "amount": 10333,
                          "uiAmount": 0.000010333,
                          "price": null,
                          "nearestPrice": 128.201119598627,
                          "changeAmount": -10333,
                          "uiChangeAmount": -0.000010333
                        },
                        "basePrice": null,
                        "quotePrice": null,
                        "txHash": "zXdSLDTX4MVzunVJgFbJmiLY9z2hZ3n28w6bYvKn1aZVL1QZGozkyMMMteFqpyWraUTdRyX1GKFnJYkqPsL5SJK",
                        "source": "raydium",
                        "blockUnixTime": 1726676178,
                        "txType": "swap",
                        "owner": "CDt3xtwPVWDbhENL3QhDX5XYVx9JNCvewfdfCRy1cKFt",
                        "side": "sell",
                        "alias": null,
                        "pricePair": 3410252.2016839255,
                        "from": {
                          "symbol": "SOL",
                          "decimals": 9,
                          "address": "So11111111111111111111111111111111111111112",
                          "amount": 10333,
                          "uiAmount": 0.000010333,
                          "price": null,
                          "nearestPrice": 128.201119598627,
                          "changeAmount": -10333,
                          "uiChangeAmount": -0.000010333
                        },
                        "to": {
                          "symbol": "PEAKY",
                          "decimals": 6,
                          "address": "62uBW5K24PdxXk185tNjz9pwzkpHinKt8qZznxPPpump",
                          "amount": 35238136,
                          "feeInfo": null,
                          "uiAmount": 35.238136,
                          "price": null,
                          "nearestPrice": 0.00003742796781669965,
                          "changeAmount": 35238136,
                          "uiChangeAmount": 35.238136
                        },
                        "tokenPrice": null,
                        "poolId": "5vsk6iYjKXEo6x7maZJwh36UjqwFxkRtoHK5Nphh3ht1"
                      }
                    ],
                    "hasNext": true
                  }
                }
              }
            }
          }
        }
      },
      "DefiTxsPair": {
        "description": "JSON object containing transactions of a pair",
        "content": {
          "application/json": {
            "schema": {
              "$ref": "#/components/schemas/LegacyPairTradeListResponse"
            },
            "examples": {
              "SolanaScaledUIAmount": {
                "value": {
                  "success": true,
                  "data": {
                    "items": [
                      {
                        "txHash": "2s27V8t3HANqUA572KLqBNXFvGyqvYobFX2Cn3c5puoWbHSNCebjT6PDX7gixe5HjdNhuG7SuHpDroJXFrBpAFn1",
                        "source": "phoenix",
                        "blockUnixTime": 1754882843,
                        "txType": "swap",
                        "address": "4DoNfFBfF7UokCC2FQzriy7yHK6DY6NVdYpuekQ5pRgg",
                        "owner": "MfDuWeqSHEqTFVYZ7LoexgAK9dxk7cy4DFJWjWMGVWa",
                        "from": {
                          "symbol": "USDC",
                          "decimals": 6,
                          "address": "EPjFWdd5AufqSSqeM2qN1xzybapC8G4wEGGkZwyTDt1v",
                          "amount": 4000129768,
                          "type": "log",
                          "typeSwap": "from",
                          "uiAmount": 4000.129768,
                          "price": 0.99986,
                          "nearestPrice": 0.99986,
                          "changeAmount": -4000129768,
                          "uiChangeAmount": -4000.129768,
                          "isScaledUiToken": false,
                          "multiplier": null
                        },
                        "to": {
                          "symbol": "SOL",
                          "decimals": 9,
                          "address": "So11111111111111111111111111111111111111112",
                          "amount": 21638000000,
                          "type": "log",
                          "typeSwap": "to",
                          "uiAmount": 21.638,
                          "price": 184.67395202659998,
                          "nearestPrice": 184.67395202659998,
                          "changeAmount": 21638000000,
                          "uiChangeAmount": 21.638,
                          "isScaledUiToken": false,
                          "multiplier": null
                        }
                      }
                    ],
                    "hasNext": true
                  }
                }
              },
              "PairTransactions": {
                "value": {
                  "success": true,
                  "data": {
                    "items": [
                      {
                        "txHash": "37U8R16dfZHbe56J8ZhxwrJduUJHwQnJpuocCej6st7r6CAYDzvv7TFTj9yrz6jkYSdMSCkhdAhkaciU4PQWfJis",
                        "source": "phoenix",
                        "blockUnixTime": 1745402802,
                        "address": "4DoNfFBfF7UokCC2FQzriy7yHK6DY6NVdYpuekQ5pRgg",
                        "owner": "MfDuWeqSHEqTFVYZ7LoexgAK9dxk7cy4DFJWjWMGVWa",
                        "from": {
                          "symbol": "USDC",
                          "decimals": 6,
                          "address": "EPjFWdd5AufqSSqeM2qN1xzybapC8G4wEGGkZwyTDt1v",
                          "amount": 399920249,
                          "type": "log",
                          "typeSwap": "from",
                          "uiAmount": 399.920249,
                          "price": null,
                          "nearestPrice": 0.99994282,
                          "changeAmount": -399920249,
                          "uiChangeAmount": -399.920249
                        },
                        "to": {
                          "symbol": "SOL",
                          "decimals": 9,
                          "address": "So11111111111111111111111111111111111111112",
                          "amount": 2642000000,
                          "type": "log",
                          "typeSwap": "to",
                          "feeInfo": null,
                          "uiAmount": 2.642,
                          "price": null,
                          "nearestPrice": 151.35706807903856,
                          "changeAmount": 2642000000,
                          "uiChangeAmount": 2.642
                        }
                      },
                      {
                        "txHash": "2w3kTsgkgBJNk7iJmmo4P4k8UZ8zKXChLL33R1DSod7T3KyfqSH8m63f731yhBsdXULao6f7gUZamkKnVjsCcf4W",
                        "source": "phoenix",
                        "blockUnixTime": 1745402801,
                        "address": "4DoNfFBfF7UokCC2FQzriy7yHK6DY6NVdYpuekQ5pRgg",
                        "owner": "MfDuWeqSHEqTFVYZ7LoexgAK9dxk7cy4DFJWjWMGVWa",
                        "from": {
                          "symbol": "USDC",
                          "decimals": 6,
                          "address": "EPjFWdd5AufqSSqeM2qN1xzybapC8G4wEGGkZwyTDt1v",
                          "amount": 399920938,
                          "type": "log",
                          "typeSwap": "from",
                          "uiAmount": 399.920938,
                          "price": null,
                          "nearestPrice": 0.99994282,
                          "changeAmount": -399920938,
                          "uiChangeAmount": -399.920938
                        },
                        "to": {
                          "symbol": "SOL",
                          "decimals": 9,
                          "address": "So11111111111111111111111111111111111111112",
                          "amount": 2643000000,
                          "type": "log",
                          "typeSwap": "to",
                          "feeInfo": null,
                          "uiAmount": 2.643,
                          "price": null,
                          "nearestPrice": 151.33213768145356,
                          "changeAmount": 2643000000,
                          "uiChangeAmount": 2.643
                        }
                      }
                    ],
                    "hasNext": true
                  }
                }
              }
            }
          }
        }
      },
      "DefiTxsTokenSeekByTime": {
        "description": "JSON object containing transactions of a token",
        "content": {
          "application/json": {
            "schema": {
              "$ref": "#/components/schemas/LegacyTokenTradeListResponse"
            },
            "examples": {
              "SolanaScaledUIAmount": {
                "value": {
                  "success": true,
                  "data": {
                    "items": [
                      {
                        "quote": {
                          "symbol": "SOL",
                          "decimals": 9,
                          "address": "So11111111111111111111111111111111111111112",
                          "amount": "83",
                          "uiAmount": 8.3e-8,
                          "price": 133.58588874466795,
                          "changeAmount": 83,
                          "uiChangeAmount": 8.3e-8,
                          "isScaledUiToken": false,
                          "multiplier": null
                        },
                        "base": {
                          "symbol": "Poppy",
                          "decimals": 6,
                          "address": "7Am9kVe9qymLGzLu9LnGFT6pX43DAuMYBLveSRijpump",
                          "amount": "2999999",
                          "uiAmount": 2.999999,
                          "price": 0.000003840642989117913,
                          "changeAmount": -2999999,
                          "uiChangeAmount": -2.999999,
                          "isScaledUiToken": false,
                          "multiplier": null
                        },
                        "basePrice": 0.000003840642989117913,
                        "quotePrice": 133.58588874466795,
                        "txHash": "2rfQEtcrKmbCrwLet9REvUMWd6PoKjRV5fjUhYfmUjdS3ECkwF12s2bmswi8VGYxX1zp96nTfFxeSafjxDmASH6q",
                        "source": "pump_dot_fun",
                        "blockUnixTime": 1741531132,
                        "txType": "swap",
                        "owner": "J8RsYYa1CSsRi77aThfy48YPc7K5gwaepQDdvz2E3UoM",
                        "side": "buy",
                        "alias": null,
                        "pricePair": 36144566.26506024,
                        "from": {
                          "symbol": "Poppy",
                          "decimals": 6,
                          "address": "7Am9kVe9qymLGzLu9LnGFT6pX43DAuMYBLveSRijpump",
                          "amount": "2999999",
                          "uiAmount": 2.999999,
                          "price": 0.000003840642989117913,
                          "changeAmount": -2999999,
                          "uiChangeAmount": -2.999999,
                          "isScaledUiToken": false,
                          "multiplier": null
                        },
                        "to": {
                          "symbol": "SOL",
                          "decimals": 9,
                          "address": "So11111111111111111111111111111111111111112",
                          "amount": "83",
                          "uiAmount": 8.3e-8,
                          "price": 133.58588874466795,
                          "changeAmount": 83,
                          "uiChangeAmount": 8.3e-8,
                          "isScaledUiToken": false,
                          "multiplier": null
                        },
                        "tokenPrice": 133.58588874466795,
                        "poolId": "2qPLBXMp8YvQyM1SDQ4QoYF314jcLzM86NpMUF6Wni6H"
                      }
                    ],
                    "hasNext": true
                  }
                }
              },
              "TokenTransactions": {
                "value": {
                  "success": true,
                  "data": {
                    "items": [
                      {
                        "quote": {
                          "symbol": "Pnut ",
                          "decimals": 6,
                          "address": "2qEHjDLDLbuBgRYvsxhc5D6uDWAivNFZGan56P1tpump",
                          "amount": 315220781,
                          "feeInfo": null,
                          "uiAmount": 315.220781,
                          "price": null,
                          "nearestPrice": 2.1228198408315455,
                          "changeAmount": 315220781,
                          "uiChangeAmount": 315.220781
                        },
                        "base": {
                          "symbol": "SOL",
                          "decimals": 9,
                          "address": "So11111111111111111111111111111111111111112",
                          "amount": 3059408483,
                          "uiAmount": 3.059408483,
                          "price": null,
                          "nearestPrice": 218.81293132875214,
                          "changeAmount": -3059408483,
                          "uiChangeAmount": -3.059408483
                        },
                        "basePrice": null,
                        "quotePrice": null,
                        "txHash": "SYypBp6KSdMSfe3M2m4qK86p2JDJRmNKPrqwDxGb3MuPYq6yPodWApoEQBXAvzpfTf9WCmCFbEkPEM4HET84u2L",
                        "source": "raydium_clamm",
                        "blockUnixTime": 1731556704,
                        "txType": "swap",
                        "owner": "AmTRLjX9T8KktBBnw1F78DyDb17fr6L8BNpEgCPGs5eM",
                        "side": "sell",
                        "alias": null,
                        "pricePair": 103.0332440900145,
                        "from": {
                          "symbol": "SOL",
                          "decimals": 9,
                          "address": "So11111111111111111111111111111111111111112",
                          "amount": 3059408483,
                          "uiAmount": 3.059408483,
                          "price": null,
                          "nearestPrice": 218.81293132875214,
                          "changeAmount": -3059408483,
                          "uiChangeAmount": -3.059408483
                        },
                        "to": {
                          "symbol": "Pnut ",
                          "decimals": 6,
                          "address": "2qEHjDLDLbuBgRYvsxhc5D6uDWAivNFZGan56P1tpump",
                          "amount": 315220781,
                          "feeInfo": null,
                          "uiAmount": 315.220781,
                          "price": null,
                          "nearestPrice": 2.1228198408315455,
                          "changeAmount": 315220781,
                          "uiChangeAmount": 315.220781
                        },
                        "tokenPrice": null,
                        "poolId": "8oT91ooChsr7aHTHha9oJxKTYwUhZ75tjJ6bhtiggG5Y"
                      },
                      {
                        "quote": {
                          "symbol": "USDC",
                          "decimals": 6,
                          "address": "EPjFWdd5AufqSSqeM2qN1xzybapC8G4wEGGkZwyTDt1v",
                          "amount": "20003691",
                          "uiAmount": 20.003691,
                          "price": null,
                          "nearestPrice": 0.99995378,
                          "changeAmount": -20003691,
                          "uiChangeAmount": -20.003691
                        },
                        "base": {
                          "symbol": "SOL",
                          "decimals": 9,
                          "address": "So11111111111111111111111111111111111111112",
                          "amount": "90851454",
                          "feeInfo": null,
                          "uiAmount": 0.090851454,
                          "price": null,
                          "nearestPrice": 218.81293132875214,
                          "changeAmount": "90851454",
                          "uiChangeAmount": 0.090851454
                        },
                        "basePrice": null,
                        "quotePrice": null,
                        "txHash": "5hEDZZXh9PJreM16Wp7UVYzuVvDy2u9vvzaHeP7gnfRh9ebv6CLnnPuUgxjKCfsLt5FwpgohAw3hhzBjFbnEkVTB",
                        "source": "meteora_dlmm",
                        "blockUnixTime": 1731556704,
                        "txType": "swap",
                        "owner": "HV1KXxWFaSeriyFvXyx48FqG9BoFbfinB8njCJonqP7K",
                        "side": "buy",
                        "alias": null,
                        "pricePair": 220.18019656570385,
                        "from": {
                          "symbol": "USDC",
                          "decimals": 6,
                          "address": "EPjFWdd5AufqSSqeM2qN1xzybapC8G4wEGGkZwyTDt1v",
                          "amount": "20003691",
                          "uiAmount": 20.003691,
                          "price": null,
                          "nearestPrice": 0.99995378,
                          "changeAmount": -20003691,
                          "uiChangeAmount": -20.003691
                        },
                        "to": {
                          "symbol": "SOL",
                          "decimals": 9,
                          "address": "So11111111111111111111111111111111111111112",
                          "amount": "90851454",
                          "feeInfo": null,
                          "uiAmount": 0.090851454,
                          "price": null,
                          "nearestPrice": 218.81293132875214,
                          "changeAmount": "90851454",
                          "uiChangeAmount": 0.090851454
                        },
                        "tokenPrice": null,
                        "poolId": "sZxb9vrxJBpFiJBogovhfkYqfapVzveLEU4TmzWv4GN"
                      }
                    ],
                    "hasNext": true
                  }
                }
              }
            }
          }
        }
      },
      "DefiTokenTxsV3": {
        "description": "JSON object containing transactions of a token",
        "content": {
          "application/json": {
            "schema": {
              "$ref": "#/components/schemas/V3TradeListResponse"
            },
            "examples": {
              "TokenTxsSwap": {
                "value": {
                  "data": {
                    "items": [
                      {
                        "tx_type": "buy",
                        "tx_hash": "3fqsirN8vbhBLHS2cVAaCXTdsCcCua75LgcBX6Z2G2yupM9cDEsmo2TP5AhXvEUBZ91xyy3KWiuDdHxoFVnp1R88",
                        "ins_index": 2,
                        "inner_ins_index": 0,
                        "block_unix_time": 1740380278,
                        "block_number": 322728531,
                        "volume_usd": 0.0005729458359923133,
                        "volume": 1733.23946,
                        "owner": "8bP4FJNXwN5Q4a6EybtHwsiAnxFFWb93sY38mYdo6Pr2",
                        "signers": [
                          "8bP4FJNXwN5Q4a6EybtHwsiAnxFFWb93sY38mYdo6Pr2"
                        ],
                        "source": "raydium",
                        "side": "buy",
                        "alias": null,
                        "price_pair": 486318591.4702581,
                        "from": {
                          "symbol": "PEPEAI",
                          "address": "7nM97F8takLArrKLJdT62L54jTtX1e7h7qPSjtBrsMQA",
                          "decimals": 6,
                          "price": 3.5071289483955604e-7,
                          "amount": "1733239460",
                          "ui_amount": 1733.23946,
                          "ui_change_amount": -1733.23946
                        },
                        "to": {
                          "symbol": "SOL",
                          "address": "So11111111111111111111111111111111111111112",
                          "decimals": 9,
                          "price": 160.7592132413898,
                          "amount": "3564",
                          "ui_amount": 0.000003564,
                          "ui_change_amount": 0.000003564
                        },
                        "pool_id": "8aTXVUjPcUSwSLAbUegaKTQdB6SaNosSKQkURvpbLCNC"
                      }
                    ],
                    "has_next": true
                  },
                  "success": true
                }
              },
              "TokenTxsBuy": {
                "value": {
                  "data": {
                    "items": [
                      {
                        "tx_type": "buy",
                        "tx_hash": "3fqsirN8vbhBLHS2cVAaCXTdsCcCua75LgcBX6Z2G2yupM9cDEsmo2TP5AhXvEUBZ91xyy3KWiuDdHxoFVnp1R88",
                        "ins_index": 2,
                        "inner_ins_index": 0,
                        "block_unix_time": 1740380278,
                        "block_number": 322728531,
                        "volume_usd": 0.0005729458359923133,
                        "volume": 1733.23946,
                        "owner": "8bP4FJNXwN5Q4a6EybtHwsiAnxFFWb93sY38mYdo6Pr2",
                        "signers": [
                          "8bP4FJNXwN5Q4a6EybtHwsiAnxFFWb93sY38mYdo6Pr2"
                        ],
                        "source": "raydium",
                        "side": "buy",
                        "alias": null,
                        "price_pair": 486318591.4702581,
                        "from": {
                          "symbol": "PEPEAI",
                          "address": "7nM97F8takLArrKLJdT62L54jTtX1e7h7qPSjtBrsMQA",
                          "decimals": 6,
                          "price": 3.5071289483955604e-7,
                          "amount": "1733239460",
                          "ui_amount": 1733.23946,
                          "ui_change_amount": -1733.23946
                        },
                        "to": {
                          "symbol": "SOL",
                          "address": "So11111111111111111111111111111111111111112",
                          "decimals": 9,
                          "price": 160.7592132413898,
                          "amount": "3564",
                          "ui_amount": 0.000003564,
                          "ui_change_amount": 0.000003564
                        },
                        "pool_id": "8aTXVUjPcUSwSLAbUegaKTQdB6SaNosSKQkURvpbLCNC"
                      }
                    ],
                    "has_next": true
                  },
                  "success": true
                }
              },
              "TokenTxsSell": {
                "value": {
                  "data": {
                    "items": [
                      {
                        "tx_type": "sell",
                        "tx_hash": "MCUsTrq9kxxLncqYLPEEBBhnB6qQ8xzpFQ61v9WDpHuLWhKhpPk3Y72KDB8ZaYFAF4sQ1ePmMpeyv8XajRhHGgL",
                        "ins_index": 2,
                        "inner_ins_index": 0,
                        "block_unix_time": 1741033247,
                        "block_number": 324378317,
                        "volume_usd": 2.1354753332522916,
                        "volume": 0.01491951,
                        "owner": "DYQjtsirB7yK78ivZRa8xMvAjmGo2zqsBqmW1Aek67h5",
                        "signers": [
                          "DYQjtsirB7yK78ivZRa8xMvAjmGo2zqsBqmW1Aek67h5"
                        ],
                        "source": "raydium_cp",
                        "side": "sell",
                        "alias": null,
                        "price_pair": 253778.18630672188,
                        "from": {
                          "symbol": "SOL",
                          "address": "So11111111111111111111111111111111111111112",
                          "decimals": 9,
                          "price": 143.13307429347824,
                          "amount": 14919510,
                          "ui_amount": 0.01491951,
                          "ui_change_amount": -0.01491951
                        },
                        "to": {
                          "symbol": "TRM",
                          "address": "E8ks5e8tegXXR2w4Rr2Bd4mvKEwfwdmEVKUjc4iEusdt",
                          "decimals": 9,
                          "price": 0.0005936932412742374,
                          "amount": 3786246188385,
                          "ui_amount": 3786.246188385,
                          "ui_change_amount": 3786.246188385
                        },
                        "pool_id": "8HiHe9KtMQhjXNKpcEoLRRfn3xSU8TUbAi2xCR5QJWCc"
                      }
                    ],
                    "has_next": true
                  },
                  "success": true
                }
              },
              "TokenTxsAddLiquid": {
                "value": {
                  "data": {
                    "items": [
                      {
                        "tx_type": "add",
                        "tx_hash": "4YQCb9m5RCTKVqrXVyBV67wQzn9gqJLy3f9UJY6MaeJFmFhMHqVtmru52iHt77PSFmBg7G3HbA8Lv9u1Urpr4jis",
                        "ins_index": 2,
                        "inner_ins_index": 0,
                        "block_unix_time": 1740380441,
                        "block_number": 322728946,
                        "volume_usd": 0,
                        "owner": "6rugaR3NysRzG42PDmJGMGDegzVALkXTSSEefQmPz17P",
                        "signers": [
                          "6rugaR3NysRzG42PDmJGMGDegzVALkXTSSEefQmPz17P"
                        ],
                        "source": "pump_dot_fun",
                        "alias": null,
                        "pool_id": "8Wp84g9RsXzJAj1ScEeWb3oynRXjGKPyGPwXrua5gpEV",
                        "tokens": [
                          {
                            "address": "9gNot3AX9Q5efNAMLEhaNwnxDWLV3jfUNHqyQTmdpump",
                            "decimals": 6,
                            "amount": "1000000000000000",
                            "ui_amount": 1000000000
                          },
                          {
                            "symbol": "SOL",
                            "address": "So11111111111111111111111111111111111111112",
                            "decimals": 9,
                            "amount": 0,
                            "ui_amount": 0
                          }
                        ]
                      }
                    ],
                    "has_next": true
                  },
                  "success": true
                }
              },
              "TokenTxsRemoveLiquid": {
                "value": {
                  "data": {
                    "items": [
                      {
                        "tx_type": "remove",
                        "tx_hash": "44xsqnqTgUwRyQrzjxKtj81Y1ETcdS8DqWMbjWkgfBCLSftQZHx6d4kxYLNAyCK9zf5WhE4aaWCFbaPwuz5YL1Fw",
                        "ins_index": 2,
                        "inner_ins_index": 0,
                        "block_unix_time": 1741033233,
                        "block_number": 324378282,
                        "volume_usd": 2319997.207389228,
                        "owner": "DhwspzurnruXtQ7YLQWx9g3fm9YmXW8KKYbFo1jMZgMR",
                        "signers": [
                          "DhwspzurnruXtQ7YLQWx9g3fm9YmXW8KKYbFo1jMZgMR"
                        ],
                        "source": "raydium_cp",
                        "alias": null,
                        "pool_id": "44GB8HbKnWMH6qrVTtrj37tUrAqgKzcxk5BDj3boHjJF",
                        "tokens": [
                          {
                            "symbol": "SOL",
                            "address": "So11111111111111111111111111111111111111112",
                            "decimals": 9,
                            "amount": 313635269787,
                            "ui_amount": 313.635269787
                          },
                          {
                            "symbol": "EYE",
                            "address": "2WwMDUiB3RGoDQTxivLYRAo1tqGiNcNUZNkGLmytTEYE",
                            "decimals": 6,
                            "amount": 2678077330656,
                            "ui_amount": 2678077.330656
                          }
                        ]
                      }
                    ],
                    "has_next": true
                  },
                  "success": true
                }
              },
              "SolanaScaledUIAmount": {
                "value": {
                  "success": true,
                  "data": {
                    "items": [
                      {
                        "tx_type": "buy",
                        "tx_hash": "351zF2LEwyW9izUT9WeKEL4yr3Ej4fjwDgbuijWSMTsCZoXHVverNwUEh4YjggAcYAP8j2cv1BW9j2CFNWbXUGSh",
                        "ins_index": 2,
                        "inner_ins_index": null,
                        "block_unix_time": 1754884657,
                        "block_number": 359261557,
                        "volume_usd": 37.190281762690454,
                        "volume": 0.200754834,
                        "owner": "2s44dURNXwC65t7t9XSZfRWA9eyXJDfWTPHDv8jbDKNp",
                        "signers": [
                          "2s44dURNXwC65t7t9XSZfRWA9eyXJDfWTPHDv8jbDKNp"
                        ],
                        "source": "pump_amm",
                        "interacted_program_id": "pAMMBay6oceH9fJKBRHGP5D4bD4sWpmSwMn52FMfXEA",
                        "side": "buy",
                        "alias": null,
                        "price_pair": 6458965.17052237,
                        "from": {
                          "symbol": "ZUMI",
                          "address": "H5UjPsXoxaJAkAcpkfs7Fds3T6oypK7BwLgTFUtTs6vy",
                          "decimals": 6,
                          "price": 0.000028681411107415812,
                          "amount": "1296668480620",
                          "ui_amount": 1296668.48062,
                          "ui_change_amount": -1296668.48062,
                          "is_scaled_ui_token": false,
                          "multiplier": null
                        },
                        "to": {
                          "symbol": "SOL",
                          "address": "So11111111111111111111111111111111111111112",
                          "decimals": 9,
                          "price": 185.25223538423216,
                          "amount": "200754834",
                          "ui_amount": 0.200754834,
                          "ui_change_amount": 0.200754834,
                          "is_scaled_ui_token": false,
                          "multiplier": null
                        },
                        "pool_id": "D45QQMsxGhohYXGZKDJEowMv2HArrKAsw5V3JnyDZWeS"
                      }
                    ],
                    "hasNext": true
                  }
                }
              }
            }
          }
        }
      },
      "DefiTxsV3LatestBlock": {
        "description": "JSON object containing the block number of the latest transaction on a chain",
        "content": {
          "application/json": {
            "schema": {
              "$ref": "#/components/schemas/DefiTxsV3LatestBlockResponse"
            },
            "examples": {
              "LatestBlock": {
                "value": {
                  "data": {
                    "block_number": 22236994
                  },
                  "success": true
                }
              }
            }
          }
        }
      },
      "DefiTxsPairSeekByTime": {
        "description": "JSON object containing transactions of a pair",
        "content": {
          "application/json": {
            "schema": {
              "$ref": "#/components/schemas/LegacyPairTradeListResponse"
            },
            "examples": {
              "SolanaScaledUIAmount": {
                "value": {
                  "success": true,
                  "data": {
                    "items": [
                      {
                        "txHash": "3zyGYe6NVJeFVPrsg2tvTdSxRoKGAiedcEqhuxhqUopdGoaAj69r4svfiePAstmogGoU8dkrfWnUj5PuMf4PCGie",
                        "source": "phoenix",
                        "blockUnixTime": 1741078031,
                        "txType": "swap",
                        "address": "4DoNfFBfF7UokCC2FQzriy7yHK6DY6NVdYpuekQ5pRgg",
                        "owner": "4yDvNjJxLCb5nznyowT8cgNwMs4i36eZaCyAgT6ZwPwv",
                        "from": {
                          "symbol": "USDC",
                          "decimals": 6,
                          "address": "EPjFWdd5AufqSSqeM2qN1xzybapC8G4wEGGkZwyTDt1v",
                          "amount": 92762810,
                          "typeSwap": "from",
                          "uiAmount": 92.76281,
                          "price": 0.99991,
                          "changeAmount": -92762810,
                          "uiChangeAmount": -92.76281,
                          "isScaledUiToken": false,
                          "multiplier": null
                        },
                        "to": {
                          "symbol": "SOL",
                          "decimals": 9,
                          "address": "So11111111111111111111111111111111111111112",
                          "amount": 677000000,
                          "typeSwap": "to",
                          "uiAmount": 0.677,
                          "price": 136.96359554514504,
                          "changeAmount": 677000000,
                          "uiChangeAmount": 0.677,
                          "isScaledUiToken": false,
                          "multiplier": null
                        }
                      }
                    ],
                    "hasNext": true
                  }
                }
              },
              "PairTransactions": {
                "value": {
                  "success": true,
                  "data": {
                    "items": [
                      {
                        "txHash": "XYULkDnsuogzymf6fiM1v2zTmz9LSkiMPCvK9uuE7f58Kb2cJM2hixKzk7ZV2ZsVGZm17gdC3UpEqtxUiRfcBJj",
                        "source": "raydium",
                        "blockUnixTime": 1731556689,
                        "address": "9uWW4C36HiCTGr6pZW9VFhr9vdXktZ8NA8jVnzQU35pJ",
                        "owner": "8NgW4LgwnTL3mHZknDF9aP9mxApsP8WK566v4Cg9Xi3t",
                        "txType": "swap",
                        "from": {
                          "symbol": "SOL",
                          "decimals": 9,
                          "address": "So11111111111111111111111111111111111111112",
                          "amount": 5000000000,
                          "type": "transfer",
                          "typeSwap": "from",
                          "uiAmount": 5,
                          "price": null,
                          "nearestPrice": 218.925039633365,
                          "changeAmount": -5000000000,
                          "uiChangeAmount": -5
                        },
                        "to": {
                          "symbol": "BILLY",
                          "decimals": 6,
                          "address": "3B5wuUrMEi5yATD7on46hKfej3pfmd7t1RKgrsN3pump",
                          "amount": 15049154562,
                          "type": "transfer",
                          "typeSwap": "to",
                          "feeInfo": null,
                          "uiAmount": 15049.154562,
                          "price": 0.07273665730903037,
                          "nearestPrice": 0.07256692035947697,
                          "changeAmount": 15049154562,
                          "uiChangeAmount": 15049.154562
                        }
                      },
                      {
                        "txHash": "n9PZgEXAaQu9uCieRSbKNAV5XMjVebrUoTFgzvBCGqMZBE8MZVfpQsTPgsZe5WBPYKab8BK6ARoiYd7NSsZ8o35",
                        "source": "raydium",
                        "blockUnixTime": 1731556685,
                        "address": "9uWW4C36HiCTGr6pZW9VFhr9vdXktZ8NA8jVnzQU35pJ",
                        "owner": "8BXMjPy3NZ3P7hQDbFQZyn6ahxCCbmhfH1X75sKgCrdy",
                        "txType": "swap",
                        "from": {
                          "symbol": "BILLY",
                          "decimals": 6,
                          "address": "3B5wuUrMEi5yATD7on46hKfej3pfmd7t1RKgrsN3pump",
                          "amount": 1525582093,
                          "type": "transfer",
                          "typeSwap": "from",
                          "uiAmount": 1525.582093,
                          "price": 0.07228331856826616,
                          "nearestPrice": 0.07234274200745022,
                          "changeAmount": -1525582093,
                          "uiChangeAmount": -1525.582093
                        },
                        "to": {
                          "symbol": "SOL",
                          "decimals": 9,
                          "address": "So11111111111111111111111111111111111111112",
                          "amount": 504135998,
                          "type": "transfer",
                          "typeSwap": "to",
                          "feeInfo": null,
                          "uiAmount": 0.504135998,
                          "price": null,
                          "nearestPrice": 218.73886583747043,
                          "changeAmount": 504135998,
                          "uiChangeAmount": 0.504135998
                        }
                      }
                    ],
                    "hasNext": true
                  }
                }
              }
            }
          }
        }
      },
      "DefiOhlcvToken": {
        "description": "JSON object containing list of ohlcv  data of a token",
        "content": {
          "application/json": {
            "schema": {
              "$ref": "#/components/schemas/DefiOhlcvResponse"
            },
            "examples": {
              "Solana": {
                "value": {
                  "success": true,
                  "data": {
                    "isScaledUiToken": false,
                    "items": [
                      {
                        "o": 128.27328370924414,
                        "h": 128.6281001340782,
                        "l": 127.91200927364626,
                        "c": 127.97284640184616,
                        "v": 58641.16636665621,
                        "vUsd": 7506048,
                        "unixTime": 1726670700,
                        "address": "So11111111111111111111111111111111111111112",
                        "type": "15m",
                        "currency": "usd"
                      },
                      {
                        "o": 127.97284640184616,
                        "h": 128.49450996585105,
                        "l": 127.89354285873108,
                        "c": 128.04188346328968,
                        "v": 47861.13031539581,
                        "vUsd": 6127931,
                        "unixTime": 1726671600,
                        "address": "So11111111111111111111111111111111111111112",
                        "type": "15m",
                        "currency": "usd"
                      }
                    ],
                    "direction": "prev",
                    "limit": 2,
                    "next_cursor": 1768784520,
                    "prev_cursor": 1768784460,
                    "has_more": true
                  }
                }
              },
              "SolanaScaledUIAmount": {
                "value": {
                  "data": {
                    "isScaledUiToken": true,
                    "multiplier": 1,
                    "items": [
                      {
                        "o": 153.91024638704283,
                        "h": 153.91535871498587,
                        "l": 153.90894363533533,
                        "c": 153.91535871498587,
                        "v": 0.07037699,
                        "vUsd": 10.8312,
                        "unixTime": 1751414460,
                        "scaledO": 153.91024638704283,
                        "scaledH": 153.91535871498587,
                        "scaledL": 153.90894363533533,
                        "scaledC": 153.91535871498587,
                        "scaledV": 0.07037699,
                        "address": "Xsc9qvGR1efVDFGLrVsmkzv3qi45LTBjeUKSPmx9qEh",
                        "type": "1m",
                        "currency": "usd"
                      },
                      {
                        "o": 153.91535871498587,
                        "h": 153.91785401707773,
                        "l": 153.91535871498587,
                        "c": 153.91785401707773,
                        "v": 0.51971038,
                        "vUsd": 79.9974,
                        "unixTime": 1751414520,
                        "scaledO": 153.91535871498587,
                        "scaledH": 153.91785401707773,
                        "scaledL": 153.91535871498587,
                        "scaledC": 153.91785401707773,
                        "scaledV": 0.51971038,
                        "address": "Xsc9qvGR1efVDFGLrVsmkzv3qi45LTBjeUKSPmx9qEh",
                        "type": "1m",
                        "currency": "usd"
                      }
                    ]
                  },
                  "success": true
                }
              }
            }
          }
        }
      },
      "DefiV3OhlcvToken": {
        "description": "JSON object containing list of ohlcv  data of a token",
        "content": {
          "application/json": {
            "schema": {
              "$ref": "#/components/schemas/DefiOhlcvV3Response"
            },
            "examples": {
              "Solana": {
                "value": {
                  "success": true,
                  "data": {
                    "is_scaled_ui_token": false,
                    "items": [
                      {
                        "o": 128.27328370924414,
                        "h": 128.6281001340782,
                        "l": 127.91200927364626,
                        "c": 127.97284640184616,
                        "v": 58641.16636665621,
                        "v_usd": 7506048,
                        "unix_time": 1726670700,
                        "address": "So11111111111111111111111111111111111111112",
                        "type": "15m",
                        "currency": "usd"
                      },
                      {
                        "o": 127.97284640184616,
                        "h": 128.49450996585105,
                        "l": 127.89354285873108,
                        "c": 128.04188346328968,
                        "v": 47861.13031539581,
                        "v_usd": 7506048,
                        "unix_time": 1726671600,
                        "address": "So11111111111111111111111111111111111111112",
                        "type": "15m",
                        "currency": "usd"
                      }
                    ]
                  }
                }
              },
              "SolanaScaledUIAmount": {
                "value": {
                  "data": {
                    "is_scaled_ui_token": true,
                    "multiplier": 1,
                    "items": [
                      {
                        "o": 153.91024638704283,
                        "h": 153.91535871498587,
                        "l": 153.90894363533533,
                        "c": 153.91535871498587,
                        "v": 0.07037699,
                        "unix_time": 1751414460,
                        "scaled_o": 153.91024638704283,
                        "scaled_h": 153.91535871498587,
                        "scaled_l": 153.90894363533533,
                        "scaled_c": 153.91535871498587,
                        "scaled_v": 0.07037699,
                        "address": "Xsc9qvGR1efVDFGLrVsmkzv3qi45LTBjeUKSPmx9qEh",
                        "type": "1m",
                        "currency": "usd"
                      },
                      {
                        "o": 153.91535871498587,
                        "h": 153.91785401707773,
                        "l": 153.91535871498587,
                        "c": 153.91785401707773,
                        "v": 0.51971038,
                        "unix_time": 1751414520,
                        "scaled_o": 153.91535871498587,
                        "scaled_h": 153.91785401707773,
                        "scaled_l": 153.91535871498587,
                        "scaled_c": 153.91785401707773,
                        "scaled_v": 0.51971038,
                        "address": "Xsc9qvGR1efVDFGLrVsmkzv3qi45LTBjeUKSPmx9qEh",
                        "type": "1m",
                        "currency": "usd"
                      }
                    ]
                  },
                  "success": true
                }
              }
            }
          }
        }
      },
      "DefiOhlcvPair": {
        "description": "JSON object containing list of ohlcv  data of a pair",
        "content": {
          "application/json": {
            "schema": {
              "$ref": "#/components/schemas/DefiOhlcvPairResponse"
            },
            "examples": {
              "Solana": {
                "value": {
                  "success": true,
                  "data": {
                    "items": [
                      {
                        "address": "Czfq3xZZDmsdGdUyrNLtRhGc47cXcZtLG4crryfu44zE",
                        "c": 131.98629958196778,
                        "h": 132.23482213379438,
                        "l": 131.51590533656915,
                        "o": 131.51590533656915,
                        "type": "15m",
                        "unixTime": 1726700400,
                        "v": 6156.155046497001
                      },
                      {
                        "address": "Czfq3xZZDmsdGdUyrNLtRhGc47cXcZtLG4crryfu44zE",
                        "c": 132.7284,
                        "h": 132.81605139774013,
                        "l": 131.95800580371125,
                        "o": 131.98629958196778,
                        "type": "15m",
                        "unixTime": 1726701300,
                        "v": 7401.823317684
                      }
                    ]
                  }
                }
              }
            }
          }
        }
      },
      "DefiV3OhlcvPair": {
        "description": "JSON object containing list of ohlcv  data of a pair",
        "content": {
          "application/json": {
            "schema": {
              "$ref": "#/components/schemas/DefiOhlcvPairV3Response"
            },
            "examples": {
              "Solana": {
                "value": {
                  "success": true,
                  "data": {
                    "items": [
                      {
                        "address": "9wFFyRfZBsuAha4YcuxcXLKwMxJR43S7fPfQLusDBzvT",
                        "h": 210,
                        "o": 210,
                        "l": 210,
                        "c": 210,
                        "type": "15m",
                        "v": 0,
                        "unix_time": 1726670700,
                        "v_usd": 1000
                      },
                      {
                        "address": "9wFFyRfZBsuAha4YcuxcXLKwMxJR43S7fPfQLusDBzvT",
                        "h": 210,
                        "o": 210,
                        "l": 210,
                        "c": 210,
                        "type": "15m",
                        "v": 0,
                        "unix_time": 1726671600,
                        "v_usd": 1000
                      }
                    ]
                  }
                }
              }
            }
          }
        }
      },
      "DefiLiquidityOhlcPair": {
        "description": "JSON object containing liquidity OHLC data of a pair",
        "content": {
          "application/json": {
            "schema": {
              "$ref": "#/components/schemas/DefiLiquidityOhlcPairResponse"
            },
            "examples": {
              "Solana": {
                "value": {
                  "success": true,
                  "data": {
                    "items": [
                      {
                        "pair_address": "DyoDLq79qKTia7Q2aSEbrsjpvzjbZi1YhxjrEhctWPLQ",
                        "base_mint": "So11111111111111111111111111111111111111112",
                        "quote_mint": "EPjFWdd5AufqSSqeM2qN1xzybapC8G4wEGGkZwyTDt1v",
                        "timestamp": "2025-06-26T15:14:00Z",
                        "unix_time": 1750950840,
                        "open_liquidity_usd": 35.54838054600674,
                        "high_liquidity_usd": 70.98678138336354,
                        "low_liquidity_usd": 2.86407480456388e-7,
                        "close_liquidity_usd": 2.86407480456388e-7,
                        "open_base_balance": 247500003,
                        "high_base_balance": 247500003,
                        "low_base_balance": 1,
                        "close_base_balance": 1,
                        "open_quote_balance": 11,
                        "high_quote_balance": 222979861711,
                        "low_quote_balance": 11,
                        "close_quote_balance": 222979861711,
                        "open_base_amount_ui": 0.247500003,
                        "high_base_amount_ui": 0.247500003,
                        "low_base_amount_ui": 1e-9,
                        "close_base_amount_ui": 1e-9,
                        "open_quote_amount_ui": 0.000011,
                        "high_quote_amount_ui": 222979.861711,
                        "low_quote_amount_ui": 0.000011,
                        "close_quote_amount_ui": 222979.861711,
                        "base_open_price": 143.2943958969169,
                        "base_high_price": 143.4076374200358,
                        "base_low_price": 143.20374022819402,
                        "base_close_price": 143.20374022819402,
                        "quote_open_price": 7547.011966964857,
                        "quote_high_price": 160566.25292547484,
                        "quote_low_price": 400.6525017637174,
                        "quote_close_price": 400.6525017637174
                      }
                    ],
                    "direction": "next",
                    "limit": 100,
                    "next_cursor": 1750950900,
                    "prev_cursor": 1750950780,
                    "has_more": true
                  }
                }
              }
            }
          }
        }
      },
      "DefiLiquidityOhlcToken": {
        "description": "JSON object containing liquidity OHLC data of a token",
        "content": {
          "application/json": {
            "schema": {
              "$ref": "#/components/schemas/DefiLiquidityOhlcTokenResponse"
            },
            "examples": {
              "Solana": {
                "value": {
                  "success": true,
                  "data": {
                    "items": [
                      {
                        "token": "8thqCqGi8z5hnyvK5ximYarxagYd6Rvzc5dUSiHdpump",
                        "timestamp": "2026-06-17T19:29:00Z",
                        "unix_time": 1781724540,
                        "open_liquidity_usd": 1062.1323768982022,
                        "high_liquidity_usd": 1062.5375387105653,
                        "low_liquidity_usd": 1056.0793845380088,
                        "close_liquidity_usd": 1058.687722615185,
                        "open_exit_liquidity_usd": 354.04412563273405,
                        "high_exit_liquidity_usd": 354.1791795701884,
                        "low_exit_liquidity_usd": 352.0264615126695,
                        "close_exit_liquidity_usd": 352.895907538395,
                        "open_stable_liquidity_usd": 708.0882512654681,
                        "high_stable_liquidity_usd": 708.3583591403768,
                        "low_stable_liquidity_usd": 704.052923025339,
                        "close_stable_liquidity_usd": 705.79181507679,
                        "total_pairs": 1
                      }
                    ],
                    "direction": "prev",
                    "limit": 100,
                    "next_cursor": null,
                    "prev_cursor": 1781724480,
                    "has_more": true
                  }
                }
              }
            }
          }
        }
      },
      "DefiLiquidityHistoryToken": {
        "description": "JSON object containing historical liquidity snapshots of a token",
        "content": {
          "application/json": {
            "schema": {
              "$ref": "#/components/schemas/DefiLiquidityHistoryTokenResponse"
            },
            "examples": {
              "Solana": {
                "value": {
                  "success": true,
                  "data": {
                    "items": [
                      {
                        "unix_time": 1778112000,
                        "liquidity_usd": 76897848464.11568,
                        "exit_liquidity_usd": 76315406.4596759,
                        "stable_liquidity_usd": 79315782724.2839,
                        "total_pairs": 11782972
                      }
                    ],
                    "direction": "prev",
                    "limit": 100,
                    "next_cursor": null,
                    "prev_cursor": 1778097600,
                    "has_more": true
                  }
                }
              }
            }
          }
        }
      },
      "DefiLatestTokenLiquidity": {
        "description": "JSON object containing latest liquidity data of tokens",
        "content": {
          "application/json": {
            "schema": {
              "$ref": "#/components/schemas/DefiLatestTokenLiquidityResponse"
            },
            "examples": {
              "Solana": {
                "value": {
                  "success": true,
                  "data": {
                    "items": [
                      {
                        "token": "2RaLR1kY37bbNfqWTK49AiCbPtdF27497jZ6DatKpump",
                        "liquidity_usd": 0.431778300255171,
                        "exit_liquidity_usd": 0.143926100085057,
                        "stable_liquidity_usd": 0.287852200170114,
                        "price": 0.00002468
                      }
                    ]
                  }
                }
              }
            }
          }
        }
      },
      "DefiOhlcvBaseQuote": {
        "description": "JSON object containing list of ohlc and volume of base and quote",
        "content": {
          "application/json": {
            "schema": {
              "$ref": "#/components/schemas/DefiOhlcvBaseQuoteResponse"
            },
            "examples": {
              "Solana": {
                "value": {
                  "success": true,
                  "data": {
                    "items": [
                      {
                        "o": 128.2848293438851,
                        "c": 127.98180512820512,
                        "h": 128.64650816293124,
                        "l": 127.91584674904873,
                        "vBase": 58641.16636665621,
                        "vQuote": 4362436.09417201,
                        "unixTime": 1726670700
                      },
                      {
                        "o": 127.98180512820512,
                        "c": 128.0549796460581,
                        "h": 128.51250171609132,
                        "l": 127.89610078074669,
                        "vBase": 47861.13031539581,
                        "vQuote": 3913815.120231004,
                        "unixTime": 1726671600
                      }
                    ],
                    "baseAddress": "So11111111111111111111111111111111111111112",
                    "quoteAddress": "EPjFWdd5AufqSSqeM2qN1xzybapC8G4wEGGkZwyTDt1v",
                    "isScaledUiTokenBase": false,
                    "isScaledUiTokenQuote": false,
                    "type": "15m"
                  }
                }
              },
              "SolanaScaledUIAmount": {
                "value": {
                  "data": {
                    "items": [
                      {
                        "o": 1.044873537847058,
                        "c": 1.0464293679719943,
                        "h": 1.0464293679719943,
                        "l": 1.044873537847058,
                        "vBase": 0,
                        "vQuote": 55804.81725942366,
                        "unixTime": 1751417580,
                        "scaledO": 1.044873537847058,
                        "scaledC": 1.0464293679719943,
                        "scaledH": 1.0464293679719943,
                        "scaledL": 1.044873537847058,
                        "scaledVBase": 0,
                        "scaledVQuote": 55804.81725942366
                      },
                      {
                        "o": 1.0464293679719943,
                        "c": 1.0459240645688892,
                        "h": 1.0467828492410745,
                        "l": 1.0455628088823077,
                        "vBase": 0,
                        "vQuote": 60125.79360575415,
                        "unixTime": 1751417640,
                        "scaledO": 1.0464293679719943,
                        "scaledC": 1.0459240645688892,
                        "scaledH": 1.0467828492410745,
                        "scaledL": 1.0455628088823077,
                        "scaledVBase": 0,
                        "scaledVQuote": 60125.79360575415
                      }
                    ],
                    "baseAddress": "Xsc9qvGR1efVDFGLrVsmkzv3qi45LTBjeUKSPmx9qEh",
                    "quoteAddress": "So11111111111111111111111111111111111111112",
                    "isScaledUiTokenBase": true,
                    "isScaledUiTokenQuote": false,
                    "multiplierBase": 1,
                    "multiplierQuote": null,
                    "type": "1m"
                  },
                  "success": true
                }
              }
            }
          }
        }
      },
      "DefiPriceVolumeSingle": {
        "description": "JSON object containing price and volume with changes data of a token",
        "content": {
          "application/json": {
            "schema": {
              "$ref": "#/components/schemas/DefiPriceVolumeSingleResponse"
            },
            "examples": {
              "Solana": {
                "value": {
                  "success": true,
                  "data": {
                    "isScaledUiToken": false,
                    "price": 128.70426432642992,
                    "updateUnixTime": 1726678569,
                    "updateHumanTime": "2024-09-18T16:56:09",
                    "volumeUSD": 755004403.5277437,
                    "volumeChangePercent": -6.0377419970263055,
                    "priceChangePercent": -2.6091746792986936
                  }
                }
              },
              "SolanaScaledUIAmount": {
                "value": {
                  "success": true,
                  "data": {
                    "isScaledUiToken": true,
                    "price": 404.21180826549516,
                    "updateUnixTime": 1751369725,
                    "updateHumanTime": "2025-07-01T11:35:25",
                    "volumeUSD": 735344.6318917507,
                    "volumeChangePercent": null,
                    "priceChangePercent": 4.268112150090329,
                    "scaledPrice": 404.21180826549516,
                    "multiplier": 1
                  }
                }
              }
            }
          }
        }
      },
      "DefiPriceVolumeMulti": {
        "description": "JSON object containing price and volume with changes data of multiple tokens",
        "content": {
          "application/json": {
            "schema": {
              "$ref": "#/components/schemas/DefiPriceVolumeMultiResponse"
            },
            "examples": {
              "Solana": {
                "value": {
                  "success": true,
                  "data": {
                    "So11111111111111111111111111111111111111112": {
                      "isScaledUiToken": false,
                      "price": 128.94722473832456,
                      "updateUnixTime": 1726678893,
                      "updateHumanTime": "2024-09-18T17:01:33",
                      "volumeUSD": 754317820.7943375,
                      "volumeChangePercent": -6.2958716685581955,
                      "priceChangePercent": -2.618887600381405
                    },
                    "DezXAZ8z7PnrnRJjz3wXBoRgixCa6xjnB7YaB1pPB263": {
                      "isScaledUiToken": false,
                      "price": 0.00001602442261925,
                      "updateUnixTime": 1726678874,
                      "updateHumanTime": "2024-09-18T17:01:14",
                      "volumeUSD": 3196948.7086882377,
                      "volumeChangePercent": -10.538000381034182,
                      "priceChangePercent": -3.4737068687710613
                    }
                  }
                }
              },
              "SolanaScaledUIAmount": {
                "value": {
                  "success": true,
                  "data": {
                    "So11111111111111111111111111111111111111112": {
                      "isScaledUiToken": true,
                      "price": 404.21180826549516,
                      "updateUnixTime": 1751369725,
                      "updateHumanTime": "2025-07-01T11:35:25",
                      "volumeUSD": 735344.6318917507,
                      "volumeChangePercent": null,
                      "priceChangePercent": 4.268112150090329,
                      "scaledPrice": 404.21180826549516,
                      "multiplier": 1
                    },
                    "DezXAZ8z7PnrnRJjz3wXBoRgixCa6xjnB7YaB1pPB263": {
                      "isScaledUiToken": false,
                      "price": 0.00001602442261925,
                      "updateUnixTime": 1726678874,
                      "updateHumanTime": "2024-09-18T17:01:14",
                      "volumeUSD": 3196948.7086882377,
                      "volumeChangePercent": -10.538000381034182,
                      "priceChangePercent": -3.4737068687710613
                    }
                  }
                }
              }
            }
          }
        }
      },
      "PairOverviewMultiple": {
        "description": "JSON object containing overview of multiple markets",
        "content": {
          "application/json": {
            "schema": {
              "$ref": "#/components/schemas/PairOverviewMultipleResponse"
            },
            "examples": {
              "SolanaScaledUIAmount": {
                "value": {
                  "success": true,
                  "data": {
                    "4DoNfFBfF7UokCC2FQzriy7yHK6DY6NVdYpuekQ5pRgg": {
                      "address": "4DoNfFBfF7UokCC2FQzriy7yHK6DY6NVdYpuekQ5pRgg",
                      "base": {
                        "address": "So11111111111111111111111111111111111111112",
                        "decimals": 9,
                        "icon": "https://raw.githubusercontent.com/solana-labs/token-list/main/assets/mainnet/So11111111111111111111111111111111111111112/logo.png",
                        "symbol": "SOL",
                        "is_scaled_ui_token": false,
                        "multiplier": 1
                      },
                      "created_at": "2023-02-28T03:00:02.253Z",
                      "name": "SOL-USDC",
                      "quote": {
                        "address": "EPjFWdd5AufqSSqeM2qN1xzybapC8G4wEGGkZwyTDt1v",
                        "decimals": 6,
                        "icon": "https://raw.githubusercontent.com/solana-labs/token-list/main/assets/mainnet/EPjFWdd5AufqSSqeM2qN1xzybapC8G4wEGGkZwyTDt1v/logo.png",
                        "symbol": "USDC",
                        "is_scaled_ui_token": false,
                        "multiplier": 1
                      },
                      "source": "Phoenix",
                      "liquidity": 2798754.646440928,
                      "liquidity_change_percentage_24h": null,
                      "price": 185.2259461756374,
                      "trade_24h": 1088,
                      "trade_24h_change_percent": -16.628352490421456,
                      "trade_history_24h": 1305,
                      "unique_wallet_24h": 183,
                      "unique_wallet_24h_change_percent": -39.40397350993378,
                      "volume_24h": 3960934.260889339,
                      "volume_24h_base": 21735.928,
                      "volume_24h_change_percentage_24h": null,
                      "volume_24h_quote": 3961073.7718080003,
                      "volume_12h": 2371020.4454601924,
                      "volume_12h_base": 12961.386,
                      "volume_12h_quote": 2371101.2224080004,
                      "volume_1h": 167126.90920284906,
                      "volume_1h_base": 902.8530000000001,
                      "volume_1h_quote": 167127.603103,
                      "volume_2h": 528203.5824244855,
                      "volume_2h_base": 2859.9010000000003,
                      "volume_2h_quote": 528219.775809,
                      "volume_30m": 111882.67078251604,
                      "volume_30m_base": 604.808,
                      "volume_30m_quote": 111883.36210299999,
                      "volume_4h": 848002.9830474032,
                      "volume_4h_base": 4613.238,
                      "volume_4h_quote": 848022.866258,
                      "volume_8h": 2042469.7997546664,
                      "volume_8h_base": 11160.507,
                      "volume_8h_quote": 2042534.6387080003,
                      "trade_12h": 531,
                      "trade_12h_change_percent": -4.838709677419355,
                      "trade_1h": 33,
                      "trade_1h_change_percent": -62.06896551724138,
                      "trade_2h": 120,
                      "trade_2h_change_percent": 118.18181818181819,
                      "trade_30m": 9,
                      "trade_30m_change_percent": -60.86956521739131,
                      "trade_4h": 175,
                      "trade_4h_change_percent": -16.666666666666664,
                      "trade_8h": 385,
                      "trade_8h_change_percent": 41.02564102564102,
                      "trade_history_12h": 558,
                      "trade_history_1h": 87,
                      "trade_history_2h": 55,
                      "trade_history_30m": 23,
                      "trade_history_4h": 210,
                      "trade_history_8h": 273,
                      "unique_wallet_12h": 112,
                      "unique_wallet_12h_change_percent": 19.148936170212767,
                      "unique_wallet_1h": 14,
                      "unique_wallet_1h_change_percent": -44,
                      "unique_wallet_2h": 30,
                      "unique_wallet_2h_change_percent": 57.89473684210527,
                      "unique_wallet_30m": 4,
                      "unique_wallet_30m_change_percent": -66.66666666666666,
                      "unique_wallet_4h": 39,
                      "unique_wallet_4h_change_percent": -29.09090909090909,
                      "unique_wallet_8h": 83,
                      "unique_wallet_8h_change_percent": 29.6875
                    },
                    "D3gZwng2MgZGjktYcKpbR8Bz8653i4qCgzHCf5E4TcZb": {
                      "address": "D3gZwng2MgZGjktYcKpbR8Bz8653i4qCgzHCf5E4TcZb",
                      "base": {
                        "address": "DezXAZ8z7PnrnRJjz3wXBoRgixCa6xjnB7YaB1pPB263",
                        "decimals": 5,
                        "icon": "https://arweave.net/hQiPZOsRZXGXBJd_82PhVdlM_hACsT_q6wqwf5cSY7I",
                        "symbol": "Bonk",
                        "is_scaled_ui_token": false,
                        "multiplier": 1
                      },
                      "created_at": "2024-07-12T14:46:26.639Z",
                      "name": "Bonk-USDC",
                      "quote": {
                        "address": "EPjFWdd5AufqSSqeM2qN1xzybapC8G4wEGGkZwyTDt1v",
                        "decimals": 6,
                        "icon": "https://raw.githubusercontent.com/solana-labs/token-list/main/assets/mainnet/EPjFWdd5AufqSSqeM2qN1xzybapC8G4wEGGkZwyTDt1v/logo.png",
                        "symbol": "USDC",
                        "is_scaled_ui_token": false,
                        "multiplier": 1
                      },
                      "source": "Openbook V2",
                      "liquidity": 1558.0205178030249,
                      "price": 0.00004579600000000001,
                      "trade_24h": 5,
                      "trade_24h_change_percent": null,
                      "unique_wallet_24h": 1,
                      "unique_wallet_24h_change_percent": null,
                      "volume_24h": 0.29397628302
                    }
                  }
                }
              },
              "PairOverviewMultiple": {
                "value": {
                  "data": {
                    "4DoNfFBfF7UokCC2FQzriy7yHK6DY6NVdYpuekQ5pRgg": {
                      "address": "4DoNfFBfF7UokCC2FQzriy7yHK6DY6NVdYpuekQ5pRgg",
                      "base": {
                        "address": "So11111111111111111111111111111111111111112",
                        "decimals": 9,
                        "icon": "https://raw.githubusercontent.com/solana-labs/token-list/main/assets/mainnet/So11111111111111111111111111111111111111112/logo.png",
                        "symbol": "SOL"
                      },
                      "created_at": "2023-02-28T03:00:02.253Z",
                      "name": "SOL-USDC",
                      "quote": {
                        "address": "EPjFWdd5AufqSSqeM2qN1xzybapC8G4wEGGkZwyTDt1v",
                        "decimals": 6,
                        "icon": "https://raw.githubusercontent.com/solana-labs/token-list/main/assets/mainnet/EPjFWdd5AufqSSqeM2qN1xzybapC8G4wEGGkZwyTDt1v/logo.png",
                        "symbol": "USDC"
                      },
                      "source": "Phoenix",
                      "liquidity": 2919768.9610976744,
                      "liquidity_change_percentage_24h": null,
                      "price": 151.71133645655877,
                      "trade_24h": 16140,
                      "trade_24h_change_percent": 0.09302325581395349,
                      "trade_history_24h": 16125,
                      "unique_wallet_24h": 714,
                      "unique_wallet_24h_change_percent": -6.052631578947368,
                      "volume_24h": 19515805.77115872,
                      "volume_24h_base": 151900.454,
                      "volume_24h_change_percentage_24h": null,
                      "volume_24h_quote": 19516364.993035,
                      "volume_12h": 14684617.063818816,
                      "volume_12h_base": 113438.48700000001,
                      "volume_12h_quote": 14684998.902693,
                      "volume_1h": 1356675.6066384057,
                      "volume_1h_base": 10327.071000000004,
                      "volume_1h_quote": 1356683.9284229998,
                      "volume_2h": 2232212.0021702545,
                      "volume_2h_base": 16991.945000000003,
                      "volume_2h_quote": 2232241.2586139995,
                      "volume_30m": 523655.0599800013,
                      "volume_30m_base": 3981.183,
                      "volume_30m_quote": 523662.4028330001,
                      "volume_4h": 3075106.4318026183,
                      "volume_4h_base": 23345.053,
                      "volume_4h_quote": 3075154.5230179993,
                      "volume_8h": 11272364.380447734,
                      "volume_8h_base": 86701.32800000001,
                      "volume_8h_quote": 11272703.083117,
                      "trade_12h": 9371,
                      "trade_12h_change_percent": 38.37861783815712,
                      "trade_1h": 539,
                      "trade_1h_change_percent": -11.639344262295081,
                      "trade_2h": 1149,
                      "trade_2h_change_percent": 7.887323943661972,
                      "trade_30m": 190,
                      "trade_30m_change_percent": -45.24495677233429,
                      "trade_4h": 2217,
                      "trade_4h_change_percent": -46.01899196493791,
                      "trade_8h": 6305,
                      "trade_8h_change_percent": 25.273196900456984,
                      "trade_history_12h": 6772,
                      "trade_history_1h": 610,
                      "trade_history_2h": 1065,
                      "trade_history_30m": 347,
                      "trade_history_4h": 4107,
                      "trade_history_8h": 5033,
                      "unique_wallet_12h": 446,
                      "unique_wallet_12h_change_percent": 20.54054054054054,
                      "unique_wallet_1h": 38,
                      "unique_wallet_1h_change_percent": -47.94520547945205,
                      "unique_wallet_2h": 94,
                      "unique_wallet_2h_change_percent": -21.666666666666668,
                      "unique_wallet_30m": 15,
                      "unique_wallet_30m_change_percent": -54.54545454545454,
                      "unique_wallet_4h": 180,
                      "unique_wallet_4h_change_percent": -38.56655290102389,
                      "unique_wallet_8h": 386,
                      "unique_wallet_8h_change_percent": 83.80952380952381
                    },
                    "C1MgLojNLWBKADvu9BHdtgzz1oZX4dZ5zGdGcgvvW8Wz": {
                      "address": "C1MgLojNLWBKADvu9BHdtgzz1oZX4dZ5zGdGcgvvW8Wz",
                      "base": {
                        "address": "JUPyiwrYJFskUPiHa7hkeR8VUtAeFoSYbKedZNsDvCN",
                        "decimals": 6,
                        "symbol": "JUP",
                        "icon": "https://static.jup.ag/jup/icon.png"
                      },
                      "created_at": "2024-01-31T14:08:39.146Z",
                      "liquidity": 1291402.3208083548,
                      "name": "JUP-SOL",
                      "price": 0.0030215825258950056,
                      "quote": {
                        "address": "So11111111111111111111111111111111111111112",
                        "decimals": 9,
                        "icon": "https://raw.githubusercontent.com/solana-labs/token-list/main/assets/mainnet/So11111111111111111111111111111111111111112/logo.png",
                        "symbol": "SOL"
                      },
                      "source": "Orca",
                      "trade_24h": 16976,
                      "trade_24h_change_percent": 22.367188063144237,
                      "trade_history_24h": 13873,
                      "unique_wallet_24h": 1868,
                      "unique_wallet_24h_change_percent": 5.4771315640880855,
                      "volume_24h": 2998320.1367637445,
                      "volume_24h_base": 8307023.787845001,
                      "volume_24h_quote": 23477.901777949002,
                      "volume_12h": 1582243.1498670643,
                      "volume_12h_base": 4375292.048774,
                      "volume_12h_quote": 12227.167014845001,
                      "volume_1h": 75628.73530529441,
                      "volume_1h_base": 208052.02779800005,
                      "volume_1h_quote": 575.6791885270002,
                      "volume_2h": 172632.39615841256,
                      "volume_2h_base": 475513.942617,
                      "volume_2h_quote": 1313.769798941,
                      "volume_30m": 34617.09208651915,
                      "volume_30m_base": 95027.32648300001,
                      "volume_30m_quote": 263.11625854299996,
                      "volume_4h": 386622.7153731848,
                      "volume_4h_base": 1056502.127324,
                      "volume_4h_quote": 2928.0495685820006,
                      "volume_8h": 1089995.4976091573,
                      "volume_8h_base": 3005766.9040460004,
                      "volume_8h_quote": 8368.885435305001,
                      "trade_12h": 9354,
                      "trade_12h_change_percent": 22.836506894287588,
                      "trade_1h": 417,
                      "trade_1h_change_percent": -31.862745098039213,
                      "trade_2h": 1029,
                      "trade_2h_change_percent": -9.973753280839896,
                      "trade_30m": 158,
                      "trade_30m_change_percent": -38.996138996138995,
                      "trade_4h": 2170,
                      "trade_4h_change_percent": -45.271122320302645,
                      "trade_8h": 6122,
                      "trade_8h_change_percent": 18.00308404009252,
                      "trade_history_12h": 7615,
                      "trade_history_1h": 612,
                      "trade_history_2h": 1143,
                      "trade_history_30m": 259,
                      "trade_history_4h": 3965,
                      "trade_history_8h": 5188,
                      "unique_wallet_12h": 1145,
                      "unique_wallet_12h_change_percent": 15.539858728557013,
                      "unique_wallet_1h": 118,
                      "unique_wallet_1h_change_percent": -41.29353233830846,
                      "unique_wallet_2h": 275,
                      "unique_wallet_2h_change_percent": 11.788617886178862,
                      "unique_wallet_30m": 53,
                      "unique_wallet_30m_change_percent": -36.904761904761905,
                      "unique_wallet_4h": 445,
                      "unique_wallet_4h_change_percent": -16.195856873822976,
                      "unique_wallet_8h": 826,
                      "unique_wallet_8h_change_percent": 6.033376123234917
                    }
                  },
                  "success": true
                }
              }
            }
          }
        }
      },
      "PairOverviewSingle": {
        "description": "JSON object containing pair(market) overview data of a specific pair",
        "content": {
          "application/json": {
            "schema": {
              "$ref": "#/components/schemas/PairOverviewSingleResponse"
            },
            "examples": {
              "SolanaScaledUIAmount": {
                "value": {
                  "success": true,
                  "data": {
                    "address": "4DoNfFBfF7UokCC2FQzriy7yHK6DY6NVdYpuekQ5pRgg",
                    "base": {
                      "address": "So11111111111111111111111111111111111111112",
                      "decimals": 9,
                      "icon": "https://raw.githubusercontent.com/solana-labs/token-list/main/assets/mainnet/So11111111111111111111111111111111111111112/logo.png",
                      "symbol": "SOL",
                      "is_scaled_ui_token": false,
                      "multiplier": 1
                    },
                    "created_at": "2023-02-28T03:00:02.253Z",
                    "name": "SOL-USDC",
                    "quote": {
                      "address": "EPjFWdd5AufqSSqeM2qN1xzybapC8G4wEGGkZwyTDt1v",
                      "decimals": 6,
                      "icon": "https://raw.githubusercontent.com/solana-labs/token-list/main/assets/mainnet/EPjFWdd5AufqSSqeM2qN1xzybapC8G4wEGGkZwyTDt1v/logo.png",
                      "symbol": "USDC",
                      "is_scaled_ui_token": false,
                      "multiplier": 1
                    },
                    "source": "Phoenix",
                    "liquidity": 2798754.646440928,
                    "liquidity_change_percentage_24h": null,
                    "price": 185.2259461756374,
                    "trade_24h": 1088,
                    "trade_24h_change_percent": -16.628352490421456,
                    "trade_history_24h": 1305,
                    "unique_wallet_24h": 183,
                    "unique_wallet_24h_change_percent": -39.40397350993378,
                    "volume_24h": 3960934.260889339,
                    "volume_24h_base": 21735.928,
                    "volume_24h_change_percentage_24h": null,
                    "volume_24h_quote": 3961073.7718080003,
                    "volume_12h": 2371020.4454601924,
                    "volume_12h_base": 12961.386,
                    "volume_12h_quote": 2371101.2224080004,
                    "volume_1h": 167126.90920284906,
                    "volume_1h_base": 902.8530000000001,
                    "volume_1h_quote": 167127.603103,
                    "volume_2h": 528203.5824244855,
                    "volume_2h_base": 2859.9010000000003,
                    "volume_2h_quote": 528219.775809,
                    "volume_30m": 111882.67078251604,
                    "volume_30m_base": 604.808,
                    "volume_30m_quote": 111883.36210299999,
                    "volume_4h": 848002.9830474032,
                    "volume_4h_base": 4613.238,
                    "volume_4h_quote": 848022.866258,
                    "volume_8h": 2042469.7997546664,
                    "volume_8h_base": 11160.507,
                    "volume_8h_quote": 2042534.6387080003,
                    "trade_12h": 531,
                    "trade_12h_change_percent": -4.838709677419355,
                    "trade_1h": 33,
                    "trade_1h_change_percent": -62.06896551724138,
                    "trade_2h": 120,
                    "trade_2h_change_percent": 118.18181818181819,
                    "trade_30m": 9,
                    "trade_30m_change_percent": -60.86956521739131,
                    "trade_4h": 175,
                    "trade_4h_change_percent": -16.666666666666664,
                    "trade_8h": 385,
                    "trade_8h_change_percent": 41.02564102564102,
                    "trade_history_12h": 558,
                    "trade_history_1h": 87,
                    "trade_history_2h": 55,
                    "trade_history_30m": 23,
                    "trade_history_4h": 210,
                    "trade_history_8h": 273,
                    "unique_wallet_12h": 112,
                    "unique_wallet_12h_change_percent": 19.148936170212767,
                    "unique_wallet_1h": 14,
                    "unique_wallet_1h_change_percent": -44,
                    "unique_wallet_2h": 30,
                    "unique_wallet_2h_change_percent": 57.89473684210527,
                    "unique_wallet_30m": 4,
                    "unique_wallet_30m_change_percent": -66.66666666666666,
                    "unique_wallet_4h": 39,
                    "unique_wallet_4h_change_percent": -29.09090909090909,
                    "unique_wallet_8h": 83,
                    "unique_wallet_8h_change_percent": 29.6875
                  }
                }
              },
              "SinglePairOverview": {
                "value": {
                  "data": {
                    "address": "4DoNfFBfF7UokCC2FQzriy7yHK6DY6NVdYpuekQ5pRgg",
                    "base": {
                      "address": "So11111111111111111111111111111111111111112",
                      "decimals": 9,
                      "icon": "https://raw.githubusercontent.com/solana-labs/token-list/main/assets/mainnet/So11111111111111111111111111111111111111112/logo.png",
                      "symbol": "SOL"
                    },
                    "created_at": "2023-02-28T03:00:02.253Z",
                    "name": "SOL-USDC",
                    "quote": {
                      "address": "EPjFWdd5AufqSSqeM2qN1xzybapC8G4wEGGkZwyTDt1v",
                      "decimals": 6,
                      "icon": "https://raw.githubusercontent.com/solana-labs/token-list/main/assets/mainnet/EPjFWdd5AufqSSqeM2qN1xzybapC8G4wEGGkZwyTDt1v/logo.png",
                      "symbol": "USDC"
                    },
                    "source": "Phoenix",
                    "liquidity": 2919768.9610976744,
                    "liquidity_change_percentage_24h": null,
                    "price": 151.59967168674697,
                    "trade_24h": 16140,
                    "trade_24h_change_percent": 0.09302325581395349,
                    "trade_history_24h": 16125,
                    "unique_wallet_24h": 714,
                    "unique_wallet_24h_change_percent": -6.052631578947368,
                    "volume_24h": 19515805.77115872,
                    "volume_24h_base": 151900.454,
                    "volume_24h_change_percentage_24h": null,
                    "volume_24h_quote": 19516364.993035,
                    "volume_12h": 14684617.063818816,
                    "volume_12h_base": 113438.48700000001,
                    "volume_12h_quote": 14684998.902693,
                    "volume_1h": 1356675.6066384057,
                    "volume_1h_base": 10327.071000000004,
                    "volume_1h_quote": 1356683.9284229998,
                    "volume_2h": 2232212.0021702545,
                    "volume_2h_base": 16991.945000000003,
                    "volume_2h_quote": 2232241.2586139995,
                    "volume_30m": 523655.0599800013,
                    "volume_30m_base": 3981.183,
                    "volume_30m_quote": 523662.4028330001,
                    "volume_4h": 3075106.4318026183,
                    "volume_4h_base": 23345.053,
                    "volume_4h_quote": 3075154.5230179993,
                    "volume_8h": 11272364.380447734,
                    "volume_8h_base": 86701.32800000001,
                    "volume_8h_quote": 11272703.083117,
                    "trade_12h": 9371,
                    "trade_12h_change_percent": 38.37861783815712,
                    "trade_1h": 539,
                    "trade_1h_change_percent": -11.639344262295081,
                    "trade_2h": 1149,
                    "trade_2h_change_percent": 7.887323943661972,
                    "trade_30m": 190,
                    "trade_30m_change_percent": -45.24495677233429,
                    "trade_4h": 2217,
                    "trade_4h_change_percent": -46.01899196493791,
                    "trade_8h": 6305,
                    "trade_8h_change_percent": 25.273196900456984,
                    "trade_history_12h": 6772,
                    "trade_history_1h": 610,
                    "trade_history_2h": 1065,
                    "trade_history_30m": 347,
                    "trade_history_4h": 4107,
                    "trade_history_8h": 5033,
                    "unique_wallet_12h": 446,
                    "unique_wallet_12h_change_percent": 20.54054054054054,
                    "unique_wallet_1h": 38,
                    "unique_wallet_1h_change_percent": -47.94520547945205,
                    "unique_wallet_2h": 94,
                    "unique_wallet_2h_change_percent": -21.666666666666668,
                    "unique_wallet_30m": 15,
                    "unique_wallet_30m_change_percent": -54.54545454545454,
                    "unique_wallet_4h": 180,
                    "unique_wallet_4h_change_percent": -38.56655290102389,
                    "unique_wallet_8h": 386,
                    "unique_wallet_8h_change_percent": 83.80952380952381
                  },
                  "success": true
                }
              }
            }
          }
        }
      },
      "TradeV3Response": {
        "description": "JSON object containing trades",
        "content": {
          "application/json": {
            "schema": {
              "$ref": "#/components/schemas/V3TradeListResponse"
            },
            "examples": {
              "SolanaScaledUIAmount": {
                "value": {
                  "success": true,
                  "data": {
                    "items": [
                      {
                        "base": {
                          "symbol": "CLIPPY",
                          "address": "GCLTmivKZfxYi8SV17FrpqH8HZtJauoePQPRHxJxBAGS",
                          "decimals": 9,
                          "price": 0.00026036603447282113,
                          "amount": "24285885836773",
                          "ui_amount": 24285.885836773,
                          "ui_change_amount": 24285.885836773,
                          "type_swap": "to",
                          "is_scaled_ui_token": false,
                          "multiplier": null
                        },
                        "quote": {
                          "symbol": "SOL",
                          "address": "So11111111111111111111111111111111111111112",
                          "decimals": 9,
                          "price": 185.6186502639611,
                          "amount": "34118151",
                          "ui_amount": 0.034118151,
                          "ui_change_amount": -0.034118151,
                          "type_swap": "from",
                          "is_scaled_ui_token": false,
                          "multiplier": null
                        },
                        "tx_type": "swap",
                        "tx_hash": "4z62PXFvbo52qY66XAMhsaKSfNH9MoBinFQtsjoZcjRTc2gCGP2o86yTUdaHpnYozHxNkiATX3KRGPfFb7CyjoPW",
                        "ins_index": 0,
                        "inner_ins_index": 3,
                        "block_unix_time": 1754885184,
                        "block_number": 359262879,
                        "volume_usd": 6.332965138122014,
                        "volume": 24285.885836773,
                        "owner": "7dGrdJRYtsNR8UYxZ3TnifXGjGc9eRYLq9sELwYpuuUu",
                        "signers": [
                          "7dGrdJRYtsNR8UYxZ3TnifXGjGc9eRYLq9sELwYpuuUu"
                        ],
                        "source": "meteora_dlmm",
                        "interacted_program_id": "King7ki4SKMBPb3iupnQwTyjsq294jaXsgLmJo8cb7T",
                        "pool_id": "6LR2pDMBbYZNhj1iF86b4X5zRYyX7BNrhpzRDEZYNam9"
                      }
                    ],
                    "hasNext": true
                  }
                }
              },
              "Transactions": {
                "value": {
                  "data": {
                    "items": [
                      {
                        "base": {
                          "symbol": "KIKO",
                          "address": "3weaLsXbBnrraexeLed9hmuDVgeHKDZPtZSs4x6cD7qG",
                          "decimals": 6,
                          "price": 0.02988415183896015,
                          "amount": "454487131",
                          "ui_amount": 454.487131,
                          "ui_change_amount": -454.487131,
                          "type_swap": "from"
                        },
                        "quote": {
                          "symbol": "SOL",
                          "address": "So11111111111111111111111111111111111111112",
                          "decimals": 9,
                          "price": 165.64320257489635,
                          "amount": "81995290",
                          "ui_amount": 0.08199529,
                          "ui_change_amount": 0.08199529,
                          "type_swap": "to"
                        },
                        "tx_type": "swap",
                        "tx_hash": "393SUr4ZiPnGDCqzR5hrMpxkHur5JMvz1omGeqDVZq6DKvtHe8vnZET9adFygvaHFsYKYo4v91MP22yk9x7Jggkj",
                        "ins_index": 2,
                        "inner_ins_index": null,
                        "block_unix_time": 1747745377,
                        "block_number": 341273735,
                        "volume_usd": 13.581962431657372,
                        "volume": 454.487131,
                        "owner": "46zJ4LQQxCEC4it9GUfvTETdwrzDT8rVzEEXQTmJTJuq",
                        "signers": [
                          "46zJ4LQQxCEC4it9GUfvTETdwrzDT8rVzEEXQTmJTJuq"
                        ],
                        "source": "raydium",
                        "interacted_program_id": "675kPX9MHTjS2zt1qfr1NYHuzeLXfQM9H24wFSUt1Mp8",
                        "pool_id": "8oFgUziy5yRpQ3rsmZ2qEMcxpVkHiiwkebnsgMcHTR1w"
                      },
                      {
                        "base": {
                          "symbol": "KIKO",
                          "address": "3weaLsXbBnrraexeLed9hmuDVgeHKDZPtZSs4x6cD7qG",
                          "decimals": 6,
                          "price": 0.03002938305013581,
                          "amount": "371122946",
                          "ui_amount": 371.122946,
                          "ui_change_amount": 371.122946,
                          "type_swap": "to"
                        },
                        "quote": {
                          "symbol": "SOL",
                          "address": "So11111111111111111111111111111111111111112",
                          "decimals": 9,
                          "price": 165.64320257489635,
                          "amount": "67280715",
                          "ui_amount": 0.067280715,
                          "ui_change_amount": -0.067280715,
                          "type_swap": "from"
                        },
                        "tx_type": "swap",
                        "tx_hash": "3ud5wbaFMELDrJmNoC4uFXgE5WTKirKajnBcwaNfiRqycmJH4zzB2Cwr2nf9DKZN4Qrwg7zG9auQXgqH9gAfEXPJ",
                        "ins_index": 2,
                        "inner_ins_index": null,
                        "block_unix_time": 1747745377,
                        "block_number": 341273735,
                        "volume_usd": 11.144593104128868,
                        "volume": 371.122946,
                        "owner": "4oQHz59WxXtyeRpXdmAFNGso4mD2E7rziteQfST4c1BK",
                        "signers": [
                          "4oQHz59WxXtyeRpXdmAFNGso4mD2E7rziteQfST4c1BK"
                        ],
                        "source": "raydium",
                        "interacted_program_id": "675kPX9MHTjS2zt1qfr1NYHuzeLXfQM9H24wFSUt1Mp8",
                        "pool_id": "8oFgUziy5yRpQ3rsmZ2qEMcxpVkHiiwkebnsgMcHTR1w"
                      }
                    ],
                    "has_next": true
                  },
                  "success": true
                }
              }
            }
          }
        }
      },
      "DefiTokenPriceStats": {
        "description": "JSON object containing list of price stats of tokens",
        "content": {
          "application/json": {
            "schema": {
              "$ref": "#/components/schemas/DefiPriceStatsResponse"
            },
            "examples": {
              "Solana": {
                "value": {
                  "data": [
                    {
                      "address": "So11111111111111111111111111111111111111112",
                      "is_scaled_ui_token": false,
                      "data": [
                        {
                          "unix_time_update_price": 1751419434,
                          "time_frame": "1m",
                          "price": 147.37122560933628,
                          "price_change_percent": -0.023923362896247174,
                          "high": 147.48709093365915,
                          "low": 147.31438207414254
                        },
                        {
                          "unix_time_update_price": 1751419434,
                          "time_frame": "5m",
                          "price": 147.37122560933628,
                          "price_change_percent": 0.8046203174783053,
                          "high": 147.55458435764513,
                          "low": 146.0332035916541
                        }
                      ]
                    }
                  ],
                  "success": true
                }
              },
              "SolanaScaledUIAmount": {
                "value": {
                  "data": [
                    {
                      "address": "Xsc9qvGR1efVDFGLrVsmkzv3qi45LTBjeUKSPmx9qEh",
                      "is_scaled_ui_token": true,
                      "multiplier": 1,
                      "data": [
                        {
                          "unix_time_update_price": 1751419250,
                          "time_frame": "1m",
                          "price": 153.80113886441467,
                          "price_change_percent": 0,
                          "high": 153.80113886441467,
                          "low": 153.80113886441467,
                          "scaled_price": 153.80113886441467,
                          "scaled_high": 153.80113886441467,
                          "scaled_low": 153.80113886441467
                        },
                        {
                          "unix_time_update_price": 1751419250,
                          "time_frame": "5m",
                          "price": 153.80113886441467,
                          "price_change_percent": -0.000881089093618502,
                          "high": 153.80249400141503,
                          "low": 153.0064128845785,
                          "scaled_price": 153.80113886441467,
                          "scaled_high": 153.80249400141503,
                          "scaled_low": 153.0064128845785
                        }
                      ]
                    }
                  ],
                  "success": true
                }
              },
              "EVM": {
                "value": {
                  "success": true,
                  "data": {
                    "items": [
                      {
                        "address": "0xEE94eb70f808960230B4385F2247dB5E2e24b1a0",
                        "data": [
                          {
                            "unix_time_update_price": 1747643906,
                            "time_frame": "2d",
                            "price": 5.854518628897683,
                            "price_change_percent": -0.6435749789961294,
                            "high": 5.854518628897683,
                            "low": 5.854518628897683
                          },
                          {
                            "unix_time_update_price": 1747643906,
                            "time_frame": "3d",
                            "price": 5.854518628897683,
                            "price_change_percent": -0.6435749789961294,
                            "high": 9913.708977616778,
                            "low": 7.024614764659337
                          },
                          {
                            "unix_time_update_price": 1747643906,
                            "time_frame": "24h",
                            "price": 5.854518628897683,
                            "price_change_percent": -0.6435749789961294,
                            "high": 9913.708977616778,
                            "low": 7.024614764659337
                          }
                        ]
                      }
                    ]
                  }
                }
              }
            }
          }
        }
      },
      "DefiTokenListV1": {
        "description": "JSON object containing a list of tokens with certain fields",
        "content": {
          "application/json": {
            "schema": {
              "$ref": "#/components/schemas/DefiTokenListV1Response"
            },
            "examples": {
              "SolanaScaledUIAmount": {
                "value": {
                  "success": true,
                  "data": {
                    "updateUnixTime": 1754885276,
                    "updateTime": "2025-08-11T04:07:56.945Z",
                    "tokens": [
                      {
                        "isScaledUiToken": false,
                        "multiplier": null,
                        "address": "So11111111111111111111111111111111111111112",
                        "decimals": 9,
                        "price": 185.45023454574132,
                        "lastTradeUnixTime": 1754885221,
                        "liquidity": 23349538049.2037,
                        "logoURI": "https://raw.githubusercontent.com/solana-labs/token-list/main/assets/mainnet/So11111111111111111111111111111111111111112/logo.png",
                        "mc": 100058305776.50261,
                        "name": "Wrapped SOL",
                        "symbol": "SOL",
                        "v24hChangePercent": -1.4820129368250423,
                        "v24hUSD": 9515832024.915321
                      }
                    ],
                    "total": 298068
                  }
                }
              },
              "Tokens": {
                "value": {
                  "success": true,
                  "data": {
                    "updateUnixTime": 1726679660,
                    "updateTime": "2024-09-18T17:14:20",
                    "tokens": [
                      {
                        "address": "So11111111111111111111111111111111111111112",
                        "decimals": 9,
                        "price": 152.37270634528284,
                        "lastTradeUnixTime": 1726679251,
                        "liquidity": 7027121030.361493,
                        "logoURI": "https://img.fotofolio.xyz/?url=https%3A%2F%2Fraw.githubusercontent.com%2Fsolana-labs%2Ftoken-list%2Fmain%2Fassets%2Fmainnet%2FSo11111111111111111111111111111111111111112%2Flogo.png",
                        "mc": 75217627246.4999,
                        "name": "Wrapped SOL",
                        "symbol": "SOL",
                        "v24hChangePercent": -6.4865412491445245,
                        "v24hUSD": 753340393.0850035
                      },
                      {
                        "address": "EPjFWdd5AufqSSqeM2qN1xzybapC8G4wEGGkZwyTDt1v",
                        "decimals": 6,
                        "price": 0.99997,
                        "lastTradeUnixTime": 1726679250,
                        "liquidity": 3507793000.4033475,
                        "logoURI": "https://img.fotofolio.xyz/?url=https%3A%2F%2Fraw.githubusercontent.com%2Fsolana-labs%2Ftoken-list%2Fmain%2Fassets%2Fmainnet%2FEPjFWdd5AufqSSqeM2qN1xzybapC8G4wEGGkZwyTDt1v%2Flogo.png",
                        "mc": 2973865527.5120635,
                        "name": "USD Coin",
                        "symbol": "USDC",
                        "v24hChangePercent": -20.022827653450364,
                        "v24hUSD": 364654013.9369947
                      }
                    ],
                    "total": 455148
                  }
                }
              }
            }
          }
        }
      },
      "DefiTokenSecurity": {
        "description": "JSON object containing a security information of a token",
        "content": {
          "application/json": {
            "schema": {
              "$ref": "#/components/schemas/DefiTokenSecurityResponse"
            },
            "examples": {
              "Solana": {
                "value": {
                  "data": {
                    "creatorAddress": "9AhKqLR67hwapvG8SA2JFXaCshXc9nALJjpKaHZrsbkw",
                    "creatorOwnerAddress": null,
                    "ownerAddress": null,
                    "ownerOfOwnerAddress": null,
                    "creationTx": "2K5X6HT9QZ8dcApbWL6mzYw6WBDvL5vWndTpGrFkQuMfuStGTP5LxPNQnnn5v5KR2T6UD1zEXnfCdajzUfuCPZgS",
                    "creationTime": 1670531612,
                    "creationSlot": 165714665,
                    "mintTx": "44Jfxh3VFp6N2h3CLMGeHHxeexdtUnHRsvQ2QXF9h9JqHiBvjt2xCbJg7G443hPVvG4y5VP95iaiSRKuLVVcadCe",
                    "mintTime": 1683780182,
                    "mintSlot": 193273646,
                    "creatorBalance": 48343.76164,
                    "ownerBalance": null,
                    "ownerPercentage": null,
                    "creatorPercentage": 5.44198858929173e-10,
                    "metaplexUpdateAuthority": "9AhKqLR67hwapvG8SA2JFXaCshXc9nALJjpKaHZrsbkw",
                    "metaplexOwnerUpdateAuthority": null,
                    "metaplexUpdateAuthorityBalance": 48343.76164,
                    "metaplexUpdateAuthorityPercent": 5.44198858929173e-10,
                    "mutableMetadata": true,
                    "top10HolderBalance": 27020571907755.746,
                    "top10HolderPercent": 0.3041667404641445,
                    "top10UserBalance": 27020571907755.746,
                    "top10UserPercent": 0.3041667404641445,
                    "isTrueToken": null,
                    "fakeToken": null,
                    "totalSupply": 88834735403757.8,
                    "preMarketHolder": [],
                    "lockInfo": null,
                    "freezeable": null,
                    "freezeAuthority": null,
                    "transferFeeEnable": null,
                    "transferFeeData": null,
                    "isToken2022": false,
                    "nonTransferable": null,
                    "jupStrictList": true
                  },
                  "success": true
                }
              },
              "EVM": {
                "value": {
                  "data": {
                    "antiWhaleModifiable": "1",
                    "buyTax": "0",
                    "canTakeBackOwnership": "1",
                    "cannotBuy": "0",
                    "cannotSellAll": "0",
                    "creatorAddress": "0xf103d2aba493749a402b7de11cf31f5844062b74",
                    "creatorBalance": "3808465770.234542109",
                    "creatorPercentage": "0.000000",
                    "externalCall": "0",
                    "hiddenOwner": "0",
                    "holderCount": "1878049",
                    "honeypotWithSameCreator": "9",
                    "isAntiWhale": "1",
                    "isBlacklisted": "0",
                    "isHoneypot": "0",
                    "isInDex": "1",
                    "isMintable": "0",
                    "isOpenSource": "1",
                    "isProxy": "0",
                    "isWhitelisted": "1",
                    "lpHolderCount": "1166",
                    "lpHolders": [
                      {
                        "address": "0x407993575c91ce7643a4d4ccacc9a98c36ee1bbe",
                        "tag": "PinkLock02",
                        "value": null,
                        "is_contract": 1,
                        "balance": "215866.727575831313305613",
                        "percent": "0.697982323890454407",
                        "NFT_list": null,
                        "is_locked": 1,
                        "locked_detail": [
                          {
                            "amount": "108702.712185185487786736",
                            "end_time": "2024-11-30T12:49:00+00:00",
                            "opt_time": "2023-11-01T23:07:06+00:00"
                          },
                          {
                            "amount": "107164.015390645825518877",
                            "end_time": "2024-11-30T23:06:00+00:00",
                            "opt_time": "2023-11-01T23:07:06+00:00"
                          }
                        ]
                      },
                      {
                        "address": "0x000000000000000000000000000000000000dead",
                        "tag": "",
                        "value": null,
                        "is_contract": 0,
                        "balance": "92623.746470095960966348",
                        "percent": "0.299489127086188853",
                        "NFT_list": null,
                        "is_locked": 1
                      }
                    ],
                    "lpTotalSupply": "309272.484685028715377955",
                    "ownerAddress": "0x0000000000000000000000000000000000000000",
                    "ownerBalance": "0",
                    "ownerChangeBalance": "0",
                    "ownerPercentage": "0.000000",
                    "personalSlippageModifiable": "0",
                    "sellTax": "0",
                    "slippageModifiable": "1",
                    "tokenName": "Baby Doge Coin",
                    "tokenSymbol": "BabyDoge",
                    "totalSupply": "420000000000000000",
                    "tradingCooldown": "0",
                    "transferPausable": "0"
                  },
                  "success": true
                }
              }
            }
          }
        }
      },
      "DefiTokenOverview": {
        "description": "JSON object containing overview information of a token",
        "content": {
          "application/json": {
            "schema": {
              "$ref": "#/components/schemas/DefiTokenOverviewResponse"
            },
            "examples": {
              "SolanaScaledUIAmount": {
                "value": {
                  "success": true,
                  "data": {
                    "address": "So11111111111111111111111111111111111111112",
                    "decimals": 9,
                    "symbol": "SOL",
                    "name": "Wrapped SOL",
                    "marketCap": 100263084724.62823,
                    "fdv": 112833577331.7062,
                    "totalSupply": 607187823.0928401,
                    "circulatingSupply": 539542621.8877238,
                    "global_fees_paid": 125.5,
                    "holder": 3472782,
                    "extensions": {
                      "coingeckoId": "solana",
                      "serumV3Usdc": "9wFFyRfZBsuAha4YcuxcXLKwMxJR43S7fPfQLusDBzvT",
                      "serumV3Usdt": "HWHvQhFmJB3NUcu1aihKmrKegfVxBEHzwVX6yZCKEsi1",
                      "website": "https://solana.com/",
                      "telegram": null,
                      "twitter": "https://twitter.com/solana",
                      "description": "Wrapped Solana ",
                      "discord": "https://discordapp.com/invite/pquxPsq",
                      "medium": "https://medium.com/solana-labs"
                    },
                    "logoURI": "https://raw.githubusercontent.com/solana-labs/token-list/main/assets/mainnet/So11111111111111111111111111111111111111112/logo.png",
                    "liquidity": 23353595552.52654,
                    "lastTradeUnixTime": 1754885472,
                    "lastTradeHumanTime": "2025-08-11T04:11:12",
                    "price": 185.82977629057913,
                    "history1mPrice": 185.79442728744755,
                    "priceChange1mPercent": 0.01902586834689952,
                    "history5mPrice": 185.64908719930227,
                    "priceChange5mPercent": 0.09732829501223636,
                    "history30mPrice": 184.58275803998023,
                    "priceChange30mPercent": 0.675587613838123,
                    "history1hPrice": 184.82378809782267,
                    "priceChange1hPercent": 0.5442958415201495,
                    "history2hPrice": 184.48623316778523,
                    "priceChange2hPercent": 0.7282619953392334,
                    "history4hPrice": 182.01858574612513,
                    "priceChange4hPercent": 2.093846916143914,
                    "history6hPrice": 183.3662593572315,
                    "priceChange6hPercent": 1.3434952220671261,
                    "history8hPrice": 182.781521215397,
                    "priceChange8hPercent": 1.6677041830667094,
                    "history12hPrice": 181.73998251416327,
                    "priceChange12hPercent": 2.2503544458617606,
                    "history24hPrice": 184.76148770760037,
                    "priceChange24hPercent": 0.5781987340724478,
                    "uniqueWallet1m": 7188,
                    "uniqueWalletHistory1m": 7299,
                    "uniqueWallet1mChangePercent": -1.5207562679819153,
                    "uniqueWallet5m": 23670,
                    "uniqueWalletHistory5m": 32416,
                    "uniqueWallet5mChangePercent": -26.98050345508391,
                    "uniqueWallet30m": 101456,
                    "uniqueWalletHistory30m": 74756,
                    "uniqueWallet30mChangePercent": 35.71619669324201,
                    "uniqueWallet1h": 144003,
                    "uniqueWalletHistory1h": 191107,
                    "uniqueWallet1hChangePercent": -24.64797207846913,
                    "uniqueWallet2h": 292417,
                    "uniqueWalletHistory2h": 206753,
                    "uniqueWallet2hChangePercent": 41.4330142730698,
                    "uniqueWallet4h": 426036,
                    "uniqueWalletHistory4h": 248734,
                    "uniqueWallet4hChangePercent": 71.28177088777569,
                    "uniqueWallet8h": 587111,
                    "uniqueWalletHistory8h": 623567,
                    "uniqueWallet8hChangePercent": -5.846364544627923,
                    "uniqueWallet24h": 1394679,
                    "uniqueWalletHistory24h": 1454172,
                    "uniqueWallet24hChangePercent": -4.091194164101633,
                    "trade1m": 17469,
                    "tradeHistory1m": 18850,
                    "trade1mChangePercent": -7.326259946949603,
                    "sell1m": 9852,
                    "sellHistory1m": 10653,
                    "sell1mChangePercent": -7.51900872993523,
                    "buy1m": 7617,
                    "buyHistory1m": 8197,
                    "buy1mChangePercent": -7.075759424179578,
                    "v1m": 26463.910059272,
                    "v1mUSD": 4916069.30362933,
                    "vHistory1m": 31502.769373499003,
                    "vHistory1mUSD": 5845693.180421255,
                    "v1mChangePercent": -15.994972551415849,
                    "vBuy1m": 14173.111565352001,
                    "vBuy1mUSD": 2632923.854699539,
                    "vBuyHistory1m": 18145.89539667,
                    "vBuyHistory1mUSD": 3367492.6286006058,
                    "vBuy1mChangePercent": -21.893567357646372,
                    "vSell1m": 12290.79849392,
                    "vSell1mUSD": 2283145.4489297913,
                    "vSellHistory1m": 13356.873976829002,
                    "vSellHistory1mUSD": 2478200.551820649,
                    "vSell1mChangePercent": -7.981474443484225,
                    "trade5m": 91739,
                    "tradeHistory5m": 108986,
                    "trade5mChangePercent": -15.824968344558016,
                    "sell5m": 53591,
                    "sellHistory5m": 66851,
                    "sell5mChangePercent": -19.835155794228957,
                    "buy5m": 38148,
                    "buyHistory5m": 42135,
                    "buy5mChangePercent": -9.4624421502314,
                    "v5m": 148180.406499723,
                    "v5mUSD": 27497701.609222054,
                    "vHistory5m": 144981.31597421103,
                    "vHistory5mUSD": 26875267.526915293,
                    "v5mChangePercent": 2.2065536541832875,
                    "vBuy5m": 75042.90142003099,
                    "vBuy5mUSD": 13926318.79128133,
                    "vBuyHistory5m": 75167.25709972801,
                    "vBuyHistory5mUSD": 13934408.671477377,
                    "vBuy5mChangePercent": -0.1654386291254898,
                    "vSell5m": 73137.50507969201,
                    "vSell5mUSD": 13571382.817940727,
                    "vSellHistory5m": 69814.058874483,
                    "vSellHistory5mUSD": 12940858.855437916,
                    "vSell5mChangePercent": 4.760425419734085,
                    "trade30m": 682302,
                    "tradeHistory30m": 883160,
                    "trade30mChangePercent": -22.743104307260293,
                    "sell30m": 402208,
                    "sellHistory30m": 506428,
                    "sell30mChangePercent": -20.579430837157503,
                    "buy30m": 280094,
                    "buyHistory30m": 376732,
                    "buy30mChangePercent": -25.651656880753425,
                    "v30m": 1041160.531349391,
                    "v30mUSD": 192563042.8167962,
                    "vHistory30m": 1424758.523452565,
                    "vHistory30mUSD": 263432974.7832449,
                    "v30mChangePercent": -26.923719759444932,
                    "vBuy30m": 525771.001339281,
                    "vBuy30mUSD": 97251183.41918801,
                    "vBuyHistory30m": 709160.8991117042,
                    "vBuyHistory30mUSD": 131127693.7657724,
                    "vBuy30mChangePercent": -25.86012539638573,
                    "vSell30m": 515389.53001011006,
                    "vSell30mUSD": 95311859.3976082,
                    "vSellHistory30m": 715597.6243408608,
                    "vSellHistory30mUSD": 132305281.0174725,
                    "vSell30mChangePercent": -27.97774720327824,
                    "trade1h": 1440761,
                    "tradeHistory1h": 1543682,
                    "trade1hChangePercent": -6.667241050941838,
                    "sell1h": 836278,
                    "sellHistory1h": 917354,
                    "sell1hChangePercent": -8.838027631644927,
                    "buy1h": 604483,
                    "buyHistory1h": 626328,
                    "buy1hChangePercent": -3.4877891456233794,
                    "v1h": 2254927.542143159,
                    "v1hUSD": 417066348.4330929,
                    "vHistory1h": 2431082.890461931,
                    "vHistory1hUSD": 449682477.7676815,
                    "v1hChangePercent": -7.245962242171864,
                    "vBuy1h": 1133344.2123917632,
                    "vBuy1hUSD": 209634917.8387837,
                    "vBuyHistory1h": 1207603.2215708497,
                    "vBuyHistory1hUSD": 223387353.05486172,
                    "vBuy1hChangePercent": -6.149288760797635,
                    "vSell1h": 1121583.3297513959,
                    "vSell1hUSD": 207431430.59430918,
                    "vSellHistory1h": 1223479.6688910814,
                    "vSellHistory1hUSD": 226295124.71281976,
                    "vSell1hChangePercent": -8.328404772924484,
                    "trade2h": 2862743,
                    "tradeHistory2h": 2734138,
                    "trade2hChangePercent": 4.70367625920857,
                    "sell2h": 1682750,
                    "sellHistory2h": 1515867,
                    "sell2hChangePercent": 11.009079292576459,
                    "buy2h": 1179993,
                    "buyHistory2h": 1218271,
                    "buy2hChangePercent": -3.1419938585093137,
                    "v2h": 4498066.17978427,
                    "v2hUSD": 831977083.1367832,
                    "vHistory2h": 4818408.644050122,
                    "vHistory2hUSD": 880956459.3704734,
                    "v2hChangePercent": -6.6483042002138655,
                    "vBuy2h": 2243808.0465117125,
                    "vBuy2hUSD": 415049688.12798595,
                    "vBuyHistory2h": 2429964.8866566755,
                    "vBuyHistory2hUSD": 444302522.4454551,
                    "vBuy2hChangePercent": -7.660886013916493,
                    "vSell2h": 2254258.133272558,
                    "vSell2hUSD": 416927395.0087973,
                    "vSellHistory2h": 2388443.7573934468,
                    "vSellHistory2hUSD": 436653936.9250183,
                    "vSell2hChangePercent": -5.618119484937257,
                    "trade4h": 5709984,
                    "tradeHistory4h": 6127682,
                    "trade4hChangePercent": -6.8165743587868945,
                    "sell4h": 3253806,
                    "sellHistory4h": 3353576,
                    "sell4hChangePercent": -2.9750332182720776,
                    "buy4h": 2456178,
                    "buyHistory4h": 2774106,
                    "buy4hChangePercent": -11.46055702269488,
                    "v4h": 9547061.355143117,
                    "v4hUSD": 1754529625.4136252,
                    "vHistory4h": 10428207.931597296,
                    "vHistory4hUSD": 1906430751.4204042,
                    "v4hChangePercent": -8.449645252894507,
                    "vBuy4h": 4786451.436341593,
                    "vBuy4hUSD": 879674769.6042875,
                    "vBuyHistory4h": 5171951.602876889,
                    "vBuyHistory4hUSD": 945585468.7842517,
                    "vBuy4hChangePercent": -7.453669255544885,
                    "vSell4h": 4760609.918801524,
                    "vSell4hUSD": 874854855.8093376,
                    "vSellHistory4h": 5256256.328720408,
                    "vSellHistory4hUSD": 960845282.6361525,
                    "vSell4hChangePercent": -9.429646861220425,
                    "trade8h": 11144235,
                    "tradeHistory8h": 11013604,
                    "trade8hChangePercent": 1.1860876784747298,
                    "sell8h": 6232518,
                    "sellHistory8h": 6153198,
                    "sell8hChangePercent": 1.289085772959037,
                    "buy8h": 4911717,
                    "buyHistory8h": 4860406,
                    "buy8hChangePercent": 1.05569370130808,
                    "v8h": 18712884.078270502,
                    "v8hUSD": 3430582244.777233,
                    "vHistory8h": 17149350.55459676,
                    "vHistory8hUSD": 3111090788.3309703,
                    "v8hChangePercent": 9.117158802580132,
                    "vBuy8h": 9323774.414230537,
                    "vBuy8hUSD": 1709439211.529329,
                    "vBuyHistory8h": 8470290.088989228,
                    "vBuyHistory8hUSD": 1536613109.0483108,
                    "vBuy8hChangePercent": 10.076211278180157,
                    "vSell8h": 9389109.664039968,
                    "vSell8hUSD": 1721143033.2479043,
                    "vSellHistory8h": 8679060.46560753,
                    "vSellHistory8hUSD": 1574477679.2826595,
                    "vSell8hChangePercent": 8.181175845543958,
                    "trade24h": 31567346,
                    "tradeHistory24h": 32424950,
                    "trade24hChangePercent": -2.644889197978717,
                    "sell24h": 17614443,
                    "sellHistory24h": 18171574,
                    "sell24hChangePercent": -3.065947947051807,
                    "buy24h": 13952903,
                    "buyHistory24h": 14253376,
                    "buy24hChangePercent": -2.1080830253828986,
                    "v24h": 52390882.652610525,
                    "v24hUSD": 9537454514.524822,
                    "vHistory24h": 53060724.64863746,
                    "vHistory24hUSD": 9633994545.717289,
                    "v24hChangePercent": -1.2624064229475878,
                    "vBuy24h": 25995649.913853772,
                    "vBuy24hUSD": 4732561596.32917,
                    "vBuyHistory24h": 26420975.749226637,
                    "vBuyHistory24hUSD": 4797352458.750371,
                    "vBuy24hChangePercent": -1.6098036628541805,
                    "vSell24h": 26395232.738756754,
                    "vSell24hUSD": 4804892918.195653,
                    "vSellHistory24h": 26639748.899410825,
                    "vSellHistory24hUSD": 4836642086.966919,
                    "vSell24hChangePercent": -0.9178621073995166,
                    "numberMarkets": 150744,
                    "isScaledUiToken": false,
                    "multiplier": null
                  }
                }
              },
              "TokenOverview": {
                "value": {
                  "data": {
                    "address": "So11111111111111111111111111111111111111112",
                    "decimals": 9,
                    "symbol": "SOL",
                    "name": "Wrapped SOL",
                    "marketCap": 87180723232.4941,
                    "fdv": 100842923039.98,
                    "extensions": {
                      "coingeckoId": "solana",
                      "serumV3Usdc": "9wFFyRfZBsuAha4YcuxcXLKwMxJR43S7fPfQLusDBzvT",
                      "serumV3Usdt": "HWHvQhFmJB3NUcu1aihKmrKegfVxBEHzwVX6yZCKEsi1",
                      "website": "https://solana.com/",
                      "telegram": null,
                      "twitter": "https://twitter.com/solana",
                      "description": "Wrapped Solana ",
                      "discord": "https://discordapp.com/invite/pquxPsq",
                      "medium": "https://medium.com/solana-labs"
                    },
                    "logoURI": "https://raw.githubusercontent.com/solana-labs/token-list/main/assets/mainnet/So11111111111111111111111111111111111111112/logo.png",
                    "liquidity": 16204441269.55982,
                    "lastTradeUnixTime": 1746802093,
                    "lastTradeHumanTime": "2025-05-09T14:48:13",
                    "price": 167.9717977535047,
                    "history1mPrice": 168.4088836293969,
                    "priceChange1mPercent": -0.25953849136253415,
                    "history5mPrice": 168.84359081129827,
                    "priceChange5mPercent": -0.5163317444296175,
                    "history30mPrice": 171.43733146253095,
                    "priceChange30mPercent": -2.0214580333593686,
                    "history1hPrice": 172.75722318541744,
                    "priceChange1hPercent": -2.770029144759197,
                    "history2hPrice": 172.2346734850696,
                    "priceChange2hPercent": -2.475039227182354,
                    "history4hPrice": 170.05580963573024,
                    "priceChange4hPercent": -1.225487024930011,
                    "history6hPrice": 167.3727512958139,
                    "priceChange6hPercent": 0.35791157942550833,
                    "history8hPrice": 163.54628739020663,
                    "priceChange8hPercent": 2.7059680986454877,
                    "history12hPrice": 162.74296455421606,
                    "priceChange12hPercent": 3.2129396275970508,
                    "history24hPrice": 157.51260920577943,
                    "priceChange24hPercent": 6.640223027517149,
                    "uniqueWallet1m": 7955,
                    "uniqueWalletHistory1m": 8300,
                    "uniqueWallet1mChangePercent": -4.156626506024097,
                    "uniqueWallet5m": 27033,
                    "uniqueWalletHistory5m": 27281,
                    "uniqueWallet5mChangePercent": -0.9090575858656208,
                    "uniqueWallet30m": 98980,
                    "uniqueWalletHistory30m": 98887,
                    "uniqueWallet30mChangePercent": 0.09404674021863339,
                    "uniqueWallet1h": 166478,
                    "uniqueWalletHistory1h": 145186,
                    "uniqueWallet1hChangePercent": 14.665325857865083,
                    "uniqueWallet2h": 265223,
                    "uniqueWalletHistory2h": 181521,
                    "uniqueWallet2hChangePercent": 46.111469196401515,
                    "uniqueWallet4h": 382251,
                    "uniqueWalletHistory4h": 275988,
                    "uniqueWallet4hChangePercent": 38.50276098960824,
                    "uniqueWallet8h": 565327,
                    "uniqueWalletHistory8h": 593685,
                    "uniqueWallet8hChangePercent": -4.77660712330613,
                    "uniqueWallet24h": 1665723,
                    "uniqueWalletHistory24h": 1404422,
                    "uniqueWallet24hChangePercent": 18.605590057689213,
                    "totalSupply": 600356276.4028102,
                    "circulatingSupply": 519020004.53927445,
                    "holder": 1760223,
                    "trade1m": 20682,
                    "tradeHistory1m": 24687,
                    "trade1mChangePercent": -16.223113379511485,
                    "sell1m": 11727,
                    "sellHistory1m": 14036,
                    "sell1mChangePercent": -16.450555713878597,
                    "buy1m": 8955,
                    "buyHistory1m": 10651,
                    "buy1mChangePercent": -15.923387475354428,
                    "v1m": 29901.998139863,
                    "v1mUSD": 5077278.654974254,
                    "vHistory1m": 30646.791280430996,
                    "vHistory1mUSD": 5219685.923701156,
                    "v1mChangePercent": -2.430248353743875,
                    "vBuy1m": 12396.121135296999,
                    "vBuy1mUSD": 2126705.432446164,
                    "vBuyHistory1m": 13090.079018149998,
                    "vBuyHistory1mUSD": 2212182.945199659,
                    "vBuy1mChangePercent": -5.301403313843978,
                    "vSell1m": 17505.877004566002,
                    "vSell1mUSD": 2950573.2225280902,
                    "vSellHistory1m": 17556.712262281,
                    "vSellHistory1mUSD": 3007502.9785014973,
                    "vSell1mChangePercent": -0.28954884579507056,
                    "trade5m": 116233,
                    "tradeHistory5m": 126663,
                    "trade5mChangePercent": -8.234448891941609,
                    "sell5m": 65905,
                    "sellHistory5m": 70880,
                    "sell5mChangePercent": -7.018905191873589,
                    "buy5m": 50328,
                    "buyHistory5m": 55783,
                    "buy5mChangePercent": -9.778964917627233,
                    "v5m": 161544.220822853,
                    "v5mUSD": 27692876.766140137,
                    "vHistory5m": 216566.50841522898,
                    "vHistory5mUSD": 36920321.57370163,
                    "v5mChangePercent": -25.406646667120018,
                    "vBuy5m": 76068.134923731,
                    "vBuy5mUSD": 13169147.136751132,
                    "vBuyHistory5m": 105770.59333944602,
                    "vBuyHistory5mUSD": 18036608.943288196,
                    "vBuy5mChangePercent": -28.081962554934247,
                    "vSell5m": 85476.085899122,
                    "vSell5mUSD": 14523729.629389005,
                    "vSellHistory5m": 110795.91507578298,
                    "vSellHistory5mUSD": 18883712.63041343,
                    "vSell5mChangePercent": -22.852673908909495,
                    "trade30m": 788590,
                    "tradeHistory30m": 797963,
                    "trade30mChangePercent": -1.174615865647906,
                    "sell30m": 442903,
                    "sellHistory30m": 446408,
                    "sell30mChangePercent": -0.7851561799967743,
                    "buy30m": 345687,
                    "buyHistory30m": 351555,
                    "buy30mChangePercent": -1.6691556086529846,
                    "v30m": 1254060.0583020002,
                    "v30mUSD": 214883389.03084078,
                    "vHistory30m": 1014809.626640769,
                    "vHistory30mUSD": 176963012.98413345,
                    "v30mChangePercent": 23.57589299317153,
                    "vBuy30m": 617376.7933133912,
                    "vBuy30mUSD": 105656879.5739485,
                    "vBuyHistory30m": 515256.87016754213,
                    "vBuyHistory30mUSD": 89409857.07236338,
                    "vBuy30mChangePercent": 19.819225915928783,
                    "vSell30m": 636683.264988609,
                    "vSell30mUSD": 109226509.45689228,
                    "vSellHistory30m": 499552.7564732268,
                    "vSellHistory30mUSD": 87553155.91177008,
                    "vSell30mChangePercent": 27.450655959443516,
                    "trade1h": 1466265,
                    "tradeHistory1h": 1320699,
                    "trade1hChangePercent": 11.021890680616856,
                    "sell1h": 821622,
                    "sellHistory1h": 721102,
                    "sell1hChangePercent": 13.939775510260684,
                    "buy1h": 644643,
                    "buyHistory1h": 599597,
                    "buy1hChangePercent": 7.512712705367106,
                    "v1h": 2108562.948260493,
                    "v1hUSD": 364214841.91139424,
                    "vHistory1h": 1783376.1195459762,
                    "vHistory1hUSD": 315517691.7376682,
                    "v1hChangePercent": 18.23433795879835,
                    "vBuy1h": 1047163.9042004604,
                    "vBuy1hUSD": 180355710.08512825,
                    "vBuyHistory1h": 870775.027542904,
                    "vBuyHistory1hUSD": 151538134.971131,
                    "vBuy1hChangePercent": 20.25653826514513,
                    "vSell1h": 1061399.0440600328,
                    "vSell1hUSD": 183859131.82626596,
                    "vSellHistory1h": 912601.092003072,
                    "vSellHistory1hUSD": 163979556.76653722,
                    "vSell1hChangePercent": 16.304818541293166,
                    "trade2h": 2669379,
                    "tradeHistory2h": 2273625,
                    "trade2hChangePercent": 17.40630051129804,
                    "sell2h": 1478759,
                    "sellHistory2h": 1214967,
                    "sell2hChangePercent": 21.711865425151462,
                    "buy2h": 1190620,
                    "buyHistory2h": 1058658,
                    "buy2hChangePercent": 12.465026476917004,
                    "v2h": 3731210.4661495816,
                    "v2hUSD": 651452028.7737522,
                    "vHistory2h": 4986668.953994334,
                    "vHistory2hUSD": 876699150.961254,
                    "v2hChangePercent": -25.176295026344732,
                    "vBuy2h": 1831761.5833810142,
                    "vBuy2hUSD": 316887774.0885777,
                    "vBuyHistory2h": 2552431.93778671,
                    "vBuyHistory2hUSD": 447965734.71457183,
                    "vBuy2hChangePercent": -28.234655104285,
                    "vSell2h": 1899448.8827685672,
                    "vSell2hUSD": 334564254.68517447,
                    "vSellHistory2h": 2434237.0162076233,
                    "vSellHistory2hUSD": 428733416.24668217,
                    "vSell2hChangePercent": -21.96943559227523,
                    "trade4h": 5091801,
                    "tradeHistory4h": 4712834,
                    "trade4hChangePercent": 8.04117013245109,
                    "sell4h": 2772519,
                    "sellHistory4h": 2530641,
                    "sell4hChangePercent": 9.557973651734878,
                    "buy4h": 2319282,
                    "buyHistory4h": 2182193,
                    "buy4hChangePercent": 6.282166609461217,
                    "v4h": 8939271.824863661,
                    "v4hUSD": 1565560374.6611657,
                    "vHistory4h": 8303593.777521941,
                    "vHistory4hUSD": 1399553943.2157688,
                    "v4hChangePercent": 7.65545695482501,
                    "vBuy4h": 4504246.161137434,
                    "vBuy4hUSD": 784884335.9037958,
                    "vBuyHistory4h": 4305672.358770635,
                    "vBuyHistory4hUSD": 725954295.8032504,
                    "vBuy4hChangePercent": 4.611911585940923,
                    "vSell4h": 4435025.663726228,
                    "vSell4hUSD": 780676038.7573699,
                    "vSellHistory4h": 3997921.418751306,
                    "vSellHistory4hUSD": 673599647.4125183,
                    "vSell4hChangePercent": 10.933287555998179,
                    "trade8h": 9289851,
                    "tradeHistory8h": 9379085,
                    "trade8hChangePercent": -0.9514147702041297,
                    "sell8h": 5029486,
                    "sellHistory8h": 5093401,
                    "sell8hChangePercent": -1.2548589832216235,
                    "buy8h": 4260365,
                    "buyHistory8h": 4285684,
                    "buy8hChangePercent": -0.5907808415179467,
                    "v8h": 15908857.34252959,
                    "v8hUSD": 2732932277.975237,
                    "vHistory8h": 9435031.81369001,
                    "vHistory8hUSD": 1548030762.8614295,
                    "v8hChangePercent": 68.61477159458232,
                    "vBuy8h": 8049726.027986797,
                    "vBuy8hUSD": 1378697583.6394334,
                    "vBuyHistory8h": 4725061.174831935,
                    "vBuyHistory8hUSD": 774623834.5994598,
                    "vBuy8hChangePercent": 70.36236633006378,
                    "vSell8h": 7859131.314542793,
                    "vSell8hUSD": 1354234694.3358037,
                    "vSellHistory8h": 4709970.638858074,
                    "vSellHistory8hUSD": 773406928.2619697,
                    "vSell8hChangePercent": 66.86157764346973,
                    "trade24h": 29304866,
                    "tradeHistory24h": 24668611,
                    "trade24hChangePercent": 18.794146942444385,
                    "sell24h": 15982558,
                    "sellHistory24h": 13552421,
                    "sell24hChangePercent": 17.9313865766124,
                    "buy24h": 13322308,
                    "buyHistory24h": 11116190,
                    "buy24hChangePercent": 19.84599039778917,
                    "v24h": 38745401.947157934,
                    "v24hUSD": 6451492278.474664,
                    "vHistory24h": 27529677.595021047,
                    "vHistory24hUSD": 4160810504.560139,
                    "v24hChangePercent": 40.740485657432245,
                    "vBuy24h": 19559046.575467408,
                    "vBuy24hUSD": 3250849329.4358945,
                    "vBuyHistory24h": 13821503.465453008,
                    "vBuyHistory24hUSD": 2090095440.02877,
                    "vBuy24hChangePercent": 41.511714874980484,
                    "vSell24h": 19186355.371690527,
                    "vSell24hUSD": 3200642949.0387692,
                    "vSellHistory24h": 13708174.129568037,
                    "vSellHistory24hUSD": 2070715064.5313692,
                    "vSell24hChangePercent": 39.962880470756865,
                    "numberMarkets": 196569
                  },
                  "success": true
                }
              }
            }
          }
        }
      },
      "DefiTokenCreationInfo": {
        "description": "JSON object containing creation information of a token",
        "content": {
          "application/json": {
            "schema": {
              "$ref": "#/components/schemas/DefiTokenCreationInfoResponse"
            },
            "examples": {
              "TokenCreationInfo": {
                "value": {
                  "success": true,
                  "data": {
                    "txHash": "3cW2HpkUs5Hg2FBMa52iJoSMUf8MNkkzkRcGuBs1JEesQ1pnsvNwCbTmZfeJf8hTi9NSHh1Tqx6Rz5Wrr7ePDEps",
                    "slot": 223012712,
                    "tokenAddress": "D7rcV8SPxbv94s3kJETkrfMrWqHFs6qrmtbiu6saaany",
                    "decimals": 5,
                    "owner": "JEFL3KwPQeughdrQAjLo9o75qh15nYbFJ2ZDrb695qsZ",
                    "blockUnixTime": 1697044029,
                    "blockHumanTime": "2023-10-11T17:07:09.000Z"
                  }
                }
              }
            }
          }
        }
      },
      "DefiTokenTrendingList": {
        "description": "JSON object containing a list of trending tokens",
        "content": {
          "application/json": {
            "schema": {
              "$ref": "#/components/schemas/DefiTokenTrendingListResponse"
            },
            "examples": {
              "SolanaScaledUIAmount": {
                "value": {
                  "success": true,
                  "data": {
                    "updateUnixTime": 1726681733,
                    "updateTime": "2024-09-18T17:48:53",
                    "tokens": [
                      {
                        "address": "HJXh1XULVe2Mdp6mTKd5K7of1uFqBTbmcWzvBv6cpump",
                        "decimals": 6,
                        "liquidity": 34641.80933146691,
                        "logoURI": "https://ipfs.io/ipfs/QmR7QnPaYcfwoG8oymK5JRDsB9GSgHr71mJmL2MuJ7Qk3x",
                        "name": "AVOCATO",
                        "symbol": "ATO",
                        "volume24hUSD": 1202872.3148187269,
                        "volume24hChangePercent": 33,
                        "rank": 1,
                        "price": 0.00010551649518689046,
                        "price24hChangePercent": 210,
                        "fdv": 17028232129,
                        "marketcap": 28232129
                      },
                      {
                        "address": "HYFDwieKWth1kzKbtLFMtgMVwukyvyWNYFxyQDcWpump",
                        "decimals": 6,
                        "liquidity": 73874.80948083404,
                        "logoURI": "https://ipfs.io/ipfs/QmUxhHFAugzzWmTMCMCky1QjaJNjtpBNhC2iRELb77Vqfw",
                        "name": "The Liquidator",
                        "symbol": "LIQUIDATOR",
                        "volume24hUSD": 920580.3615402475,
                        "volume24hChangePercent": 5,
                        "rank": 2,
                        "price": 0.0006106216453936813,
                        "price24hChangePercent": 12,
                        "fdv": 1495237953,
                        "marketcap": 5425292
                      }
                    ],
                    "total": 1000
                  }
                }
              },
              "Tokens": {
                "value": {
                  "data": {
                    "updateUnixTime": 1726681733,
                    "updateTime": "2024-09-18T17:48:53",
                    "tokens": [
                      {
                        "address": "HJXh1XULVe2Mdp6mTKd5K7of1uFqBTbmcWzvBv6cpump",
                        "decimals": 6,
                        "liquidity": 34641.80933146691,
                        "logoURI": "https://ipfs.io/ipfs/QmR7QnPaYcfwoG8oymK5JRDsB9GSgHr71mJmL2MuJ7Qk3x",
                        "name": "AVOCATO",
                        "symbol": "ATO",
                        "volume24hUSD": 1202872.3148187269,
                        "volume24hChangePercent": 33,
                        "rank": 1,
                        "price": 0.00010551649518689046,
                        "price24hChangePercent": 210,
                        "fdv": 17028232129,
                        "marketcap": 28232129
                      },
                      {
                        "address": "HYFDwieKWth1kzKbtLFMtgMVwukyvyWNYFxyQDcWpump",
                        "decimals": 6,
                        "liquidity": 73874.80948083404,
                        "logoURI": "https://ipfs.io/ipfs/QmUxhHFAugzzWmTMCMCky1QjaJNjtpBNhC2iRELb77Vqfw",
                        "name": "The Liquidator",
                        "symbol": "LIQUIDATOR",
                        "volume24hUSD": 920580.3615402475,
                        "volume24hChangePercent": 5,
                        "rank": 2,
                        "price": 0.0006106216453936813,
                        "price24hChangePercent": 12,
                        "fdv": 1495237953,
                        "marketcap": 5425292
                      }
                    ],
                    "total": 1000
                  },
                  "success": true
                }
              }
            }
          }
        }
      },
      "DefiTokenMetadataSingle": {
        "description": "JSON object containing metadata of a specific token",
        "content": {
          "application/json": {
            "schema": {
              "$ref": "#/components/schemas/DefiTokenMetadataSingleResponse"
            },
            "examples": {
              "TokenMetadata": {
                "value": {
                  "data": {
                    "address": "So11111111111111111111111111111111111111112",
                    "symbol": "SOL",
                    "name": "Wrapped SOL",
                    "decimals": 9,
                    "extensions": {
                      "coingecko_id": "solana",
                      "website": "https://solana.com/",
                      "twitter": "https://twitter.com/solana",
                      "discord": "https://discordapp.com/invite/pquxPsq",
                      "medium": "https://medium.com/solana-labs"
                    },
                    "logo_uri": "https://img.fotofolio.xyz/?url=https%3A%2F%2Fraw.githubusercontent.com%2Fsolana-labs%2Ftoken-list%2Fmain%2Fassets%2Fmainnet%2FSo11111111111111111111111111111111111111112%2Flogo.png"
                  },
                  "success": true
                }
              }
            }
          }
        }
      },
      "DefiTokenMetadataMultiple": {
        "description": "JSON object containing metadata of multiple tokens",
        "content": {
          "application/json": {
            "schema": {
              "$ref": "#/components/schemas/DefiTokenMetadataMultipleResponse"
            },
            "examples": {
              "TokenMetadataMultiple": {
                "value": {
                  "data": {
                    "So11111111111111111111111111111111111111112": {
                      "address": "So11111111111111111111111111111111111111112",
                      "symbol": "SOL",
                      "name": "Wrapped SOL",
                      "decimals": 9,
                      "extensions": {
                        "coingecko_id": "solana",
                        "website": "https://solana.com/",
                        "twitter": "https://twitter.com/solana",
                        "discord": "https://discordapp.com/invite/pquxPsq",
                        "medium": "https://medium.com/solana-labs"
                      },
                      "logo_uri": "https://img.fotofolio.xyz/?url=https%3A%2F%2Fraw.githubusercontent.com%2Fsolana-labs%2Ftoken-list%2Fmain%2Fassets%2Fmainnet%2FSo11111111111111111111111111111111111111112%2Flogo.png"
                    },
                    "EPjFWdd5AufqSSqeM2qN1xzybapC8G4wEGGkZwyTDt1v": {
                      "address": "EPjFWdd5AufqSSqeM2qN1xzybapC8G4wEGGkZwyTDt1v",
                      "decimals": 6,
                      "symbol": "USDC",
                      "name": "USD Coin",
                      "extensions": {
                        "coingecko_id": "usd-coin",
                        "website": "https://www.circle.com/en/usdc",
                        "twitter": "https://twitter.com/circle",
                        "medium": "https://medium.com/centre-blog",
                        "discord": "https://discord.com/invite/buildoncircle"
                      },
                      "logo_uri": "https://img.fotofolio.xyz/?url=https%3A%2F%2Fraw.githubusercontent.com%2Fsolana-labs%2Ftoken-list%2Fmain%2Fassets%2Fmainnet%2FEPjFWdd5AufqSSqeM2qN1xzybapC8G4wEGGkZwyTDt1v%2Flogo.png"
                    }
                  },
                  "success": true
                }
              },
              "MissingTokenMetadataMultiple": {
                "value": {
                  "data": {
                    "So11111111111111111111111111111111111111112": null,
                    "EPjFWdd5AufqSSqeM2qN1xzybapC8G4wEGGkZwyTDt1v": null
                  },
                  "success": true
                }
              }
            }
          }
        }
      },
      "DefiTokenMarketDataSingle": {
        "description": "JSON object containing market data of a specific token",
        "content": {
          "application/json": {
            "schema": {
              "$ref": "#/components/schemas/DefiTokenMarketDataSingleResponse"
            },
            "examples": {
              "SolanaScaledUIAmount": {
                "value": {
                  "success": true,
                  "data": {
                    "address": "So11111111111111111111111111111111111111112",
                    "price": 185.74132384799458,
                    "liquidity": 23338480211.61425,
                    "total_supply": 607187823.0928401,
                    "circulating_supply": 539542621.8877238,
                    "fdv": 112779870085.64606,
                    "market_cap": 100215360861.8438,
                    "holder": 3498897,
                    "is_scaled_ui_token": false,
                    "multiplier": null
                  }
                }
              },
              "TokenMarketData": {
                "value": {
                  "data": {
                    "address": "So11111111111111111111111111111111111111112",
                    "liquidity": 7889932801.542948,
                    "price": 128.00523659221298,
                    "total_supply": 583981435.5103763,
                    "circulating_supply": 583981433.2307372,
                    "fdv": 74790067044.55531,
                    "market_cap": 74790067336.507,
                    "holder": 3498897
                  },
                  "success": true
                }
              }
            }
          }
        }
      },
      "DefiTokenMarketDataMultiple": {
        "description": "JSON object containing market data of multiple tokens",
        "content": {
          "application/json": {
            "schema": {
              "$ref": "#/components/schemas/DefiTokenMarketDataMultipleResponse"
            },
            "examples": {
              "SolanaScaledUIAmount": {
                "value": {
                  "success": true,
                  "data": {
                    "So11111111111111111111111111111111111111112": {
                      "address": "So11111111111111111111111111111111111111112",
                      "price": 185.9491010572536,
                      "liquidity": 23338480211.61425,
                      "total_supply": 607187786.3995525,
                      "circulating_supply": 539542585.1183889,
                      "fdv": 112906023053.9405,
                      "market_cap": 100327458684.87115,
                      "holder": 398897,
                      "is_scaled_ui_token": false,
                      "multiplier": null
                    },
                    "mSoLzYCxHdYgdzU16g5QSh3i5K3z3KZK7ytfqcJm7So": {
                      "address": "mSoLzYCxHdYgdzU16g5QSh3i5K3z3KZK7ytfqcJm7So",
                      "price": 244.42542119470204,
                      "liquidity": 41563027.3417533,
                      "total_supply": 3548170.779026702,
                      "circulating_supply": 3548170.779026702,
                      "fdv": 867263137.1343358,
                      "market_cap": 867263137.1343358,
                      "holder": 3498897,
                      "is_scaled_ui_token": false,
                      "multiplier": null
                    },
                    "EPjFWdd5AufqSSqeM2qN1xzybapC8G4wEGGkZwyTDt1v": {
                      "address": "EPjFWdd5AufqSSqeM2qN1xzybapC8G4wEGGkZwyTDt1v",
                      "price": 0.9999,
                      "liquidity": 1317751947.580185,
                      "total_supply": 8861727603.599123,
                      "circulating_supply": 8861727603.599123,
                      "fdv": 8860841430.838762,
                      "market_cap": 8860841430.838762,
                      "holder": 498897,
                      "is_scaled_ui_token": false,
                      "multiplier": null
                    }
                  }
                }
              },
              "TokenMarketDataMultiple": {
                "value": {
                  "data": {
                    "So11111111111111111111111111111111111111112": {
                      "address": "So11111111111111111111111111111111111111112",
                      "liquidity": 7889932801.542948,
                      "price": 128.00523659221298,
                      "total_supply": 583981435.5103763,
                      "circulating_supply": 583981433.2307372,
                      "fdv": 74790067044.55531,
                      "holder": 3498897,
                      "market_cap": 74790067336.507
                    },
                    "NeonTjSjsuo3rexg9o6vHuMXw62f9V7zvmu8M8Zut44": {
                      "address": "NeonTjSjsuo3rexg9o6vHuMXw62f9V7zvmu8M8Zut44",
                      "liquidity": 151316.56751659588,
                      "price": 0.1813036976418708,
                      "total_supply": 999999903.3262283,
                      "circulating_supply": 999999903.3262283,
                      "fdv": 181303680.11455852,
                      "holder": 498897,
                      "market_cap": 181303680.11455852
                    }
                  },
                  "success": true
                }
              }
            }
          }
        }
      },
      "DefiTokenTradeDataSingle": {
        "description": "JSON object containing trade data of a specific token",
        "content": {
          "application/json": {
            "schema": {
              "$ref": "#/components/schemas/DefiTokenTradeDataSingleResponse"
            },
            "examples": {
              "SolanaScaledUIAmount": {
                "value": {
                  "success": true,
                  "data": {
                    "address": "So11111111111111111111111111111111111111112",
                    "holder": 3498897,
                    "market": 189737,
                    "last_trade_unix_time": 1755058915,
                    "last_trade_human_time": "2025-08-13T04:21:55",
                    "price": 199.57308084999997,
                    "history_1m_price": 200.0657028658876,
                    "price_change_1m_percent": -0.246230117821773,
                    "history_5m_price": 199.04185542048768,
                    "price_change_5m_percent": 0.2668913171001369,
                    "history_30m_price": 198.08683911027157,
                    "price_change_30m_percent": 0.750298074523282,
                    "history_1h_price": 198.6762767605752,
                    "price_change_1h_percent": 0.4513896193582795,
                    "history_2h_price": 194.219974488669,
                    "price_change_2h_percent": 2.75620794175486,
                    "history_4h_price": 191.95599557869642,
                    "price_change_4h_percent": 3.968141369244581,
                    "history_6h_price": 192.36297986748752,
                    "price_change_6h_percent": 3.748174928190051,
                    "history_8h_price": 190.83016849547622,
                    "price_change_8h_percent": 4.581514769626696,
                    "history_12h_price": 181.29476421508093,
                    "price_change_12h_percent": 10.082098462167592,
                    "history_24h_price": 175.69158133703775,
                    "price_change_24h_percent": 13.592853642286466,
                    "unique_wallet_1m": 10535,
                    "unique_wallet_history_1m": 10512,
                    "unique_wallet_1m_change_percent": 0.21879756468797565,
                    "unique_wallet_5m": 30484,
                    "unique_wallet_history_5m": 31329,
                    "unique_wallet_5m_change_percent": -2.697181525104536,
                    "unique_wallet_30m": 84841,
                    "unique_wallet_history_30m": 91310,
                    "unique_wallet_30m_change_percent": -7.084656664111269,
                    "unique_wallet_1h": 141012,
                    "unique_wallet_history_1h": 139362,
                    "unique_wallet_1h_change_percent": 1.1839669350325053,
                    "unique_wallet_2h": 229096,
                    "unique_wallet_history_2h": 256234,
                    "unique_wallet_2h_change_percent": -10.59110032236159,
                    "unique_wallet_4h": 398071,
                    "unique_wallet_history_4h": 319789,
                    "unique_wallet_4h_change_percent": 24.47926601602932,
                    "unique_wallet_8h": 616389,
                    "unique_wallet_history_8h": 598174,
                    "unique_wallet_8h_change_percent": 3.0451005894605916,
                    "unique_wallet_24h": 1312446,
                    "unique_wallet_history_24h": 1595218,
                    "unique_wallet_24h_change_percent": -17.72622926772391,
                    "trade_1m": 25063,
                    "trade_history_1m": 25516,
                    "trade_1m_change_percent": -1.7753566389716258,
                    "sell_1m": 14783,
                    "sell_history_1m": 14281,
                    "sell_1m_change_percent": 3.5151600028009247,
                    "buy_1m": 10280,
                    "buy_history_1m": 11235,
                    "buy_1m_change_percent": -8.500222518914107,
                    "volume_1m": 28014.353663877002,
                    "volume_1m_usd": 5594914.331353994,
                    "volume_history_1m": 30288.275618175,
                    "volume_history_1m_usd": 6053381.114696328,
                    "volume_1m_change_percent": -7.507597933153688,
                    "volume_buy_1m": 13316.670472043998,
                    "volume_buy_1m_usd": 2659745.040809564,
                    "volume_buy_history_1m": 15438.603833983001,
                    "volume_buy_history_1m_usd": 3085880.865821625,
                    "volume_buy_1m_change_percent": -13.74433455743107,
                    "volume_sell_1m": 14697.683191833004,
                    "volume_sell_1m_usd": 2935169.29054443,
                    "volume_sell_history_1m": 14849.671784191998,
                    "volume_sell_history_1m_usd": 2967500.248874703,
                    "volume_sell_1m_change_percent": -1.0235148262387246,
                    "trade_5m": 125589,
                    "trade_history_5m": 133103,
                    "trade_5m_change_percent": -5.64525217312908,
                    "sell_5m": 72259,
                    "sell_history_5m": 75307,
                    "sell_5m_change_percent": -4.047432509594062,
                    "buy_5m": 53330,
                    "buy_history_5m": 57796,
                    "buy_5m_change_percent": -7.727178351443007,
                    "volume_5m": 138839.93120513,
                    "volume_5m_usd": 27706918.700082216,
                    "volume_history_5m": 168486.357245985,
                    "volume_history_5m_usd": 33501205.892243676,
                    "volume_5m_change_percent": -17.595742780272776,
                    "volume_buy_5m": 71016.083050991,
                    "volume_buy_5m_usd": 14172671.643556839,
                    "volume_buy_history_5m": 86636.89562773002,
                    "volume_buy_history_5m_usd": 17227812.75124113,
                    "volume_buy_5m_change_percent": -18.030208104247027,
                    "volume_sell_5m": 67823.84815413899,
                    "volume_sell_5m_usd": 13534247.056525378,
                    "volume_sell_history_5m": 81849.46161825501,
                    "volume_sell_history_5m_usd": 16273393.141002549,
                    "volume_sell_5m_change_percent": -17.13586526632432,
                    "trade_30m": 742916,
                    "trade_history_30m": 726567,
                    "trade_30m_change_percent": 2.2501710096935317,
                    "sell_30m": 429567,
                    "sell_history_30m": 423206,
                    "sell_30m_change_percent": 1.5030505238583574,
                    "buy_30m": 313349,
                    "buy_history_30m": 303361,
                    "buy_30m_change_percent": 3.2924469526405833,
                    "volume_30m": 999257.254695175,
                    "volume_30m_usd": 198262635.32251042,
                    "volume_history_30m": 1007682.2970747652,
                    "volume_history_30m_usd": 200156959.86425337,
                    "volume_30m_change_percent": -0.8360812136967729,
                    "volume_buy_30m": 496626.18523781083,
                    "volume_buy_30m_usd": 98550796.11048704,
                    "volume_buy_history_30m": 479675.0794320691,
                    "volume_buy_history_30m_usd": 95280522.80842383,
                    "volume_buy_30m_change_percent": 3.5338725175824632,
                    "volume_sell_30m": 502631.0694573641,
                    "volume_sell_30m_usd": 99711839.21202336,
                    "volume_sell_history_30m": 528007.2176426961,
                    "volume_sell_history_30m_usd": 104876437.05582954,
                    "volume_sell_30m_change_percent": -4.8060229741980764,
                    "trade_1h": 1365500,
                    "trade_history_1h": 1460948,
                    "trade_1h_change_percent": -6.533292081579906,
                    "sell_1h": 790911,
                    "sell_history_1h": 833994,
                    "sell_1h_change_percent": -5.165864502622321,
                    "buy_1h": 574589,
                    "buy_history_1h": 626954,
                    "buy_1h_change_percent": -8.35228740864561,
                    "volume_1h": 1869915.2789910787,
                    "volume_1h_usd": 371272087.7773213,
                    "volume_history_1h": 2215504.2512326725,
                    "volume_history_1h_usd": 436450282.08621264,
                    "volume_1h_change_percent": -15.598659855846062,
                    "volume_buy_1h": 911052.9765842077,
                    "volume_buy_1h_usd": 180903043.40620133,
                    "volume_buy_history_1h": 1115539.1923768108,
                    "volume_buy_history_1h_usd": 219688244.87947023,
                    "volume_buy_1h_change_percent": -18.330706548903663,
                    "volume_sell_1h": 958862.302406871,
                    "volume_sell_1h_usd": 190369044.37111995,
                    "volume_sell_history_1h": 1099965.058855862,
                    "volume_sell_history_1h_usd": 216762037.2067424,
                    "volume_sell_1h_change_percent": -12.827930788616154,
                    "trade_2h": 2721996,
                    "trade_history_2h": 2737323,
                    "trade_2h_change_percent": -0.5599266144331524,
                    "sell_2h": 1565257,
                    "sell_history_2h": 1520437,
                    "sell_2h_change_percent": 2.9478367074729173,
                    "buy_2h": 1156739,
                    "buy_history_2h": 1216886,
                    "buy_2h_change_percent": -4.942698001291822,
                    "volume_2h": 3881149.9454533085,
                    "volume_2h_usd": 767124563.4685572,
                    "volume_history_2h": 4109861.943241723,
                    "volume_history_2h_usd": 795392999.4275689,
                    "volume_2h_change_percent": -5.564955732016972,
                    "volume_buy_2h": 1946568.1169466476,
                    "volume_buy_2h_usd": 384689701.5502614,
                    "volume_buy_history_2h": 2184514.4664095147,
                    "volume_buy_history_2h_usd": 422774489.6633253,
                    "volume_buy_2h_change_percent": -10.892413537272542,
                    "volume_sell_2h": 1934581.8285066609,
                    "volume_sell_2h_usd": 382434861.91829586,
                    "volume_sell_history_2h": 1925347.4768322085,
                    "volume_sell_history_2h_usd": 372618509.7642436,
                    "volume_sell_2h_change_percent": 0.47962000550912426,
                    "trade_4h": 5720496,
                    "trade_history_4h": 4738200,
                    "trade_4h_change_percent": 20.73141699379511,
                    "sell_4h": 3227114,
                    "sell_history_4h": 2598002,
                    "sell_4h_change_percent": 24.215223852791492,
                    "buy_4h": 2493382,
                    "buy_history_4h": 2140198,
                    "buy_4h_change_percent": 16.502398376225003,
                    "volume_4h": 8359034.497538514,
                    "volume_4h_usd": 1632746418.2793252,
                    "volume_history_4h": 5827559.3867111625,
                    "volume_history_4h_usd": 1117139333.4616933,
                    "volume_4h_change_percent": 43.439713657830495,
                    "volume_buy_4h": 4308151.652644951,
                    "volume_buy_4h_usd": 841240490.7863214,
                    "volume_buy_history_4h": 2923792.0279110167,
                    "volume_buy_history_4h_usd": 560556194.860776,
                    "volume_buy_4h_change_percent": 47.34808808282536,
                    "volume_sell_4h": 4050882.844893563,
                    "volume_sell_4h_usd": 791505927.4930038,
                    "volume_sell_history_4h": 2903767.358800146,
                    "volume_sell_history_4h_usd": 556583138.6009173,
                    "volume_sell_4h_change_percent": 39.50438669327189,
                    "trade_8h": 9875698,
                    "trade_history_8h": 10453618,
                    "trade_8h_change_percent": -5.528420877824309,
                    "sell_8h": 5503762,
                    "sell_history_8h": 5773818,
                    "sell_8h_change_percent": -4.677251690302673,
                    "buy_8h": 4371936,
                    "buy_history_8h": 4679800,
                    "buy_8h_change_percent": -6.578571733834779,
                    "volume_8h": 13272186.797145639,
                    "volume_8h_usd": 2574392837.701419,
                    "volume_history_8h": 14155274.76815367,
                    "volume_history_8h_usd": 2581042172.9211245,
                    "volume_8h_change_percent": -6.238578801697224,
                    "volume_buy_8h": 6738594.148704853,
                    "volume_buy_8h_usd": 1307097533.3850877,
                    "volume_buy_history_8h": 7280589.108363739,
                    "volume_buy_history_8h_usd": 1327749998.8559382,
                    "volume_buy_8h_change_percent": -7.444383299096738,
                    "volume_sell_8h": 6533592.648440785,
                    "volume_sell_8h_usd": 1267295304.3163311,
                    "volume_sell_history_8h": 6874685.65978993,
                    "volume_sell_history_8h_usd": 1253292174.0651865,
                    "volume_sell_8h_change_percent": -4.961579746754095,
                    "trade_24h": 30786907,
                    "trade_history_24h": 33058246,
                    "trade_24h_change_percent": -6.870718428315888,
                    "sell_24h": 17145270,
                    "sell_history_24h": 18482135,
                    "sell_24h_change_percent": -7.233282302071703,
                    "buy_24h": 13641637,
                    "buy_history_24h": 14576111,
                    "buy_24h_change_percent": -6.410996732942004,
                    "volume_24h": 43327455.84829509,
                    "volume_24h_usd": 7930210206.693316,
                    "volume_history_24h": 49475082.60178679,
                    "volume_history_24h_usd": 8868558906.245562,
                    "volume_24h_change_percent": -12.425702859300893,
                    "volume_buy_24h": 21945096.556108054,
                    "volume_buy_24h_usd": 4018154448.1608233,
                    "volume_buy_history_24h": 24403487.274207145,
                    "volume_buy_history_24h_usd": 4374621039.616789,
                    "volume_buy_24h_change_percent": -10.073932018303982,
                    "volume_sell_24h": 21382359.29218704,
                    "volume_sell_24h_usd": 3912055758.532493,
                    "volume_sell_history_24h": 25071595.327579647,
                    "volume_sell_history_24h_usd": 4493937866.628773,
                    "volume_sell_24h_change_percent": -14.714803693940917,
                    "is_scaled_ui_token": false,
                    "multiplier": null
                  }
                }
              },
              "TokenTradeDataSingle": {
                "value": {
                  "data": {
                    "address": "So11111111111111111111111111111111111111112",
                    "holder": 1760227,
                    "market": 196569,
                    "last_trade_unix_time": 1746802135,
                    "last_trade_human_time": "2025-05-09T14:48:55",
                    "price": 167.80896431930182,
                    "history_1m_price": 167.97995938671679,
                    "price_change_1m_percent": -0.10179492127468956,
                    "history_5m_price": 168.74640381986768,
                    "price_change_5m_percent": -0.5555315428034545,
                    "history_30m_price": 171.3541322895,
                    "price_change_30m_percent": -2.068913029893365,
                    "history_1h_price": 173.01102576022566,
                    "price_change_1h_percent": -3.006780300888644,
                    "history_2h_price": 172.41071095217168,
                    "price_change_2h_percent": -2.669060760468895,
                    "history_4h_price": 170.00055611750162,
                    "price_change_4h_percent": -1.289167428772999,
                    "history_6h_price": 167.23388621052743,
                    "price_change_6h_percent": 0.34387654428507225,
                    "history_8h_price": 163.69124737148164,
                    "price_change_8h_percent": 2.515538865969675,
                    "history_12h_price": 162.88072815150505,
                    "price_change_12h_percent": 3.0256717438128855,
                    "history_24h_price": 157.75046659685455,
                    "price_change_24h_percent": 6.376207905712674,
                    "unique_wallet_1m": 8192,
                    "unique_wallet_history_1m": 8475,
                    "unique_wallet_1m_change_percent": -3.3392330383480826,
                    "unique_wallet_5m": 26830,
                    "unique_wallet_history_5m": 27305,
                    "unique_wallet_5m_change_percent": -1.7396081303790514,
                    "unique_wallet_30m": 99015,
                    "unique_wallet_history_30m": 98887,
                    "unique_wallet_30m_change_percent": 0.12944067470951692,
                    "unique_wallet_1h": 166549,
                    "unique_wallet_history_1h": 145186,
                    "unique_wallet_1h_change_percent": 14.714228644635158,
                    "unique_wallet_2h": 265703,
                    "unique_wallet_history_2h": 181521,
                    "unique_wallet_2h_change_percent": 46.375901410856045,
                    "unique_wallet_4h": 382828,
                    "unique_wallet_history_4h": 275988,
                    "unique_wallet_4h_change_percent": 38.71182805049495,
                    "unique_wallet_8h": 566015,
                    "unique_wallet_history_8h": 593685,
                    "unique_wallet_8h_change_percent": -4.660720752587651,
                    "unique_wallet_24h": 1666080,
                    "unique_wallet_history_24h": 1404422,
                    "unique_wallet_24h_change_percent": 18.63100976771939,
                    "trade_1m": 21298,
                    "trade_history_1m": 23504,
                    "trade_1m_change_percent": -9.385636487406398,
                    "sell_1m": 11841,
                    "sell_history_1m": 13283,
                    "sell_1m_change_percent": -10.855981329518933,
                    "buy_1m": 9457,
                    "buy_history_1m": 10221,
                    "buy_1m_change_percent": -7.474806770374719,
                    "volume_1m": 29410.160852206005,
                    "volume_1m_usd": 5010526.161090311,
                    "volume_history_1m": 34453.924082532,
                    "volume_history_1m_usd": 5804615.536877414,
                    "volume_1m_change_percent": -14.639154652584734,
                    "volume_buy_1m": 13048.077415550002,
                    "volume_buy_1m_usd": 2240126.102087374,
                    "volume_buy_history_1m": 14560.112629287,
                    "volume_buy_history_1m_usd": 2451792.1698234,
                    "volume_buy_1m_change_percent": -10.384776905472611,
                    "volume_sell_1m": 16362.083436656001,
                    "volume_sell_1m_usd": 2770400.0590029373,
                    "volume_sell_history_1m": 19893.811453245,
                    "volume_sell_history_1m_usd": 3352823.3670540145,
                    "volume_sell_1m_change_percent": -17.752897803869146,
                    "trade_5m": 118495,
                    "trade_history_5m": 127530,
                    "trade_5m_change_percent": -7.084607543323139,
                    "sell_5m": 67163,
                    "sell_history_5m": 71454,
                    "sell_5m_change_percent": -6.005262126682901,
                    "buy_5m": 51332,
                    "buy_history_5m": 56076,
                    "buy_5m_change_percent": -8.459947214494616,
                    "volume_5m": 157979.91831452603,
                    "volume_5m_usd": 26898374.50699684,
                    "volume_history_5m": 203644.55615971796,
                    "volume_history_5m_usd": 34760962.82863176,
                    "volume_5m_change_percent": -22.423696810916592,
                    "volume_buy_5m": 76418.93760057601,
                    "volume_buy_5m_usd": 13042984.023109829,
                    "volume_buy_history_5m": 101159.86561724,
                    "volume_buy_history_5m_usd": 17268939.602353815,
                    "volume_buy_5m_change_percent": -24.45725670522001,
                    "volume_sell_5m": 81560.98071395,
                    "volume_sell_5m_usd": 13855390.48388701,
                    "volume_sell_history_5m": 102484.69054247798,
                    "volume_sell_history_5m_usd": 17492023.226277944,
                    "volume_sell_5m_change_percent": -20.41642485113959,
                    "trade_30m": 803215,
                    "trade_history_30m": 797963,
                    "trade_30m_change_percent": 0.6581758803353038,
                    "sell_30m": 451062,
                    "sell_history_30m": 446408,
                    "sell_30m_change_percent": 1.042544040429383,
                    "buy_30m": 352153,
                    "buy_history_30m": 351555,
                    "buy_30m_change_percent": 0.17010140660778542,
                    "volume_30m": 1272891.865948019,
                    "volume_30m_usd": 218072556.17494345,
                    "volume_history_30m": 1014809.626640769,
                    "volume_history_30m_usd": 176963012.98413345,
                    "volume_30m_change_percent": 25.43159155491617,
                    "volume_buy_30m": 626378.2635002071,
                    "volume_buy_30m_usd": 107175212.0302041,
                    "volume_buy_history_30m": 515256.87016754213,
                    "volume_buy_history_30m_usd": 89409857.07236338,
                    "volume_buy_30m_change_percent": 21.5662128476875,
                    "volume_sell_30m": 646513.602447812,
                    "volume_sell_30m_usd": 110897344.14473933,
                    "volume_sell_history_30m": 499552.7564732268,
                    "volume_sell_history_30m_usd": 87553155.91177008,
                    "volume_sell_30m_change_percent": 29.418483647674844,
                    "trade_1h": 1480890,
                    "trade_history_1h": 1320699,
                    "trade_1h_change_percent": 12.129258824304403,
                    "sell_1h": 829781,
                    "sell_history_1h": 721102,
                    "sell_1h_change_percent": 15.071238188217478,
                    "buy_1h": 651109,
                    "buy_history_1h": 599597,
                    "buy_1h_change_percent": 8.591103691312666,
                    "volume_1h": 2127394.755906512,
                    "volume_1h_usd": 367404009.05549693,
                    "volume_history_1h": 1783376.1195459762,
                    "volume_history_1h_usd": 315517691.7376682,
                    "volume_1h_change_percent": 19.290301837624607,
                    "volume_buy_1h": 1056165.3743872764,
                    "volume_buy_1h_usd": 181874042.54138386,
                    "volume_buy_history_1h": 870775.027542904,
                    "volume_buy_history_1h_usd": 151538134.971131,
                    "volume_buy_1h_change_percent": 21.290269125826295,
                    "volume_sell_1h": 1071229.381519236,
                    "volume_sell_1h_usd": 185529966.51411304,
                    "volume_sell_history_1h": 912601.092003072,
                    "volume_sell_history_1h_usd": 163979556.76653722,
                    "volume_sell_1h_change_percent": 17.381996461125198,
                    "trade_2h": 2684004,
                    "trade_history_2h": 2273625,
                    "trade_2h_change_percent": 18.049546429160483,
                    "sell_2h": 1486918,
                    "sell_history_2h": 1214967,
                    "sell_2h_change_percent": 22.38340629827806,
                    "buy_2h": 1197086,
                    "buy_history_2h": 1058658,
                    "buy_2h_change_percent": 13.07579973891474,
                    "volume_2h": 3750042.2737956005,
                    "volume_2h_usd": 654641195.9178548,
                    "volume_history_2h": 4986668.953994334,
                    "volume_history_2h_usd": 876699150.961254,
                    "volume_2h_change_percent": -24.798651998107722,
                    "volume_buy_2h": 1840763.0535678302,
                    "volume_buy_2h_usd": 318406106.5448333,
                    "volume_buy_history_2h": 2552431.93778671,
                    "volume_buy_history_2h_usd": 447965734.71457183,
                    "volume_buy_2h_change_percent": -27.881992608037535,
                    "volume_sell_2h": 1909279.2202277703,
                    "volume_sell_2h_usd": 336235089.3730215,
                    "volume_sell_history_2h": 2434237.0162076233,
                    "volume_sell_history_2h_usd": 428733416.24668217,
                    "volume_sell_2h_change_percent": -21.565599096742922,
                    "trade_4h": 5106426,
                    "trade_history_4h": 4712834,
                    "trade_4h_change_percent": 8.35149296580359,
                    "sell_4h": 2780678,
                    "sell_history_4h": 2530641,
                    "sell_4h_change_percent": 9.880382085013244,
                    "buy_4h": 2325748,
                    "buy_history_4h": 2182193,
                    "buy_4h_change_percent": 6.578474039647272,
                    "volume_4h": 8958103.63250968,
                    "volume_4h_usd": 1568749541.8052683,
                    "volume_history_4h": 8303593.777521941,
                    "volume_history_4h_usd": 1399553943.2157688,
                    "volume_4h_change_percent": 7.88224800639352,
                    "volume_buy_4h": 4513247.631324249,
                    "volume_buy_4h_usd": 786402668.3600514,
                    "volume_buy_history_4h": 4305672.358770635,
                    "volume_buy_history_4h_usd": 725954295.8032504,
                    "volume_buy_4h_change_percent": 4.8209723187781455,
                    "volume_sell_4h": 4444856.001185431,
                    "volume_sell_4h_usd": 782346873.4452169,
                    "volume_sell_history_4h": 3997921.418751306,
                    "volume_sell_history_4h_usd": 673599647.4125183,
                    "volume_sell_4h_change_percent": 11.179173766094655,
                    "trade_8h": 9304476,
                    "trade_history_8h": 9379085,
                    "trade_8h_change_percent": -0.7954827149983181,
                    "sell_8h": 5037645,
                    "sell_history_8h": 5093401,
                    "sell_8h_change_percent": -1.0946713207933167,
                    "buy_8h": 4266831,
                    "buy_history_8h": 4285684,
                    "buy_8h_change_percent": -0.4399064420055235,
                    "volume_8h": 15927689.150175609,
                    "volume_8h_usd": 2736121445.11934,
                    "volume_history_8h": 9435031.81369001,
                    "volume_history_8h_usd": 1548030762.8614295,
                    "volume_8h_change_percent": 68.81436612714866,
                    "volume_buy_8h": 8058727.498173612,
                    "volume_buy_8h_usd": 1380215916.0956888,
                    "volume_buy_history_8h": 4725061.174831935,
                    "volume_buy_history_8h_usd": 774623834.5994598,
                    "volume_buy_8h_change_percent": 70.55287116912834,
                    "volume_sell_8h": 7868961.652001996,
                    "volume_sell_8h_usd": 1355905529.023651,
                    "volume_sell_history_8h": 4709970.638858074,
                    "volume_sell_history_8h_usd": 773406928.2619697,
                    "volume_sell_8h_change_percent": 67.0702909925106,
                    "trade_24h": 29319491,
                    "trade_history_24h": 24668611,
                    "trade_24h_change_percent": 18.853432809816493,
                    "sell_24h": 15990717,
                    "sell_history_24h": 13552421,
                    "sell_24h_change_percent": 17.991589842139643,
                    "buy_24h": 13328774,
                    "buy_history_24h": 11116190,
                    "buy_24h_change_percent": 19.904157809465293,
                    "volume_24h": 38764233.754803956,
                    "volume_24h_usd": 6454681445.618767,
                    "volume_history_24h": 27529677.595021047,
                    "volume_history_24h_usd": 4160810504.560139,
                    "volume_24h_change_percent": 40.808891135778374,
                    "volume_buy_24h": 19568048.045654222,
                    "volume_buy_24h_usd": 3252367661.8921504,
                    "volume_buy_history_24h": 13821503.465453008,
                    "volume_buy_history_24h_usd": 2090095440.02877,
                    "volume_buy_24h_change_percent": 41.5768414381602,
                    "volume_sell_24h": 19196185.70914973,
                    "volume_sell_24h_usd": 3202313783.7266164,
                    "volume_sell_history_24h": 13708174.129568037,
                    "volume_sell_history_24h_usd": 2070715064.5313692,
                    "volume_sell_24h_change_percent": 40.03459197198444
                  },
                  "success": true
                }
              }
            }
          }
        }
      },
      "DefiTokenTradeDataMultiple": {
        "description": "JSON object containing trade data of multiple tokens",
        "content": {
          "application/json": {
            "schema": {
              "$ref": "#/components/schemas/DefiTokenTradeDataMultipleResponse"
            },
            "examples": {
              "SolanaScaledUIAmount": {
                "value": {
                  "success": true,
                  "data": {
                    "So11111111111111111111111111111111111111112": {
                      "address": "So11111111111111111111111111111111111111112",
                      "holder": 3499140,
                      "market": 189737,
                      "last_trade_unix_time": 1755058812,
                      "last_trade_human_time": "2025-08-13T04:20:12",
                      "price": 199.98794169268422,
                      "history_1m_price": 199.7093584833286,
                      "price_change_1m_percent": 0.13949431887983973,
                      "history_5m_price": 199.08815924367772,
                      "price_change_5m_percent": 0.45195176469796405,
                      "history_30m_price": 198.22141301108715,
                      "price_change_30m_percent": 0.8911896322211458,
                      "history_1h_price": 198.54371624183344,
                      "price_change_1h_percent": 0.7274092971502866,
                      "history_2h_price": 194.28095313746698,
                      "price_change_2h_percent": 2.9374925658199516,
                      "history_4h_price": 192.49069567980555,
                      "price_change_4h_percent": 3.8948615081893583,
                      "history_6h_price": 192.60116257977168,
                      "price_change_6h_percent": 3.83527233894711,
                      "history_8h_price": 191.01937366628366,
                      "price_change_8h_percent": 4.6951091160360034,
                      "history_12h_price": 181.53883656902224,
                      "price_change_12h_percent": 10.162621658450208,
                      "history_24h_price": 175.7360146296086,
                      "price_change_24h_percent": 13.80020317075608,
                      "unique_wallet_1m": 9919,
                      "unique_wallet_history_1m": 10205,
                      "unique_wallet_1m_change_percent": -2.8025477707006368,
                      "unique_wallet_5m": 30876,
                      "unique_wallet_history_5m": 30852,
                      "unique_wallet_5m_change_percent": 0.07779074290159471,
                      "unique_wallet_30m": 84877,
                      "unique_wallet_history_30m": 91310,
                      "unique_wallet_30m_change_percent": -7.045230533347936,
                      "unique_wallet_1h": 140850,
                      "unique_wallet_history_1h": 139362,
                      "unique_wallet_1h_change_percent": 1.0677229086838593,
                      "unique_wallet_2h": 232838,
                      "unique_wallet_history_2h": 256234,
                      "unique_wallet_2h_change_percent": -9.130716454490816,
                      "unique_wallet_4h": 397846,
                      "unique_wallet_history_4h": 319789,
                      "unique_wallet_4h_change_percent": 24.408907123134316,
                      "unique_wallet_8h": 616497,
                      "unique_wallet_history_8h": 598174,
                      "unique_wallet_8h_change_percent": 3.0631555366833063,
                      "unique_wallet_24h": 1312571,
                      "unique_wallet_history_24h": 1595218,
                      "unique_wallet_24h_change_percent": -17.718393348119193,
                      "trade_1m": 22382,
                      "trade_history_1m": 24983,
                      "trade_1m_change_percent": -10.411079534083177,
                      "sell_1m": 12625,
                      "sell_history_1m": 14424,
                      "sell_1m_change_percent": -12.472268441486412,
                      "buy_1m": 9757,
                      "buy_history_1m": 10559,
                      "buy_1m_change_percent": -7.595416232597783,
                      "volume_1m": 19402.25827599,
                      "volume_1m_usd": 3877354.094558342,
                      "volume_history_1m": 22411.114589328998,
                      "volume_history_1m_usd": 4475845.358663695,
                      "volume_1m_change_percent": -13.425732581688099,
                      "volume_buy_1m": 10919.262528264999,
                      "volume_buy_1m_usd": 2182246.2382117016,
                      "volume_buy_history_1m": 11059.580722686998,
                      "volume_buy_history_1m_usd": 2208895.1658868995,
                      "volume_buy_1m_change_percent": -1.2687478661298504,
                      "volume_sell_1m": 8482.995747725001,
                      "volume_sell_1m_usd": 1695107.8563466403,
                      "volume_sell_history_1m": 11351.533866642,
                      "volume_sell_history_1m_usd": 2266950.192776796,
                      "volume_sell_1m_change_percent": -25.270048546889168,
                      "trade_5m": 120448,
                      "trade_history_5m": 132553,
                      "trade_5m_change_percent": -9.13219617813252,
                      "sell_5m": 68867,
                      "sell_history_5m": 74871,
                      "sell_5m_change_percent": -8.019126230449707,
                      "buy_5m": 51581,
                      "buy_history_5m": 57682,
                      "buy_5m_change_percent": -10.576956416213031,
                      "volume_5m": 134293.28506683398,
                      "volume_5m_usd": 26766762.067839466,
                      "volume_history_5m": 169555.78181202302,
                      "volume_history_5m_usd": 33700058.87877406,
                      "volume_5m_change_percent": -20.796988677320712,
                      "volume_buy_5m": 71284.36863666699,
                      "volume_buy_5m_usd": 14209360.95633716,
                      "volume_buy_history_5m": 86179.23586617,
                      "volume_buy_history_5m_usd": 17129947.159285817,
                      "volume_buy_5m_change_percent": -17.283591667758163,
                      "volume_sell_5m": 63008.916430166995,
                      "volume_sell_5m_usd": 12557401.111502308,
                      "volume_sell_history_5m": 83376.54594585301,
                      "volume_sell_history_5m_usd": 16570111.71948824,
                      "volume_sell_5m_change_percent": -24.428487993390018,
                      "trade_30m": 701197,
                      "trade_history_30m": 726567,
                      "trade_30m_change_percent": -3.491763319831481,
                      "sell_30m": 405193,
                      "sell_history_30m": 423206,
                      "sell_30m_change_percent": -4.256319617396729,
                      "buy_30m": 296004,
                      "buy_history_30m": 303361,
                      "buy_30m_change_percent": -2.42516341916067,
                      "volume_30m": 949543.568352686,
                      "volume_30m_usd": 188331559.77578738,
                      "volume_history_30m": 1007682.2970747652,
                      "volume_history_30m_usd": 200156959.86425337,
                      "volume_30m_change_percent": -5.769549479121749,
                      "volume_buy_30m": 473130.29251346184,
                      "volume_buy_30m_usd": 93856764.62199154,
                      "volume_buy_history_30m": 479675.0794320691,
                      "volume_buy_history_30m_usd": 95280522.80842383,
                      "volume_buy_30m_change_percent": -1.3644208755552232,
                      "volume_sell_30m": 476413.2758392241,
                      "volume_sell_30m_usd": 94474795.15379584,
                      "volume_sell_history_30m": 528007.2176426961,
                      "volume_sell_history_30m_usd": 104876437.05582954,
                      "volume_sell_30m_change_percent": -9.771446313520995,
                      "trade_1h": 1323781,
                      "trade_history_1h": 1460948,
                      "trade_1h_change_percent": -9.388903643387717,
                      "sell_1h": 766537,
                      "sell_history_1h": 833994,
                      "sell_1h_change_percent": -8.088427494682215,
                      "buy_1h": 557244,
                      "buy_history_1h": 626954,
                      "buy_1h_change_percent": -11.1188380646746,
                      "volume_1h": 1820201.59264859,
                      "volume_1h_usd": 361341012.2305983,
                      "volume_history_1h": 2215504.2512326725,
                      "volume_history_1h_usd": 436450282.08621264,
                      "volume_1h_change_percent": -17.842559244205567,
                      "volume_buy_1h": 887557.0838598588,
                      "volume_buy_1h_usd": 176209011.91770583,
                      "volume_buy_history_1h": 1115539.1923768108,
                      "volume_buy_history_1h_usd": 219688244.87947023,
                      "volume_buy_1h_change_percent": -20.436942966674668,
                      "volume_sell_1h": 932644.5087887311,
                      "volume_sell_1h_usd": 185132000.31289244,
                      "volume_sell_history_1h": 1099965.058855862,
                      "volume_sell_history_1h_usd": 216762037.2067424,
                      "volume_sell_1h_change_percent": -15.211442283554966,
                      "trade_2h": 2680277,
                      "trade_history_2h": 2737323,
                      "trade_2h_change_percent": -2.084006892865767,
                      "sell_2h": 1540883,
                      "sell_history_2h": 1520437,
                      "sell_2h_change_percent": 1.344744964769997,
                      "buy_2h": 1139394,
                      "buy_history_2h": 1216886,
                      "buy_2h_change_percent": -6.368057484431573,
                      "volume_2h": 3831436.2591108195,
                      "volume_2h_usd": 757193487.9218342,
                      "volume_history_2h": 4109861.943241723,
                      "volume_history_2h_usd": 795392999.4275689,
                      "volume_2h_change_percent": -6.774575106804935,
                      "volume_buy_2h": 1923072.2242222985,
                      "volume_buy_2h_usd": 379995670.0617659,
                      "volume_buy_history_2h": 2184514.4664095147,
                      "volume_buy_history_2h_usd": 422774489.6633253,
                      "volume_buy_2h_change_percent": -11.967979439244672,
                      "volume_sell_2h": 1908364.0348885208,
                      "volume_sell_2h_usd": 377197817.8600683,
                      "volume_sell_history_2h": 1925347.4768322085,
                      "volume_sell_history_2h_usd": 372618509.7642436,
                      "volume_sell_2h_change_percent": -0.8820974991813233,
                      "trade_4h": 5678777,
                      "trade_history_4h": 4738200,
                      "trade_4h_change_percent": 19.850934954202017,
                      "sell_4h": 3202740,
                      "sell_history_4h": 2598002,
                      "sell_4h_change_percent": 23.277041357166006,
                      "buy_4h": 2476037,
                      "buy_history_4h": 2140198,
                      "buy_4h_change_percent": 15.691959342079564,
                      "volume_4h": 8309320.811196025,
                      "volume_4h_usd": 1622815342.7326021,
                      "volume_history_4h": 5827559.3867111625,
                      "volume_history_4h_usd": 1117139333.4616933,
                      "volume_4h_change_percent": 42.586634640637584,
                      "volume_buy_4h": 4284655.759920602,
                      "volume_buy_4h_usd": 836546459.2978258,
                      "volume_buy_history_4h": 2923792.0279110167,
                      "volume_buy_history_4h_usd": 560556194.860776,
                      "volume_buy_4h_change_percent": 46.54447782258615,
                      "volume_sell_4h": 4024665.0512754233,
                      "volume_sell_4h_usd": 786268883.4347763,
                      "volume_sell_history_4h": 2903767.358800146,
                      "volume_sell_history_4h_usd": 556583138.6009173,
                      "volume_sell_4h_change_percent": 38.60149777764701,
                      "trade_8h": 9833979,
                      "trade_history_8h": 10453618,
                      "trade_8h_change_percent": -5.9275075863686615,
                      "sell_8h": 5479388,
                      "sell_history_8h": 5773818,
                      "sell_8h_change_percent": -5.099398699439435,
                      "buy_8h": 4354591,
                      "buy_history_8h": 4679800,
                      "buy_8h_change_percent": -6.949207231078251,
                      "volume_8h": 13222473.11080315,
                      "volume_8h_usd": 2564461762.1546955,
                      "volume_history_8h": 14155274.76815367,
                      "volume_history_8h_usd": 2581042172.9211245,
                      "volume_8h_change_percent": -6.589781354503434,
                      "volume_buy_8h": 6715098.255980505,
                      "volume_buy_8h_usd": 1302403501.8965921,
                      "volume_buy_history_8h": 7280589.108363739,
                      "volume_buy_history_8h_usd": 1327749998.8559382,
                      "volume_buy_8h_change_percent": -7.767102963324963,
                      "volume_sell_8h": 6507374.854822645,
                      "volume_sell_8h_usd": 1262058260.2581036,
                      "volume_sell_history_8h": 6874685.65978993,
                      "volume_sell_history_8h_usd": 1253292174.0651865,
                      "volume_sell_8h_change_percent": -5.342946909059243,
                      "trade_24h": 30745188,
                      "trade_history_24h": 33058246,
                      "trade_24h_change_percent": -6.996916896316882,
                      "sell_24h": 17120896,
                      "sell_history_24h": 18482135,
                      "sell_24h_change_percent": -7.365161005479075,
                      "buy_24h": 13624292,
                      "buy_history_24h": 14576111,
                      "buy_24h_change_percent": -6.5299928080953835,
                      "volume_24h": 43277742.1619526,
                      "volume_24h_usd": 7920279131.146593,
                      "volume_history_24h": 49475082.60178679,
                      "volume_history_24h_usd": 8868558906.245562,
                      "volume_24h_change_percent": -12.52618512982609,
                      "volume_buy_24h": 21921600.663383704,
                      "volume_buy_24h_usd": 4013460416.672328,
                      "volume_buy_history_24h": 24403487.274207145,
                      "volume_buy_history_24h_usd": 4374621039.616789,
                      "volume_buy_24h_change_percent": -10.170212900049862,
                      "volume_sell_24h": 21356141.4985689,
                      "volume_sell_24h_usd": 3906818714.4742656,
                      "volume_sell_history_24h": 25071595.327579647,
                      "volume_sell_history_24h_usd": 4493937866.628773,
                      "volume_sell_24h_change_percent": -14.819375394606885,
                      "is_scaled_ui_token": false,
                      "multiplier": null
                    },
                    "mSoLzYCxHdYgdzU16g5QSh3i5K3z3KZK7ytfqcJm7So": {
                      "address": "mSoLzYCxHdYgdzU16g5QSh3i5K3z3KZK7ytfqcJm7So",
                      "holder": 154578,
                      "market": 109,
                      "last_trade_unix_time": 1755058809,
                      "last_trade_human_time": "2025-08-13T04:20:09",
                      "price": 262.98670680518865,
                      "history_1m_price": 262.70278280753195,
                      "price_change_1m_percent": 0.10807803199584518,
                      "history_5m_price": 261.91755440219526,
                      "price_change_5m_percent": 0.4082018883513294,
                      "history_30m_price": 260.7109387939594,
                      "price_change_30m_percent": 0.8729085253410946,
                      "history_1h_price": 261.1699519292572,
                      "price_change_1h_percent": 0.695621706291677,
                      "history_2h_price": 255.60795345564043,
                      "price_change_2h_percent": 2.886746382415979,
                      "history_4h_price": 252.63997246560257,
                      "price_change_4h_percent": 4.095446274241028,
                      "history_6h_price": 252.45441235151782,
                      "price_change_6h_percent": 4.171958951149426,
                      "history_8h_price": 251.48576070904278,
                      "price_change_8h_percent": 4.573199716643966,
                      "history_12h_price": 239.02755642073214,
                      "price_change_12h_percent": 10.023593406228036,
                      "history_24h_price": 231.16561917408512,
                      "price_change_24h_percent": 13.765493218582755,
                      "unique_wallet_1m": 28,
                      "unique_wallet_history_1m": 43,
                      "unique_wallet_1m_change_percent": -34.883720930232556,
                      "unique_wallet_5m": 102,
                      "unique_wallet_history_5m": 73,
                      "unique_wallet_5m_change_percent": 39.726027397260275,
                      "unique_wallet_30m": 288,
                      "unique_wallet_history_30m": 301,
                      "unique_wallet_30m_change_percent": -4.318936877076412,
                      "unique_wallet_1h": 482,
                      "unique_wallet_history_1h": 623,
                      "unique_wallet_1h_change_percent": -22.63242375601926,
                      "unique_wallet_2h": 976,
                      "unique_wallet_history_2h": 982,
                      "unique_wallet_2h_change_percent": -0.6109979633401222,
                      "unique_wallet_4h": 1740,
                      "unique_wallet_history_4h": 1491,
                      "unique_wallet_4h_change_percent": 16.70020120724346,
                      "unique_wallet_8h": 2940,
                      "unique_wallet_history_8h": 3087,
                      "unique_wallet_8h_change_percent": -4.761904761904762,
                      "unique_wallet_24h": 6691,
                      "unique_wallet_history_24h": 5459,
                      "unique_wallet_24h_change_percent": 22.56823594064847,
                      "trade_1m": 73,
                      "trade_history_1m": 177,
                      "trade_1m_change_percent": -58.75706214689266,
                      "sell_1m": 36,
                      "sell_history_1m": 89,
                      "sell_1m_change_percent": -59.55056179775281,
                      "buy_1m": 37,
                      "buy_history_1m": 88,
                      "buy_1m_change_percent": -57.95454545454546,
                      "volume_1m": 12.059571704,
                      "volume_1m_usd": 3171.3705478902007,
                      "volume_history_1m": 37.398013155,
                      "volume_history_1m_usd": 9824.980892155985,
                      "volume_1m_change_percent": -67.75344279917267,
                      "volume_buy_1m": 6.029785852,
                      "volume_buy_1m_usd": 1585.7385240127205,
                      "volume_buy_history_1m": 18.503508619999998,
                      "volume_buy_history_1m_usd": 4861.455461890566,
                      "volume_buy_1m_change_percent": -67.41274330273477,
                      "volume_sell_1m": 6.029785852,
                      "volume_sell_1m_usd": 1585.6320238774802,
                      "volume_sell_history_1m": 18.894504535,
                      "volume_sell_history_1m_usd": 4963.525430265419,
                      "volume_sell_1m_change_percent": -68.08709198576506,
                      "trade_5m": 653,
                      "trade_history_5m": 406,
                      "trade_5m_change_percent": 60.83743842364532,
                      "sell_5m": 324,
                      "sell_history_5m": 204,
                      "sell_5m_change_percent": 58.82352941176471,
                      "buy_5m": 329,
                      "buy_history_5m": 202,
                      "buy_5m_change_percent": 62.87128712871287,
                      "volume_5m": 162.28248443299998,
                      "volume_5m_usd": 42558.97155905787,
                      "volume_history_5m": 106.457894647,
                      "volume_history_5m_usd": 27843.252679286117,
                      "volume_5m_change_percent": 52.43818691991493,
                      "volume_buy_5m": 80.69316228699999,
                      "volume_buy_5m_usd": 21163.129320319964,
                      "volume_buy_history_5m": 52.24340721,
                      "volume_buy_history_5m_usd": 13664.499121192126,
                      "volume_buy_5m_change_percent": 54.456163172210516,
                      "volume_sell_5m": 81.58932214599999,
                      "volume_sell_5m_usd": 21395.84223873791,
                      "volume_sell_history_5m": 54.214487437,
                      "volume_sell_history_5m_usd": 14178.753558093993,
                      "volume_sell_5m_change_percent": 50.493578383104584,
                      "trade_30m": 2750,
                      "trade_history_30m": 3048,
                      "trade_30m_change_percent": -9.776902887139109,
                      "sell_30m": 1382,
                      "sell_history_30m": 1557,
                      "sell_30m_change_percent": -11.23956326268465,
                      "buy_30m": 1368,
                      "buy_history_30m": 1491,
                      "buy_30m_change_percent": -8.249496981891348,
                      "volume_30m": 799.0710690200001,
                      "volume_30m_usd": 208527.97926690662,
                      "volume_history_30m": 2481.054935338,
                      "volume_history_30m_usd": 648754.0741432161,
                      "volume_30m_change_percent": -67.79309246084304,
                      "volume_buy_30m": 373.422228748,
                      "volume_buy_30m_usd": 97472.73322911118,
                      "volume_buy_history_30m": 522.7496909670001,
                      "volume_buy_history_30m_usd": 136616.53562110744,
                      "volume_buy_30m_change_percent": -28.565767670329773,
                      "volume_sell_30m": 425.64884027200003,
                      "volume_sell_30m_usd": 111055.24603779544,
                      "volume_sell_history_30m": 1958.305244371,
                      "volume_sell_history_30m_usd": 512137.5385221087,
                      "volume_sell_30m_change_percent": -78.26442831139347,
                      "trade_1h": 5309,
                      "trade_history_1h": 7560,
                      "trade_1h_change_percent": -29.775132275132275,
                      "sell_1h": 2687,
                      "sell_history_1h": 3808,
                      "sell_1h_change_percent": -29.438025210084035,
                      "buy_1h": 2622,
                      "buy_history_1h": 3752,
                      "buy_1h_change_percent": -30.11727078891258,
                      "volume_1h": 3138.6927878439997,
                      "volume_1h_usd": 820410.1239532583,
                      "volume_history_1h": 3282.0023030169996,
                      "volume_history_1h_usd": 851813.8301435173,
                      "volume_1h_change_percent": -4.3665269534168765,
                      "volume_buy_1h": 824.397139262,
                      "volume_buy_1h_usd": 215375.7401405987,
                      "volume_buy_history_1h": 1399.4322926629998,
                      "volume_buy_history_1h_usd": 363318.59453095926,
                      "volume_buy_1h_change_percent": -41.0906019830911,
                      "volume_sell_1h": 2314.2956485819996,
                      "volume_sell_1h_usd": 605034.3838126595,
                      "volume_sell_history_1h": 1882.5700103539998,
                      "volume_sell_history_1h_usd": 488495.235612558,
                      "volume_sell_1h_change_percent": 22.93277996852918,
                      "trade_2h": 12547,
                      "trade_history_2h": 12272,
                      "trade_2h_change_percent": 2.2408735332464147,
                      "sell_2h": 6334,
                      "sell_history_2h": 6048,
                      "sell_2h_change_percent": 4.728835978835979,
                      "buy_2h": 6213,
                      "buy_history_2h": 6224,
                      "buy_2h_change_percent": -0.17673521850899743,
                      "volume_2h": 6316.872997122,
                      "volume_2h_usd": 1645085.3454827392,
                      "volume_history_2h": 7986.443651562,
                      "volume_history_2h_usd": 2035706.3497173262,
                      "volume_2h_change_percent": -20.90505771130637,
                      "volume_buy_2h": 2172.1645888589997,
                      "volume_buy_2h_usd": 565188.3951737988,
                      "volume_buy_history_2h": 4509.220244333001,
                      "volume_buy_history_2h_usd": 1149040.4230995753,
                      "volume_buy_2h_change_percent": -51.8283767223638,
                      "volume_sell_2h": 4144.708408263,
                      "volume_sell_2h_usd": 1079896.9503089404,
                      "volume_sell_history_2h": 3477.223407229,
                      "volume_sell_history_2h_usd": 886665.9266177509,
                      "volume_sell_2h_change_percent": 19.195919354687625,
                      "trade_4h": 25318,
                      "trade_history_4h": 16850,
                      "trade_4h_change_percent": 50.255192878338285,
                      "sell_4h": 12628,
                      "sell_history_4h": 8470,
                      "sell_4h_change_percent": 49.09090909090909,
                      "buy_4h": 12690,
                      "buy_history_4h": 8380,
                      "buy_4h_change_percent": 51.43198090692124,
                      "volume_4h": 14337.506949092993,
                      "volume_4h_usd": 3688905.157495865,
                      "volume_history_4h": 9402.798090806,
                      "volume_history_4h_usd": 2372860.9187707277,
                      "volume_4h_change_percent": 52.48128068507737,
                      "volume_buy_4h": 6744.683454876996,
                      "volume_buy_4h_usd": 1730053.0971775858,
                      "volume_buy_history_4h": 4024.800055123,
                      "volume_buy_history_4h_usd": 1016578.6286089938,
                      "volume_buy_4h_change_percent": 67.57809984354301,
                      "volume_sell_4h": 7592.823494215997,
                      "volume_sell_4h_usd": 1958852.0603182793,
                      "volume_sell_history_4h": 5377.998035683,
                      "volume_sell_history_4h_usd": 1356282.290161734,
                      "volume_sell_4h_change_percent": 41.18308418555821,
                      "trade_8h": 40860,
                      "trade_history_8h": 39077,
                      "trade_8h_change_percent": 4.562786293727768,
                      "sell_8h": 20461,
                      "sell_history_8h": 19558,
                      "sell_8h_change_percent": 4.617036506800287,
                      "buy_8h": 20399,
                      "buy_history_8h": 19519,
                      "buy_8h_change_percent": 4.508427685844562,
                      "volume_8h": 22711.31062530999,
                      "volume_8h_usd": 5801740.492862853,
                      "volume_history_8h": 31386.551458990005,
                      "volume_history_8h_usd": 7548528.231382184,
                      "volume_8h_change_percent": -27.639993661027635,
                      "volume_buy_8h": 9883.368016022996,
                      "volume_buy_8h_usd": 2522686.871093817,
                      "volume_buy_history_8h": 12230.382385765002,
                      "volume_buy_history_8h_usd": 2929602.9775913735,
                      "volume_buy_8h_change_percent": -19.190032622967756,
                      "volume_sell_8h": 12827.942609286996,
                      "volume_sell_8h_usd": 3279053.621769036,
                      "volume_sell_history_8h": 19156.169073225003,
                      "volume_sell_history_8h_usd": 4618925.253790811,
                      "volume_sell_8h_change_percent": -33.03492697181874,
                      "trade_24h": 93721,
                      "trade_history_24h": 65222,
                      "trade_24h_change_percent": 43.6953788598939,
                      "sell_24h": 46575,
                      "sell_history_24h": 32556,
                      "sell_24h_change_percent": 43.06118687799484,
                      "buy_24h": 47146,
                      "buy_history_24h": 32666,
                      "buy_24h_change_percent": 44.32743525378069,
                      "volume_24h": 78243.334932192,
                      "volume_24h_usd": 18897097.90192979,
                      "volume_history_24h": 50370.62079124302,
                      "volume_history_24h_usd": 11776721.001745548,
                      "volume_24h_change_percent": 55.33526032260987,
                      "volume_buy_24h": 42989.095074099,
                      "volume_buy_24h_usd": 10271722.313242288,
                      "volume_buy_history_24h": 29127.373655922,
                      "volume_buy_history_24h_usd": 6775170.992515063,
                      "volume_buy_24h_change_percent": 47.590014746690755,
                      "volume_sell_24h": 35254.23985809299,
                      "volume_sell_24h_usd": 8625375.5886875,
                      "volume_sell_history_24h": 21243.247135321017,
                      "volume_sell_history_24h_usd": 5001550.009230484,
                      "volume_sell_24h_change_percent": 65.95504271790907,
                      "is_scaled_ui_token": false,
                      "multiplier": null
                    },
                    "EPjFWdd5AufqSSqeM2qN1xzybapC8G4wEGGkZwyTDt1v": {
                      "address": "EPjFWdd5AufqSSqeM2qN1xzybapC8G4wEGGkZwyTDt1v",
                      "holder": 5154436,
                      "market": 13924,
                      "last_trade_unix_time": 1755058812,
                      "last_trade_human_time": "2025-08-13T04:20:12",
                      "price": 0.99982817,
                      "history_1m_price": 0.99983,
                      "price_change_1m_percent": -0.00018303111528764472,
                      "history_5m_price": 0.99985096,
                      "price_change_5m_percent": -0.002279339712784718,
                      "history_30m_price": 0.99981573,
                      "price_change_30m_percent": 0.0012442292741285887,
                      "history_1h_price": 0.9998087,
                      "price_change_1h_percent": 0.0019473725323675833,
                      "history_2h_price": 0.99977426,
                      "price_change_2h_percent": 0.005392217239118594,
                      "history_4h_price": 0.99982515,
                      "price_change_4h_percent": 0.0003020528139309876,
                      "history_6h_price": 0.99979,
                      "price_change_6h_percent": 0.0038178017383710128,
                      "history_8h_price": 0.99989717,
                      "price_change_8h_percent": -0.006900709599966739,
                      "history_12h_price": 0.99987,
                      "price_change_12h_percent": -0.0041835438607039374,
                      "history_24h_price": 0.99985,
                      "price_change_24h_percent": -0.0021833274991249147,
                      "unique_wallet_1m": 788,
                      "unique_wallet_history_1m": 867,
                      "unique_wallet_1m_change_percent": -9.111880046136102,
                      "unique_wallet_5m": 2834,
                      "unique_wallet_history_5m": 2470,
                      "unique_wallet_5m_change_percent": 14.736842105263158,
                      "unique_wallet_30m": 11107,
                      "unique_wallet_history_30m": 11401,
                      "unique_wallet_30m_change_percent": -2.5787211648101045,
                      "unique_wallet_1h": 18673,
                      "unique_wallet_history_1h": 20161,
                      "unique_wallet_1h_change_percent": -7.380586280442438,
                      "unique_wallet_2h": 32553,
                      "unique_wallet_history_2h": 28401,
                      "unique_wallet_2h_change_percent": 14.619203549170804,
                      "unique_wallet_4h": 50145,
                      "unique_wallet_history_4h": 45190,
                      "unique_wallet_4h_change_percent": 10.964815224607214,
                      "unique_wallet_8h": 79361,
                      "unique_wallet_history_8h": 84308,
                      "unique_wallet_8h_change_percent": -5.867770555581914,
                      "unique_wallet_24h": 174611,
                      "unique_wallet_history_24h": 189227,
                      "unique_wallet_24h_change_percent": -7.724056292178178,
                      "trade_1m": 3336,
                      "trade_history_1m": 4958,
                      "trade_1m_change_percent": -32.7148043565954,
                      "sell_1m": 1990,
                      "sell_history_1m": 2938,
                      "sell_1m_change_percent": -32.26684819605173,
                      "buy_1m": 1346,
                      "buy_history_1m": 2020,
                      "buy_1m_change_percent": -33.366336633663366,
                      "volume_1m": 1308404.009448,
                      "volume_1m_usd": 1308333.7870999281,
                      "volume_history_1m": 2041033.7818900002,
                      "volume_history_1m_usd": 2041005.2145372764,
                      "volume_1m_change_percent": -35.89503412156089,
                      "volume_buy_1m": 413612.422125,
                      "volume_buy_1m_usd": 413584.4634477553,
                      "volume_buy_history_1m": 442307.3128550001,
                      "volume_buy_history_1m_usd": 442295.99373712466,
                      "volume_buy_1m_change_percent": -6.487546078490237,
                      "volume_sell_1m": 894791.587323,
                      "volume_sell_1m_usd": 894749.3236521728,
                      "volume_sell_history_1m": 1598726.469035,
                      "volume_sell_history_1m_usd": 1598709.2208001518,
                      "volume_sell_1m_change_percent": -44.03097686478532,
                      "trade_5m": 19059,
                      "trade_history_5m": 14490,
                      "trade_5m_change_percent": 31.53209109730849,
                      "sell_5m": 11062,
                      "sell_history_5m": 7934,
                      "sell_5m_change_percent": 39.425258381648604,
                      "buy_5m": 7997,
                      "buy_history_5m": 6556,
                      "buy_5m_change_percent": 21.97986577181208,
                      "volume_5m": 8100982.060734,
                      "volume_5m_usd": 8100710.993758566,
                      "volume_history_5m": 5912049.999242,
                      "volume_history_5m_usd": 5911844.975958601,
                      "volume_5m_change_percent": 37.02492471769773,
                      "volume_buy_5m": 2254139.6831360003,
                      "volume_buy_5m_usd": 2254073.993651012,
                      "volume_buy_history_5m": 2948171.02885,
                      "volume_buy_history_5m_usd": 2948025.698099201,
                      "volume_buy_5m_change_percent": -23.541081535718163,
                      "volume_sell_5m": 5846842.377598,
                      "volume_sell_5m_usd": 5846637.000107554,
                      "volume_sell_history_5m": 2963878.970392,
                      "volume_sell_history_5m_usd": 2963819.2778594,
                      "volume_sell_5m_change_percent": 97.26994374620843,
                      "trade_30m": 92499,
                      "trade_history_30m": 107437,
                      "trade_30m_change_percent": -13.903962322105048,
                      "sell_30m": 49070,
                      "sell_history_30m": 53177,
                      "sell_30m_change_percent": -7.723263817063768,
                      "buy_30m": 43429,
                      "buy_history_30m": 54260,
                      "buy_30m_change_percent": -19.961297456690012,
                      "volume_30m": 46140187.79487201,
                      "volume_30m_usd": 46138347.92390235,
                      "volume_history_30m": 57457497.16842799,
                      "volume_history_30m_usd": 57455175.09102805,
                      "volume_30m_change_percent": -19.696836672820947,
                      "volume_buy_30m": 20421163.090902995,
                      "volume_buy_30m_usd": 20420285.68942718,
                      "volume_buy_history_30m": 27067094.84286599,
                      "volume_buy_history_30m_usd": 27066254.220179565,
                      "volume_buy_30m_change_percent": -24.553546623843328,
                      "volume_sell_30m": 25719024.703969013,
                      "volume_sell_30m_usd": 25718062.234475173,
                      "volume_sell_history_30m": 30390402.325561997,
                      "volume_sell_history_30m_usd": 30388920.87084848,
                      "volume_sell_30m_change_percent": -15.371226650934434,
                      "trade_1h": 183426,
                      "trade_history_1h": 243809,
                      "trade_1h_change_percent": -24.76651805306613,
                      "sell_1h": 94226,
                      "sell_history_1h": 125768,
                      "sell_1h_change_percent": -25.07951148145792,
                      "buy_1h": 89200,
                      "buy_history_1h": 118041,
                      "buy_1h_change_percent": -24.433035979024236,
                      "volume_1h": 92749755.27730599,
                      "volume_1h_usd": 92746037.12634899,
                      "volume_history_1h": 147967895.39918795,
                      "volume_history_1h_usd": 147961003.80891407,
                      "volume_1h_change_percent": -37.31764919201858,
                      "volume_buy_1h": 42212679.94161198,
                      "volume_buy_1h_usd": 42211074.238075525,
                      "volume_buy_history_1h": 67930255.24647099,
                      "volume_buy_history_1h_usd": 67926771.65416785,
                      "volume_buy_1h_change_percent": -37.858793863718105,
                      "volume_sell_1h": 50537075.33569401,
                      "volume_sell_1h_usd": 50534962.88827346,
                      "volume_sell_history_1h": 80037640.15271696,
                      "volume_sell_history_1h_usd": 80034232.15474622,
                      "volume_sell_1h_change_percent": -36.858364090612845,
                      "trade_2h": 412431,
                      "trade_history_2h": 386632,
                      "trade_2h_change_percent": 6.672753419272073,
                      "sell_2h": 212386,
                      "sell_history_2h": 198632,
                      "sell_2h_change_percent": 6.9243626404607515,
                      "buy_2h": 200045,
                      "buy_history_2h": 188000,
                      "buy_2h_change_percent": 6.406914893617022,
                      "volume_2h": 233556433.41227996,
                      "volume_2h_usd": 233546096.14317834,
                      "volume_history_2h": 200676703.92325795,
                      "volume_history_2h_usd": 200670380.0438611,
                      "volume_2h_change_percent": 16.38442771194596,
                      "volume_buy_2h": 107292908.10336798,
                      "volume_buy_2h_usd": 107287917.68279324,
                      "volume_buy_history_2h": 95716891.60262197,
                      "volume_buy_history_2h_usd": 95714426.14595845,
                      "volume_buy_2h_change_percent": 12.094016329745616,
                      "volume_sell_2h": 126263525.30891198,
                      "volume_sell_2h_usd": 126258178.46038508,
                      "volume_sell_history_2h": 104959812.32063597,
                      "volume_sell_history_2h_usd": 104955953.89790262,
                      "volume_sell_2h_change_percent": 20.297018942065616,
                      "trade_4h": 830719,
                      "trade_history_4h": 739363,
                      "trade_4h_change_percent": 12.356041619610394,
                      "sell_4h": 427554,
                      "sell_history_4h": 390782,
                      "sell_4h_change_percent": 9.409849993090777,
                      "buy_4h": 403165,
                      "buy_history_4h": 348581,
                      "buy_4h_change_percent": 15.658914283911058,
                      "volume_4h": 444764661.72954196,
                      "volume_4h_usd": 444747744.9248905,
                      "volume_history_4h": 403490702.36459595,
                      "volume_history_4h_usd": 403476786.22676635,
                      "volume_4h_change_percent": 10.229221918390248,
                      "volume_buy_4h": 209077860.69843987,
                      "volume_buy_4h_usd": 209070141.66263077,
                      "volume_buy_history_4h": 206645655.16793695,
                      "volume_buy_history_4h_usd": 206636627.6737574,
                      "volume_buy_4h_change_percent": 1.1769933069854814,
                      "volume_sell_4h": 235686801.0311021,
                      "volume_sell_4h_usd": 235677603.26225972,
                      "volume_sell_history_4h": 196845047.196659,
                      "volume_sell_history_4h_usd": 196840158.5530089,
                      "volume_sell_4h_change_percent": 19.732146877761192,
                      "trade_8h": 1502472,
                      "trade_history_8h": 1579030,
                      "trade_8h_change_percent": -4.848419599374299,
                      "sell_8h": 782357,
                      "sell_history_8h": 845060,
                      "sell_8h_change_percent": -7.419946512673656,
                      "buy_8h": 720115,
                      "buy_history_8h": 733970,
                      "buy_8h_change_percent": -1.8876793329427635,
                      "volume_8h": 821709120.2497389,
                      "volume_8h_usd": 821679006.179775,
                      "volume_history_8h": 946874319.4912045,
                      "volume_history_8h_usd": 946849383.5006773,
                      "volume_8h_change_percent": -13.218776416781703,
                      "volume_buy_8h": 401974198.85122186,
                      "volume_buy_8h_usd": 401957962.7464045,
                      "volume_buy_history_8h": 435401537.64981294,
                      "volume_buy_history_8h_usd": 435390296.48382026,
                      "volume_buy_8h_change_percent": -7.677358922300407,
                      "volume_sell_8h": 419734921.39851713,
                      "volume_sell_8h_usd": 419721043.4333705,
                      "volume_sell_history_8h": 511472781.84139156,
                      "volume_sell_history_8h_usd": 511459087.01685715,
                      "volume_sell_8h_change_percent": -17.936019999461568,
                      "trade_24h": 3866559,
                      "trade_history_24h": 3269920,
                      "trade_24h_change_percent": 18.246287370944856,
                      "sell_24h": 2033949,
                      "sell_history_24h": 1655266,
                      "sell_24h_change_percent": 22.877471052990877,
                      "buy_24h": 1832610,
                      "buy_history_24h": 1614654,
                      "buy_24h_change_percent": 13.498619518485075,
                      "volume_24h": 2045204750.9809194,
                      "volume_24h_usd": 2045144320.587021,
                      "volume_history_24h": 1543163627.203192,
                      "volume_history_24h_usd": 1543123874.7516944,
                      "volume_24h_change_percent": 32.53323982808094,
                      "volume_buy_24h": 973697087.8169838,
                      "volume_buy_24h_usd": 973667513.1963601,
                      "volume_buy_history_24h": 807894931.7944231,
                      "volume_buy_history_24h_usd": 807872635.6768489,
                      "volume_buy_24h_change_percent": 20.522737486952167,
                      "volume_sell_24h": 1071507663.1639357,
                      "volume_sell_24h_usd": 1071476807.390661,
                      "volume_sell_history_24h": 735268695.4087689,
                      "volume_sell_history_24h_usd": 735251239.0748456,
                      "volume_sell_24h_change_percent": 45.73008069767426,
                      "is_scaled_ui_token": false,
                      "multiplier": null
                    }
                  }
                }
              },
              "TokenTradeDataMultiple": {
                "value": {
                  "data": {
                    "So11111111111111111111111111111111111111112": {
                      "address": "So11111111111111111111111111111111111111112",
                      "holder": 1760230,
                      "market": 196569,
                      "last_trade_unix_time": 1746802179,
                      "last_trade_human_time": "2025-05-09T14:49:39",
                      "price": 168.6163239777922,
                      "history_1m_price": 167.8048566230487,
                      "price_change_1m_percent": 0.4835779911700451,
                      "history_5m_price": 169.09729500392336,
                      "price_change_5m_percent": -0.28443448851148007,
                      "history_30m_price": 171.0111537830427,
                      "price_change_30m_percent": -1.4003939230120266,
                      "history_1h_price": 173.19810480366027,
                      "price_change_1h_percent": -2.6453989384364425,
                      "history_2h_price": 172.2847660639025,
                      "price_change_2h_percent": -2.1292898785662997,
                      "history_4h_price": 170.20060302676234,
                      "price_change_4h_percent": -0.9308304558245422,
                      "history_6h_price": 166.77262847108634,
                      "price_change_6h_percent": 1.105514450187799,
                      "history_8h_price": 163.78096525226772,
                      "price_change_8h_percent": 2.9523325363705752,
                      "history_12h_price": 162.85944689196924,
                      "price_change_12h_percent": 3.5348745164544955,
                      "history_24h_price": 157.54129242137248,
                      "price_change_24h_percent": 7.029923003803708,
                      "unique_wallet_1m": 7701,
                      "unique_wallet_history_1m": 8889,
                      "unique_wallet_1m_change_percent": -13.364832939588256,
                      "unique_wallet_5m": 26522,
                      "unique_wallet_history_5m": 27287,
                      "unique_wallet_5m_change_percent": -2.8035328178253383,
                      "unique_wallet_30m": 98738,
                      "unique_wallet_history_30m": 98887,
                      "unique_wallet_30m_change_percent": -0.15067703540404703,
                      "unique_wallet_1h": 166368,
                      "unique_wallet_history_1h": 145186,
                      "unique_wallet_1h_change_percent": 14.5895609769537,
                      "unique_wallet_2h": 266222,
                      "unique_wallet_history_2h": 181521,
                      "unique_wallet_2h_change_percent": 46.661818742735,
                      "unique_wallet_4h": 383247,
                      "unique_wallet_history_4h": 275988,
                      "unique_wallet_4h_change_percent": 38.86364624548894,
                      "unique_wallet_8h": 566554,
                      "unique_wallet_history_8h": 593685,
                      "unique_wallet_8h_change_percent": -4.569931866225355,
                      "unique_wallet_24h": 1666417,
                      "unique_wallet_history_24h": 1404422,
                      "unique_wallet_24h_change_percent": 18.65500540435852,
                      "trade_1m": 21329,
                      "trade_history_1m": 24598,
                      "trade_1m_change_percent": -13.289698349459306,
                      "sell_1m": 11442,
                      "sell_history_1m": 13713,
                      "sell_1m_change_percent": -16.560927586961277,
                      "buy_1m": 9887,
                      "buy_history_1m": 10885,
                      "buy_1m_change_percent": -9.168580615525954,
                      "volume_1m": 32886.042657262,
                      "volume_1m_usd": 5569412.577064864,
                      "volume_history_1m": 36817.037119158005,
                      "volume_history_1m_usd": 6259558.328708703,
                      "volume_1m_change_percent": -10.677107039258427,
                      "volume_buy_1m": 21175.290352262997,
                      "volume_buy_1m_usd": 3572722.6990984404,
                      "volume_buy_history_1m": 16240.604788685003,
                      "volume_buy_history_1m_usd": 2777543.101086156,
                      "volume_buy_1m_change_percent": 30.384863296569105,
                      "volume_sell_1m": 11710.752304999001,
                      "volume_sell_1m_usd": 1996689.877966424,
                      "volume_sell_history_1m": 20576.432330473006,
                      "volume_sell_history_1m_usd": 3482015.227622547,
                      "volume_sell_1m_change_percent": -43.08657537460578,
                      "trade_5m": 113382,
                      "trade_history_5m": 126445,
                      "trade_5m_change_percent": -10.330973941239275,
                      "sell_5m": 63801,
                      "sell_history_5m": 71439,
                      "sell_5m_change_percent": -10.691639020702977,
                      "buy_5m": 49581,
                      "buy_history_5m": 55006,
                      "buy_5m_change_percent": -9.862560447951132,
                      "volume_5m": 148139.64909717703,
                      "volume_5m_usd": 25242382.01732124,
                      "volume_history_5m": 190968.88301959998,
                      "volume_history_5m_usd": 32599167.024338104,
                      "volume_5m_change_percent": -22.42733645670808,
                      "volume_buy_5m": 76037.241803054,
                      "volume_buy_5m_usd": 12976982.958676936,
                      "volume_buy_history_5m": 95496.301480897,
                      "volume_buy_history_5m_usd": 16337365.895444943,
                      "volume_buy_5m_change_percent": -20.37676787067568,
                      "volume_sell_5m": 72102.40729412301,
                      "volume_sell_5m_usd": 12265399.058644304,
                      "volume_sell_history_5m": 95472.58153870297,
                      "volume_sell_history_5m_usd": 16261801.12889316,
                      "volume_sell_5m_change_percent": -24.478414501765712,
                      "trade_30m": 819946,
                      "trade_history_30m": 797963,
                      "trade_30m_change_percent": 2.7548896377400958,
                      "sell_30m": 460007,
                      "sell_history_30m": 446408,
                      "sell_30m_change_percent": 3.046316374258526,
                      "buy_30m": 359939,
                      "buy_history_30m": 351555,
                      "buy_30m_change_percent": 2.38483309866166,
                      "volume_30m": 1300593.600139237,
                      "volume_30m_usd": 222767664.984795,
                      "volume_history_30m": 1014809.626640769,
                      "volume_history_30m_usd": 176963012.98413345,
                      "volume_30m_change_percent": 28.16133844181913,
                      "volume_buy_30m": 645088.0375125521,
                      "volume_buy_30m_usd": 110334385.91274282,
                      "volume_buy_history_30m": 515256.87016754213,
                      "volume_buy_history_30m_usd": 89409857.07236338,
                      "volume_buy_30m_change_percent": 25.197367538795508,
                      "volume_sell_30m": 655505.562626685,
                      "volume_sell_30m_usd": 112433279.07205218,
                      "volume_sell_history_30m": 499552.7564732268,
                      "volume_sell_history_30m_usd": 87553155.91177008,
                      "volume_sell_30m_change_percent": 31.2184857620371,
                      "trade_1h": 1497621,
                      "trade_history_1h": 1320699,
                      "trade_1h_change_percent": 13.396087980682955,
                      "sell_1h": 838726,
                      "sell_history_1h": 721102,
                      "sell_1h_change_percent": 16.31170070253584,
                      "buy_1h": 658895,
                      "buy_history_1h": 599597,
                      "buy_1h_change_percent": 9.889642543241543,
                      "volume_1h": 2155096.4900977304,
                      "volume_1h_usd": 372099117.86534846,
                      "volume_history_1h": 1783376.1195459762,
                      "volume_history_1h_usd": 315517691.7376682,
                      "volume_1h_change_percent": 20.843632842094426,
                      "volume_buy_1h": 1074875.1483996215,
                      "volume_buy_1h_usd": 185033216.42392257,
                      "volume_buy_history_1h": 870775.027542904,
                      "volume_buy_history_1h_usd": 151538134.971131,
                      "volume_buy_1h_change_percent": 23.43890378122508,
                      "volume_sell_1h": 1080221.341698109,
                      "volume_sell_1h_usd": 187065901.4414259,
                      "volume_sell_history_1h": 912601.092003072,
                      "volume_sell_history_1h_usd": 163979556.76653722,
                      "volume_sell_1h_change_percent": 18.36730759626054,
                      "trade_2h": 2700735,
                      "trade_history_2h": 2273625,
                      "trade_2h_change_percent": 18.78541975919512,
                      "sell_2h": 1495863,
                      "sell_history_2h": 1214967,
                      "sell_2h_change_percent": 23.119640286526298,
                      "buy_2h": 1204872,
                      "buy_history_2h": 1058658,
                      "buy_2h_change_percent": 13.81125916018204,
                      "volume_2h": 3777744.0079868184,
                      "volume_2h_usd": 659336304.7277063,
                      "volume_history_2h": 4986668.953994334,
                      "volume_history_2h_usd": 876699150.961254,
                      "volume_2h_change_percent": -24.24313619293223,
                      "volume_buy_2h": 1859472.8275801751,
                      "volume_buy_2h_usd": 321565280.427372,
                      "volume_buy_history_2h": 2552431.93778671,
                      "volume_buy_history_2h_usd": 447965734.71457183,
                      "volume_buy_2h_change_percent": -27.148975059739318,
                      "volume_sell_2h": 1918271.180406643,
                      "volume_sell_2h_usd": 337771024.30033433,
                      "volume_sell_history_2h": 2434237.0162076233,
                      "volume_sell_history_2h_usd": 428733416.24668217,
                      "volume_sell_2h_change_percent": -21.196203671441168,
                      "trade_4h": 5123157,
                      "trade_history_4h": 4712834,
                      "trade_4h_change_percent": 8.706502287158852,
                      "sell_4h": 2789623,
                      "sell_history_4h": 2530641,
                      "sell_4h_change_percent": 10.233849842786867,
                      "buy_4h": 2333534,
                      "buy_history_4h": 2182193,
                      "buy_4h_change_percent": 6.935271078222686,
                      "volume_4h": 8985805.366700899,
                      "volume_4h_usd": 1573444650.61512,
                      "volume_history_4h": 8303593.777521941,
                      "volume_history_4h_usd": 1399553943.2157688,
                      "volume_4h_change_percent": 8.215859391215929,
                      "volume_buy_4h": 4531957.405336594,
                      "volume_buy_4h_usd": 789561842.2425901,
                      "volume_buy_history_4h": 4305672.358770635,
                      "volume_buy_history_4h_usd": 725954295.8032504,
                      "volume_buy_4h_change_percent": 5.255510120388459,
                      "volume_sell_4h": 4453847.961364305,
                      "volume_sell_4h_usd": 783882808.3725297,
                      "volume_sell_history_4h": 3997921.418751306,
                      "volume_sell_history_4h_usd": 673599647.4125183,
                      "volume_sell_4h_change_percent": 11.404089647049664,
                      "trade_8h": 9321207,
                      "trade_history_8h": 9379085,
                      "trade_8h_change_percent": -0.6170964438428695,
                      "sell_8h": 5046590,
                      "sell_history_8h": 5093401,
                      "sell_8h_change_percent": -0.9190519262080483,
                      "buy_8h": 4274617,
                      "buy_history_8h": 4285684,
                      "buy_8h_change_percent": -0.2582318248382288,
                      "volume_8h": 15955390.884366825,
                      "volume_8h_usd": 2740816553.9291916,
                      "volume_history_8h": 9435031.81369001,
                      "volume_history_8h_usd": 1548030762.8614295,
                      "volume_8h_change_percent": 69.1079712229049,
                      "volume_buy_8h": 8077437.272185957,
                      "volume_buy_8h_usd": 1383375089.9782276,
                      "volume_buy_history_8h": 4725061.174831935,
                      "volume_buy_history_8h_usd": 774623834.5994598,
                      "volume_buy_8h_change_percent": 70.94884009566843,
                      "volume_sell_8h": 7877953.612180868,
                      "volume_sell_8h_usd": 1357441463.9509637,
                      "volume_sell_history_8h": 4709970.638858074,
                      "volume_sell_history_8h_usd": 773406928.2619697,
                      "volume_sell_8h_change_percent": 67.2612042883322,
                      "trade_24h": 29336226,
                      "trade_history_24h": 24668611,
                      "trade_24h_change_percent": 18.92127205702826,
                      "sell_24h": 15999666,
                      "sell_history_24h": 13552421,
                      "sell_24h_change_percent": 18.05762232445406,
                      "buy_24h": 13336560,
                      "buy_history_24h": 11116190,
                      "buy_24h_change_percent": 19.974199793274494,
                      "volume_24h": 38792027.488995165,
                      "volume_24h_usd": 6459392062.652276,
                      "volume_history_24h": 27529677.595021047,
                      "volume_history_24h_usd": 4160810504.560139,
                      "volume_24h_change_percent": 40.90985030645982,
                      "volume_buy_24h": 19586757.81966657,
                      "volume_buy_24h_usd": 3255526835.774689,
                      "volume_buy_history_24h": 13821503.465453008,
                      "volume_buy_history_24h_usd": 2090095440.02877,
                      "volume_buy_24h_change_percent": 41.71220857863888,
                      "volume_sell_24h": 19205269.6693286,
                      "volume_sell_24h_usd": 3203865226.877587,
                      "volume_sell_history_24h": 13708174.129568037,
                      "volume_sell_history_24h_usd": 2070715064.5313692,
                      "volume_sell_24h_change_percent": 40.100858712492766
                    },
                    "NeonTjSjsuo3rexg9o6vHuMXw62f9V7zvmu8M8Zut44": {
                      "address": "NeonTjSjsuo3rexg9o6vHuMXw62f9V7zvmu8M8Zut44",
                      "holder": 15925,
                      "market": 18,
                      "last_trade_unix_time": 1746802079,
                      "last_trade_human_time": "2025-05-09T14:47:59",
                      "price": 0.12420729138723606,
                      "history_1m_price": 0.12420729138723606,
                      "price_change_1m_percent": 0,
                      "history_5m_price": 0.12414728918836315,
                      "price_change_5m_percent": 0.0483314611742098,
                      "history_30m_price": 0.1257361799789287,
                      "price_change_30m_percent": -1.2159496112804191,
                      "history_1h_price": 0.1285564153653252,
                      "price_change_1h_percent": -3.383047019263886,
                      "history_2h_price": 0.127335918828378,
                      "price_change_2h_percent": -2.456987368472731,
                      "history_4h_price": 0.125698740869959,
                      "price_change_4h_percent": -1.1865269869854211,
                      "history_6h_price": 0.12533027081460005,
                      "price_change_6h_percent": -0.8960161181054185,
                      "history_8h_price": 0.12394386406068382,
                      "price_change_8h_percent": 0.21253761010973832,
                      "history_12h_price": 0.12275308532670935,
                      "price_change_12h_percent": 1.1846594785428937,
                      "history_24h_price": 0.1210786804346019,
                      "price_change_24h_percent": 2.583948669909736,
                      "unique_wallet_1m": 0,
                      "unique_wallet_history_1m": 1,
                      "unique_wallet_1m_change_percent": -100,
                      "unique_wallet_5m": 3,
                      "unique_wallet_history_5m": 3,
                      "unique_wallet_5m_change_percent": 0,
                      "unique_wallet_30m": 11,
                      "unique_wallet_history_30m": 14,
                      "unique_wallet_30m_change_percent": -21.428571428571427,
                      "unique_wallet_1h": 19,
                      "unique_wallet_history_1h": 8,
                      "unique_wallet_1h_change_percent": 137.5,
                      "unique_wallet_2h": 23,
                      "unique_wallet_history_2h": 45,
                      "unique_wallet_2h_change_percent": -48.888888888888886,
                      "unique_wallet_4h": 54,
                      "unique_wallet_history_4h": 48,
                      "unique_wallet_4h_change_percent": 12.5,
                      "unique_wallet_8h": 76,
                      "unique_wallet_history_8h": 33,
                      "unique_wallet_8h_change_percent": 130.3030303030303,
                      "unique_wallet_24h": 118,
                      "unique_wallet_history_24h": 120,
                      "unique_wallet_24h_change_percent": -1.6666666666666667,
                      "trade_1m": 0,
                      "trade_history_1m": 1,
                      "trade_1m_change_percent": -100,
                      "sell_1m": 0,
                      "sell_history_1m": 0,
                      "sell_1m_change_percent": null,
                      "buy_1m": 0,
                      "buy_history_1m": 1,
                      "buy_1m_change_percent": -100,
                      "volume_1m": 0,
                      "volume_1m_usd": 0,
                      "volume_history_1m": 79.862867037,
                      "volume_history_1m_usd": 9.919785,
                      "volume_1m_change_percent": -100,
                      "volume_buy_1m": 0,
                      "volume_buy_1m_usd": 0,
                      "volume_buy_history_1m": 79.862867037,
                      "volume_buy_history_1m_usd": 9.919785,
                      "volume_buy_1m_change_percent": -100,
                      "volume_sell_1m": 0,
                      "volume_sell_1m_usd": 0,
                      "volume_sell_history_1m": 0,
                      "volume_sell_history_1m_usd": 0,
                      "volume_sell_1m_change_percent": null,
                      "trade_5m": 3,
                      "trade_history_5m": 3,
                      "trade_5m_change_percent": 0,
                      "sell_5m": 0,
                      "sell_history_5m": 2,
                      "sell_5m_change_percent": -100,
                      "buy_5m": 3,
                      "buy_history_5m": 1,
                      "buy_5m_change_percent": 200,
                      "volume_5m": 518.532281063,
                      "volume_5m_usd": 64.394683,
                      "volume_history_5m": 544.339203843,
                      "volume_history_5m_usd": 67.282128,
                      "volume_5m_change_percent": -4.740963465024143,
                      "volume_buy_5m": 518.532281063,
                      "volume_buy_5m_usd": 64.394683,
                      "volume_buy_history_5m": 135.449365223,
                      "volume_buy_history_5m_usd": 16.816176,
                      "volume_buy_5m_change_percent": 282.8237070061592,
                      "volume_sell_5m": 0,
                      "volume_sell_5m_usd": 0,
                      "volume_sell_history_5m": 408.88983862,
                      "volume_sell_history_5m_usd": 50.465952,
                      "volume_sell_5m_change_percent": -100,
                      "trade_30m": 24,
                      "trade_history_30m": 49,
                      "trade_30m_change_percent": -51.02040816326531,
                      "sell_30m": 12,
                      "sell_history_30m": 30,
                      "sell_30m_change_percent": -60,
                      "buy_30m": 12,
                      "buy_history_30m": 19,
                      "buy_30m_change_percent": -36.84210526315789,
                      "volume_30m": 32306.264221494,
                      "volume_30m_usd": 4030.288435322418,
                      "volume_history_30m": 59684.326486043996,
                      "volume_history_30m_usd": 7469.499588545696,
                      "volume_30m_change_percent": -45.87144377167734,
                      "volume_buy_30m": 16283.755177089,
                      "volume_buy_30m_usd": 2040.2546082400142,
                      "volume_buy_history_30m": 18300.105601477,
                      "volume_buy_history_30m_usd": 2295.4225363394503,
                      "volume_buy_30m_change_percent": -11.018244748408776,
                      "volume_sell_30m": 16022.509044405,
                      "volume_sell_30m_usd": 1990.033827082404,
                      "volume_sell_history_30m": 41384.220884566996,
                      "volume_sell_history_30m_usd": 5174.077052206246,
                      "volume_sell_30m_change_percent": -61.283531012709936,
                      "trade_1h": 69,
                      "trade_history_1h": 17,
                      "trade_1h_change_percent": 305.88235294117646,
                      "sell_1h": 42,
                      "sell_history_1h": 7,
                      "sell_1h_change_percent": 500,
                      "buy_1h": 27,
                      "buy_history_1h": 10,
                      "buy_1h_change_percent": 170,
                      "volume_1h": 82384.74373696599,
                      "volume_1h_usd": 10292.237858328092,
                      "volume_history_1h": 3564.2949645470003,
                      "volume_history_1h_usd": 454.32065689977003,
                      "volume_1h_change_percent": 2211.38961720124,
                      "volume_buy_1h": 24978.013807993997,
                      "volume_buy_1h_usd": 3128.126979039443,
                      "volume_buy_history_1h": 2523.265494998,
                      "volume_buy_history_1h_usd": 322.2482526219116,
                      "volume_buy_1h_change_percent": 889.9082699584808,
                      "volume_sell_1h": 57406.729928971996,
                      "volume_sell_1h_usd": 7164.110879288649,
                      "volume_sell_history_1h": 1041.0294695490002,
                      "volume_sell_history_1h_usd": 132.07240427785842,
                      "volume_sell_1h_change_percent": 5414.4192943780945,
                      "trade_2h": 86,
                      "trade_history_2h": 270,
                      "trade_2h_change_percent": -68.14814814814815,
                      "sell_2h": 49,
                      "sell_history_2h": 139,
                      "sell_2h_change_percent": -64.74820143884892,
                      "buy_2h": 37,
                      "buy_history_2h": 131,
                      "buy_2h_change_percent": -71.7557251908397,
                      "volume_2h": 85949.038701513,
                      "volume_2h_usd": 10746.558515227862,
                      "volume_history_2h": 121116.066490666,
                      "volume_history_2h_usd": 15340.380299133165,
                      "volume_2h_change_percent": -29.035807393780576,
                      "volume_buy_2h": 27501.279302991996,
                      "volume_buy_2h_usd": 3450.3752316613545,
                      "volume_buy_history_2h": 59906.41115064099,
                      "volume_buy_history_2h_usd": 7619.477501910608,
                      "volume_buy_2h_change_percent": -54.092927994239005,
                      "volume_sell_2h": 58447.759398521,
                      "volume_sell_2h_usd": 7296.183283566507,
                      "volume_sell_history_2h": 61209.655340025005,
                      "volume_sell_history_2h_usd": 7720.902797222558,
                      "volume_sell_2h_change_percent": -4.512189990552036,
                      "trade_4h": 398,
                      "trade_history_4h": 298,
                      "trade_4h_change_percent": 33.557046979865774,
                      "sell_4h": 207,
                      "sell_history_4h": 170,
                      "sell_4h_change_percent": 21.764705882352942,
                      "buy_4h": 191,
                      "buy_history_4h": 128,
                      "buy_4h_change_percent": 49.21875,
                      "volume_4h": 227158.78789799998,
                      "volume_4h_usd": 28606.589461036434,
                      "volume_history_4h": 182988.70116253902,
                      "volume_history_4h_usd": 22853.481010176198,
                      "volume_4h_change_percent": 24.138149762715162,
                      "volume_buy_4h": 102252.90269332401,
                      "volume_buy_4h_usd": 12933.95725902829,
                      "volume_buy_history_4h": 83234.866083524,
                      "volume_buy_history_4h_usd": 10419.548846173395,
                      "volume_buy_4h_change_percent": 22.84864204709107,
                      "volume_sell_4h": 124905.88520467599,
                      "volume_sell_4h_usd": 15672.632202008142,
                      "volume_sell_history_4h": 99753.835079015,
                      "volume_sell_history_4h_usd": 12433.932164002801,
                      "volume_sell_4h_change_percent": 25.214118440396856,
                      "trade_8h": 567,
                      "trade_history_8h": 137,
                      "trade_8h_change_percent": 313.8686131386861,
                      "sell_8h": 311,
                      "sell_history_8h": 63,
                      "sell_8h_change_percent": 393.6507936507936,
                      "buy_8h": 256,
                      "buy_history_8h": 74,
                      "buy_8h_change_percent": 245.94594594594597,
                      "volume_8h": 354287.212231586,
                      "volume_8h_usd": 44429.920860648606,
                      "volume_history_8h": 168314.641242657,
                      "volume_history_8h_usd": 20661.27679053176,
                      "volume_8h_change_percent": 110.49102420080898,
                      "volume_buy_8h": 160253.477232887,
                      "volume_buy_8h_usd": 20180.43414548757,
                      "volume_buy_history_8h": 88467.665032377,
                      "volume_buy_history_8h_usd": 10904.625741904958,
                      "volume_buy_8h_change_percent": 81.14355925889775,
                      "volume_sell_8h": 194033.73499869902,
                      "volume_sell_8h_usd": 24249.486715161038,
                      "volume_sell_history_8h": 79846.97621028,
                      "volume_sell_history_8h_usd": 9756.651048626803,
                      "volume_sell_8h_change_percent": 143.00699188370504,
                      "trade_24h": 1134,
                      "trade_history_24h": 875,
                      "trade_24h_change_percent": 29.599999999999998,
                      "sell_24h": 612,
                      "sell_history_24h": 461,
                      "sell_24h_change_percent": 32.75488069414317,
                      "buy_24h": 522,
                      "buy_history_24h": 414,
                      "buy_24h_change_percent": 26.08695652173913,
                      "volume_24h": 838772.492908917,
                      "volume_24h_usd": 103602.6151341583,
                      "volume_history_24h": 1065654.20492195,
                      "volume_history_24h_usd": 123913.53811871028,
                      "volume_24h_change_percent": -21.29036895506362,
                      "volume_buy_24h": 392626.32190174906,
                      "volume_buy_24h_usd": 48695.964598773375,
                      "volume_buy_history_24h": 487588.68761235796,
                      "volume_buy_history_24h_usd": 56983.39472233019,
                      "volume_buy_24h_change_percent": -19.475916509799287,
                      "volume_sell_24h": 446146.17100716796,
                      "volume_sell_24h_usd": 54906.65053538493,
                      "volume_sell_history_24h": 578065.517309592,
                      "volume_sell_history_24h_usd": 66930.1433963801,
                      "volume_sell_24h_change_percent": -22.82082953440943
                    }
                  },
                  "success": true
                }
              }
            }
          }
        }
      },
      "DefiTokenNewListing": {
        "description": "JSON object containing a list of newly listed tokens",
        "content": {
          "application/json": {
            "schema": {
              "$ref": "#/components/schemas/DefiTokenNewListingResponse"
            },
            "examples": {
              "NewListing": {
                "value": {
                  "success": true,
                  "data": {
                    "items": [
                      {
                        "address": "6Zk9e3nfXdYLXHYu5NvDiPHGMcjujVBv6gWRr7ckSdhP",
                        "symbol": "TOPCAT",
                        "name": "TOPCAT",
                        "decimals": 9,
                        "source": "raydium",
                        "liquidityAddedAt": "2024-09-18T17:59:23",
                        "logoURI": null,
                        "liquidity": 15507.41635596545
                      },
                      {
                        "address": "DsWUsiseYxAHZXEvq5cVcymYaohk8Gpe8E4otsjFpump",
                        "symbol": "Onigiri",
                        "name": "Onigiri",
                        "decimals": 6,
                        "source": "raydium",
                        "liquidityAddedAt": "2024-09-18T17:57:14",
                        "logoURI": "https://ipfs.io/ipfs/QmfXbLtRVuTTkazYqQix4R8FYW4Xkj2ZEnWKhLpGugaLQr",
                        "liquidity": 32994.397007045525
                      }
                    ]
                  }
                }
              }
            }
          }
        }
      },
      "DefiTokenHolder": {
        "description": "JSON object containing a list of token holder",
        "content": {
          "application/json": {
            "schema": {
              "$ref": "#/components/schemas/DefiTokenHolderResponse"
            },
            "examples": {
              "SolanaScaledUIAmount": {
                "value": {
                  "success": true,
                  "data": {
                    "holder": 120450,
                    "top10HoldPercent": 18.42,
                    "items": [
                      {
                        "amount": "4995300410087424",
                        "decimals": 9,
                        "mint": "So11111111111111111111111111111111111111112",
                        "owner": "AVzP2GeRmqGphJsMxWoqjpUifPpCret7LqWhD8NWQK49",
                        "token_account": "BUvduFTd2sWFagCunBPLupG8fBTJqweLw9DuhruNFSCm",
                        "ui_amount": 4995300.410087424,
                        "is_scaled_ui_token": false,
                        "multiplier": null
                      }
                    ]
                  }
                }
              },
              "SPLTokenTopHolder": {
                "value": {
                  "success": true,
                  "data": {
                    "holder": 5321,
                    "top10HoldPercent": 22.15,
                    "items": [
                      {
                        "amount": "100000000000",
                        "decimals": 9,
                        "mint": "7GCihgDB8fe6KNjn2MYtkzZcRjQy3t9GHdC8uHYmW2hr",
                        "owner": "6Zk9e3nfXdYLXHYu5NvDiPHGMcjujVBv6gWRr7ckSdhP",
                        "token_account": "HdmGPmTkBgsiJcyVDgiGkYdTZr4h5XmpjYoUjU2rapf4",
                        "ui_amount": 100
                      },
                      {
                        "amount": "90000000000",
                        "decimals": 9,
                        "mint": "7GCihgDB8fe6KNjn2MYtkzZcRjQy3t9GHdC8uHYmW2hr",
                        "owner": "5Q544fKrFoe6tsEbD7S8EmxGTJYAKtTVhAW5Q5pge4j1",
                        "token_account": "EauuZAnB7CcnCrwvCMcnb2Rjk12Ecs13ycAZQBb5tLYM",
                        "ui_amount": 90
                      }
                    ]
                  }
                }
              },
              "WalletModeHolderStats": {
                "value": {
                  "success": true,
                  "data": {
                    "holder": 8432,
                    "top10HoldPercent": 31.77,
                    "items": [
                      {
                        "mint": "3xF8fgj5maAgFwprsEs26bJNmaPDS24zT1VTtELspump",
                        "owner": "CEikLmYN9dcDtHZC9qfwPpaUcLm3CNWMrR55Ub5mRyUn",
                        "amount": 696438428.401387,
                        "amountUsd": 6260.822052904342,
                        "holdAvgPrice": 0.0000036271578795427,
                        "avgBuyPrice": 0.0000036271578795427,
                        "avgSellPrice": 0.000017531147426419527,
                        "firstTradeUnixTime": 1784802145,
                        "lastTradeUnixTime": 1784802524,
                        "isScaledUiToken": false,
                        "multiplier": null,
                        "netWorth": 70247.52743167555,
                        "solBalance": 1.994403076,
                        "funding": {
                          "funder": "7iVfPjXEMnuGQkaYbxmvi4BRnzpS6dthWwNQB32D61nz",
                          "unixTime": 1784802145,
                          "amount": 21.372,
                          "txHash": "61oxPM8LXQ9wCurgLxzdqxv516rZPtrnxtGXdLnVCLuhYkRyW5nHwEr7Wzzi5YHaZzCGzRNiCs7egH7kCQQyPTDQ"
                        }
                      }
                    ]
                  }
                }
              }
            }
          }
        }
      },
      "DefiTokenMintBurnTxs": {
        "description": "JSON object containing a list of mint/burn transactions",
        "content": {
          "application/json": {
            "schema": {
              "$ref": "#/components/schemas/DefiTokenMintBurnTxsResponse"
            },
            "examples": {
              "MintBurnTxs": {
                "value": {
                  "success": true,
                  "data": {
                    "items": [
                      {
                        "amount": "870",
                        "block_human_time": "2024-11-08T07:28:18.000Z",
                        "block_time": 1731050898,
                        "common_type": "burn",
                        "decimals": 0,
                        "mint": "fueL3hBZjLLLJHiFH9cqZoozTG3XQZ53diwFPwbzNim",
                        "program_id": "TokenkegQfeZyiNwAJbNbGKPFXCWuBvf9Ss623VQ5DA",
                        "slot": 300145960,
                        "tx_hash": "TyqmrBiZaW6bXsm6fV1owkVL2ea3PF2rbHPNZQtQrLYiZVThHEmkcD4QHKw37W43nyUdrFSdNr2xxTPZkPBY3pZ",
                        "ui_amount": 870,
                        "ui_amount_string": "870"
                      }
                    ]
                  }
                }
              }
            }
          }
        }
      },
      "DefiTokenListV3": {
        "description": "JSON object containing a list of token",
        "content": {
          "application/json": {
            "schema": {
              "$ref": "#/components/schemas/DefiTokenListV3Response"
            },
            "examples": {
              "SolanaScaledUIAmount": {
                "value": {
                  "success": true,
                  "data": {
                    "items": [
                      {
                        "address": "So11111111111111111111111111111111111111112",
                        "logo_uri": "https://raw.githubusercontent.com/solana-labs/token-list/main/assets/mainnet/So11111111111111111111111111111111111111112/logo.png",
                        "name": "Wrapped SOL",
                        "symbol": "SOL",
                        "decimals": 9,
                        "extensions": {
                          "coingecko_id": "solana",
                          "serum_v3_usdc": "9wFFyRfZBsuAha4YcuxcXLKwMxJR43S7fPfQLusDBzvT",
                          "serum_v3_usdt": "HWHvQhFmJB3NUcu1aihKmrKegfVxBEHzwVX6yZCKEsi1",
                          "website": "https://solana.com/",
                          "telegram": null,
                          "twitter": "https://twitter.com/solana",
                          "description": "Wrapped Solana ",
                          "discord": "https://discordapp.com/invite/pquxPsq",
                          "medium": "https://medium.com/solana-labs"
                        },
                        "market_cap": 47804731539.07422,
                        "fdv": 52235322779.27986,
                        "total_supply": 620122784.8312707,
                        "circulating_supply": 567524075.143289,
                        "liquidity": 5022039892.110555,
                        "last_trade_unix_time": 1770719861,
                        "volume_1m_usd": 5391130.519996273,
                        "volume_5m_usd": 28359800.05996658,
                        "volume_30m_usd": 204986981.09311706,
                        "volume_1m_change_percent": -7.179022227208377,
                        "volume_5m_change_percent": -41.473980089148036,
                        "volume_30m_change_percent": -27.375926305902265,
                        "volume_1h_usd": 463249920.4345513,
                        "volume_1h_change_percent": -10.711726491059386,
                        "volume_2h_usd": 954270205.9201734,
                        "volume_2h_change_percent": -6.883129860766711,
                        "volume_4h_usd": 1952318583.0152369,
                        "volume_4h_change_percent": -17.06915667365536,
                        "volume_8h_usd": 4089123147.485524,
                        "volume_8h_change_percent": -12.566952710315663,
                        "volume_24h_usd": 12633047621.390213,
                        "volume_24h_change_percent": -12.921308265029118,
                        "volume_7d_usd": 106771633719.01566,
                        "volume_7d_change_percent": 31.90021766177634,
                        "volume_30d_usd": 391778461308.8114,
                        "volume_30d_change_percent": 132.15573119504776,
                        "trade_1m_count": 24331,
                        "trade_5m_count": 119357,
                        "trade_30m_count": 764052,
                        "trade_1h_count": 1489737,
                        "trade_2h_count": 3042558,
                        "trade_4h_count": 6412259,
                        "trade_8h_count": 12570622,
                        "trade_24h_count": 36973993,
                        "trade_7d_count": 258141842,
                        "trade_30d_count": 1003628436,
                        "buy_24h": 16481536,
                        "buy_24h_change_percent": -0.9536171997725992,
                        "volume_buy_24h_usd": 6302501622.213389,
                        "volume_buy_24h_change_percent": -12.806383632452265,
                        "buy_7d": 114379995,
                        "buy_7d_change_percent": 7.715464699960623,
                        "volume_buy_7d_usd": 53297726916.68083,
                        "volume_buy_7d_change_percent": 32.49353523038235,
                        "buy_30d": 431992822,
                        "buy_30d_change_percent": 47.46342899958093,
                        "volume_buy_30d_usd": 194545982041.11035,
                        "volume_buy_30d_change_percent": 135.1685602170761,
                        "sell_24h": 20492457,
                        "sell_24h_change_percent": -2.2658535562879996,
                        "volume_sell_24h_usd": 6330545999.176824,
                        "volume_sell_24h_change_percent": -13.035405188202965,
                        "sell_7d": 143761847,
                        "sell_7d_change_percent": 2.7004638578022044,
                        "volume_sell_7d_usd": 53473906802.33482,
                        "volume_sell_7d_change_percent": 31.313993807692704,
                        "sell_30d": 571635614,
                        "sell_30d_change_percent": 42.041623270904104,
                        "volume_sell_30d_usd": 197232479267.70108,
                        "volume_sell_30d_change_percent": 129.25438596973004,
                        "unique_wallet_24h": 1078316,
                        "unique_wallet_24h_change_percent": 27.006090501244365,
                        "price": 84.23383893802996,
                        "price_change_1m_percent": 0.009695978575668942,
                        "price_change_5m_percent": -0.11684480646276182,
                        "price_change_30m_percent": -0.18244121670926866,
                        "price_change_1h_percent": -0.4145320861606307,
                        "price_change_2h_percent": 0.017801124275801165,
                        "price_change_4h_percent": -1.4714631467113624,
                        "price_change_8h_percent": -2.6402925798351617,
                        "price_change_24h_percent": 1.3435381835763764,
                        "price_change_7d_percent": -17.97571312121106,
                        "price_change_30d_percent": -38.274858405973575,
                        "holder": 5395501,
                        "recent_listing_time": null,
                        "global_fees_paid": 125.5,
                        "is_scaled_ui_token": false,
                        "multiplier": null
                      }
                    ],
                    "hasNext": true
                  }
                }
              },
              "TokenListV3Data": {
                "value": {
                  "data": {
                    "items": [
                      {
                        "address": "So11111111111111111111111111111111111111112",
                        "logo_uri": "https://raw.githubusercontent.com/solana-labs/token-list/main/assets/mainnet/So11111111111111111111111111111111111111112/logo.png",
                        "name": "Wrapped SOL",
                        "symbol": "SOL",
                        "decimals": 9,
                        "extensions": {
                          "coingecko_id": "solana",
                          "serum_v3_usdc": "9wFFyRfZBsuAha4YcuxcXLKwMxJR43S7fPfQLusDBzvT",
                          "serum_v3_usdt": "HWHvQhFmJB3NUcu1aihKmrKegfVxBEHzwVX6yZCKEsi1",
                          "website": "https://solana.com/",
                          "telegram": null,
                          "twitter": "https://twitter.com/solana",
                          "description": "Wrapped Solana ",
                          "discord": "https://discordapp.com/invite/pquxPsq",
                          "medium": "https://medium.com/solana-labs"
                        },
                        "market_cap": 70986064152.41452,
                        "fdv": 83119267824.4418,
                        "liquidity": 21550102465.71004,
                        "total_supply": 607331645.8349773,
                        "circulating_supply": 539665463.3820738,
                        "last_trade_unix_time": 1741400559,
                        "volume_1h_usd": 114732972.33349997,
                        "volume_1h_change_percent": 26.600242887580787,
                        "volume_2h_usd": 197164311.91243982,
                        "volume_2h_change_percent": -24.201147221219546,
                        "volume_4h_usd": 494857896.4547814,
                        "volume_4h_change_percent": -37.41364293011281,
                        "volume_8h_usd": 1249189237.4290442,
                        "volume_8h_change_percent": 1.7083969276685818,
                        "volume_24h_usd": 3362990076.206178,
                        "volume_24h_change_percent": 17.12828046192169,
                        "volume_7d_usd": 44776616773.85637,
                        "volume_7d_change_percent": -4.490473727713475,
                        "volume_30d_usd": 194809679362.42694,
                        "volume_30d_change_percent": -11.806191109609804,
                        "trade_1h_count": 1023528,
                        "trade_2h_count": 1904835,
                        "trade_4h_count": 4538696,
                        "trade_8h_count": 9721597,
                        "trade_24h_count": 26369792,
                        "trade_7d_count": 151448507,
                        "trade_30d_count": 666734917,
                        "buy_24h": 14771154,
                        "buy_24h_change_percent": 7.746892343149886,
                        "volume_buy_24h_usd": 4993762682.777149,
                        "volume_buy_24h_change_percent": 10.97366285493131,
                        "sell_24h": 18141313,
                        "sell_24h_change_percent": 2.5983034387059663,
                        "volume_sell_24h_usd": 4943234699.7945595,
                        "volume_sell_24h_change_percent": 9.47816681940243,
                        "buy_7d": 62405012,
                        "buy_7d_change_percent": -2.9000492307002896,
                        "volume_buy_7d_usd": 21913747848.287697,
                        "volume_buy_7d_change_percent": -4.373314066523053,
                        "buy_30d": 273142584,
                        "buy_30d_change_percent": -10.964893920828219,
                        "volume_buy_30d_usd": 95177822772.74564,
                        "volume_buy_30d_change_percent": -12.672501751867692,
                        "sell_7d": 89043495,
                        "sell_7d_change_percent": -6.44253507663079,
                        "volume_sell_7d_usd": 22862868925.56867,
                        "volume_sell_7d_change_percent": -4.602503467697474,
                        "sell_30d": 393592333,
                        "sell_30d_change_percent": -7.507152214571946,
                        "volume_sell_30d_usd": 99631856589.68129,
                        "volume_sell_30d_change_percent": -10.962345770960217,
                        "unique_wallet_24h": 1262031,
                        "unique_wallet_24h_change_percent": -26.286938857043396,
                        "price": 139.52300907321856,
                        "price_change_1h_percent": 0.003981660688414792,
                        "price_change_2h_percent": 0.5243251304288506,
                        "price_change_4h_percent": -1.3858689583782735,
                        "price_change_8h_percent": -3.8244082037697713,
                        "price_change_24h_percent": -0.5479088778176531,
                        "price_change_7d_percent": -6.276199085335215,
                        "price_change_30d_percent": -10.863860572329296,
                        "holder": 1420526,
                        "recent_listing_time": null,
                        "global_fees_paid": 125.5
                      }
                    ],
                    "has_next": true
                  },
                  "success": true
                }
              }
            }
          }
        }
      },
      "DefiTokenListV3Scroll": {
        "description": "JSON object containing a list of token",
        "content": {
          "application/json": {
            "schema": {
              "$ref": "#/components/schemas/DefiTokenListV3ScrollResponse"
            },
            "examples": {
              "SolanaScaledUIAmount": {
                "value": {
                  "success": true,
                  "data": {
                    "items": [
                      {
                        "address": "EPjFWdd5AufqSSqeM2qN1xzybapC8G4wEGGkZwyTDt1v",
                        "creation_time": 1602610673,
                        "logo_uri": "https://raw.githubusercontent.com/solana-labs/token-list/main/assets/mainnet/EPjFWdd5AufqSSqeM2qN1xzybapC8G4wEGGkZwyTDt1v/logo.png",
                        "name": "USD Coin",
                        "symbol": "USDC",
                        "decimals": 6,
                        "extensions": {
                          "website": "https://www.circle.com/en/usdc",
                          "twitter": "https://twitter.com/circle",
                          "github": "https://github.com/centrehq/centre-tokens",
                          "discord": "https://discord.com/invite/buildoncircle",
                          "serum_v3_usdt": "77quYg4MGneUdjgXCunt9GgM1usmrxKY31twEy3WHwcS",
                          "telegram": null,
                          "description": "USDC is a fully collateralized US dollar stablecoin. USDC is the bridge between dollars and trading on cryptocurrency exchanges. The technology behind CENTRE makes it possible to exchange value between people, businesses and financial institutions just like email between mail services and texts between SMS providers. We believe by removing artificial economic borders, we can create a more inclusive global economy.",
                          "medium": "https://medium.com/centre-blog",
                          "coingecko_id": "usd-coin"
                        },
                        "market_cap": 9359949288.472162,
                        "fdv": 9359949288.472162,
                        "total_supply": 9361475558.537651,
                        "circulating_supply": 9361475558.537651,
                        "liquidity": 717266609.8997043,
                        "last_trade_unix_time": 1773821608,
                        "global_fees_paid": 50,
                        "volume_1m_usd": 1783949.8016073245,
                        "volume_5m_usd": 6593930.865015753,
                        "volume_30m_usd": 37151797.047260106,
                        "volume_1m_change_percent": -16.712719155491957,
                        "volume_5m_change_percent": 22.319717252902382,
                        "volume_30m_change_percent": -7.328161152300243,
                        "volume_1h_usd": 71241764.65583831,
                        "volume_1h_change_percent": 5.1849793666244945,
                        "volume_2h_usd": 131380409.39402528,
                        "volume_2h_change_percent": 4.024396952248327,
                        "volume_4h_usd": 260864825.9415995,
                        "volume_4h_change_percent": -1.5700141357838566,
                        "volume_8h_usd": 497659947.6690345,
                        "volume_8h_change_percent": -6.21062719905141,
                        "volume_24h_usd": 1561358883.882102,
                        "volume_24h_change_percent": -17.59907485415478,
                        "volume_7d_usd": 11002942936.987179,
                        "volume_7d_change_percent": 0.19602006660813098,
                        "volume_30d_usd": 50881158726.32789,
                        "volume_30d_change_percent": -44.776825872610445,
                        "trade_1m_count": 3106,
                        "trade_5m_count": 13823,
                        "trade_30m_count": 78255,
                        "trade_1h_count": 152533,
                        "trade_2h_count": 287556,
                        "trade_4h_count": 622509,
                        "trade_8h_count": 1262789,
                        "trade_24h_count": 3805792,
                        "trade_7d_count": 26859044,
                        "trade_30d_count": 106739919,
                        "buy_24h": 1866645,
                        "buy_24h_change_percent": -13.838975176566759,
                        "volume_buy_24h_usd": 785187030.2092333,
                        "volume_buy_24h_change_percent": -17.483967313700145,
                        "buy_7d": 13111982,
                        "buy_7d_change_percent": -1.1499550907164513,
                        "volume_buy_7d_usd": 5497050486.576448,
                        "volume_buy_7d_change_percent": -0.11422541847775614,
                        "buy_30d": 52384055,
                        "buy_30d_change_percent": -19.06397767685987,
                        "volume_buy_30d_usd": 25530963641.516197,
                        "volume_buy_30d_change_percent": -44.845365851293614,
                        "sell_24h": 1939147,
                        "sell_24h_change_percent": -14.558761843663639,
                        "volume_sell_24h_usd": 776171853.6728687,
                        "volume_sell_24h_change_percent": -17.71518694174977,
                        "sell_7d": 13747062,
                        "sell_7d_change_percent": -0.7381533105196504,
                        "volume_sell_7d_usd": 5505892450.410731,
                        "volume_sell_7d_change_percent": 0.507695573136195,
                        "sell_30d": 54355864,
                        "sell_30d_change_percent": -17.98159868592781,
                        "volume_sell_30d_usd": 25350195084.81169,
                        "volume_sell_30d_change_percent": -44.70762485154118,
                        "unique_wallet_24h": 97794,
                        "unique_wallet_24h_change_percent": -0.9299781181619255,
                        "price": 0.9998369626608599,
                        "price_change_1m_percent": 0.0006212696240536864,
                        "price_change_5m_percent": 0.001696571468846449,
                        "price_change_30m_percent": -0.005174309814692479,
                        "price_change_1h_percent": -0.007304391309228121,
                        "price_change_2h_percent": -0.004304250424063729,
                        "price_change_4h_percent": -0.006304364350449888,
                        "price_change_8h_percent": -0.014304019994411629,
                        "price_change_24h_percent": -0.0036305799372838227,
                        "price_change_7d_percent": -0.010137765388845308,
                        "price_change_30d_percent": -0.01030435217514935,
                        "holder": 6354377,
                        "recent_listing_time": null,
                        "is_scaled_ui_token": false,
                        "multiplier": null
                      }
                    ],
                    "hasNext": true
                  }
                }
              },
              "TokenListV3ScrollData": {
                "value": {
                  "data": {
                    "next_scroll_id": "FGluY2x1ZGVfY29udGV4dF91dWlkDXF1ZXJ5QW5kRmV0Y2gBFmZGREI3THl5UlBDOVVJbzNTMXNvR3cAAAAAAHBZkRZzbmcwdVpNdlRlcW1qdll2eFhBMnd3",
                    "scroll_time": "30s",
                    "items": [
                      {
                        "address": "So11111111111111111111111111111111111111112",
                        "logo_uri": "https://raw.githubusercontent.com/solana-labs/token-list/main/assets/mainnet/So11111111111111111111111111111111111111112/logo.png",
                        "name": "Wrapped SOL",
                        "symbol": "SOL",
                        "decimals": 9,
                        "extensions": null,
                        "market_cap": 80713028194.94469,
                        "fdv": 80681317625.50807,
                        "liquidity": 102195454231.63649,
                        "total_supply": 607331645.8349773,
                        "circulating_supply": 539665463.3820738,
                        "last_trade_unix_time": 1740624839,
                        "volume_1h_usd": 119052838.8883853,
                        "volume_1h_change_percent": -30.676240518398508,
                        "volume_2h_usd": 347643855.9198067,
                        "volume_2h_change_percent": -36.688231416663434,
                        "volume_4h_usd": 836575903.2292848,
                        "volume_4h_change_percent": 52.61914024534799,
                        "volume_8h_usd": 1576625036.3259573,
                        "volume_8h_change_percent": 6.480949870721473,
                        "volume_24h_usd": 1577428262.8046324,
                        "volume_24h_change_percent": 1510.6913892846712,
                        "trade_1h_count": 975539,
                        "trade_2h_count": 2036713,
                        "trade_4h_count": 3892579,
                        "trade_8h_count": 6655047,
                        "trade_24h_count": 6658133,
                        "buy_24h": 14771154,
                        "buy_24h_change_percent": 7.746892343149886,
                        "volume_buy_24h_usd": 4993762682.777149,
                        "volume_buy_24h_change_percent": 10.97366285493131,
                        "sell_24h": 18141313,
                        "sell_24h_change_percent": 2.5983034387059663,
                        "volume_sell_24h_usd": 4943234699.7945595,
                        "volume_sell_24h_change_percent": 9.47816681940243,
                        "unique_wallet_24h": 1262031,
                        "unique_wallet_24h_change_percent": -26.286938857043396,
                        "price": 135.60243562980554,
                        "price_change_1h_percent": -1.2205896217256513,
                        "price_change_2h_percent": -0.7972262955887118,
                        "price_change_4h_percent": -0.5530869831453828,
                        "price_change_8h_percent": 3.0142100916272554,
                        "price_change_24h_percent": null,
                        "holder": 89514,
                        "recent_listing_time": 1736177092
                      }
                    ]
                  },
                  "success": true
                }
              }
            }
          }
        }
      },
      "DefiTokenTopTraded": {
        "description": "JSON object containing a list of top traded tokens",
        "content": {
          "application/json": {
            "schema": {
              "$ref": "#/components/schemas/DefiTokenTopTradedResponse"
            },
            "examples": {
              "SolanaScaledUIAmount": {
                "value": {
                  "success": true,
                  "data": {
                    "items": [
                      {
                        "tokenAddress": "3xF8fgj5maAgFwprsEs26bJNmaPDS24zT1VTtELspump",
                        "owner": "CEikLmYN9dcDtHZC9qfwPpaUcLm3CNWMrR55Ub5mRyUn",
                        "tags": [
                          "fresh",
                          "bundler",
                          "sniper"
                        ],
                        "type": "24h",
                        "trade": 27,
                        "tradeBuy": 1,
                        "tradeSell": 26,
                        "volume": 696438428.401387,
                        "volumeBuy": 427829917.472286,
                        "volumeSell": 268608510.92910105,
                        "volumeUsd": 6260.822052904342,
                        "volumeBuyUSD": 1551.8066478152505,
                        "volumeSellUSD": 4709.0154050890915,
                        "totalPnl": 3438.2253375103355,
                        "unrealizedPnl": -296.5045959543089,
                        "realizedPnl": 3734.7299334646445,
                        "holdVolume": 0,
                        "holdVolumeUsd": 0,
                        "holdAvgPrice": 0.0000036271578597954727,
                        "avgBuyPrice": 0.0000036271578597954727,
                        "avgSellPrice": 0.000017531147426419527,
                        "firstTradeUnixTime": 1784802145,
                        "lastTradeUnixTime": 1784802524,
                        "netWorth": 0,
                        "solBalance": 0,
                        "funding": {
                          "funder": "7iVfPjXEMnuGQkaYbxmvi4BRnzpS6dthWwNQB32D61nz",
                          "unixTime": 1784802145,
                          "amount": 21.372,
                          "txHash": "61oxPM8LXQ9wCurgLxzdqxv516rZPtrnxtGXdLnVCLuhYkRyW5nHwEr7Wzzi5YHaZzCGzRNiCs7egH7kCQQyPTDQ"
                        },
                        "isScaledUiToken": false,
                        "multiplier": null
                      }
                    ]
                  }
                }
              },
              "Tokens": {
                "value": {
                  "success": true,
                  "data": {
                    "items": [
                      {
                        "tokenAddress": "3xF8fgj5maAgFwprsEs26bJNmaPDS24zT1VTtELspump",
                        "owner": "MfDuWeqSHEqTFVYZ7LoexgAK9dxk7cy4DFJWjWMGVWa",
                        "tags": [],
                        "type": "24h",
                        "volume": 675542.1369220349,
                        "trade": 74194,
                        "tradeBuy": 38909,
                        "tradeSell": 35285,
                        "volumeBuy": 372626.71744350606,
                        "volumeSell": 302915.4194785288
                      },
                      {
                        "tokenAddress": "3xF8fgj5maAgFwprsEs26bJNmaPDS24zT1VTtELspump",
                        "owner": "YubQzu18FDqJRyNfG8JqHmsdbxhnoQqcKUHBdUkN6tP",
                        "tags": [],
                        "type": "24h",
                        "volume": 188500.06136997032,
                        "trade": 35531,
                        "tradeBuy": 17249,
                        "tradeSell": 18282,
                        "volumeBuy": 94139.68529835819,
                        "volumeSell": 94360.37607161213
                      }
                    ]
                  }
                }
              }
            }
          }
        }
      },
      "TraderGainerLoserList": {
        "description": "JSON object containing a list of top gainer loser traders",
        "content": {
          "application/json": {
            "schema": {
              "$ref": "#/components/schemas/TraderGainerLoserResponse"
            },
            "examples": {
              "GainerList": {
                "value": {
                  "success": true,
                  "data": {
                    "items": [
                      {
                        "address": "1JKP3jcMcBzpp5SUSj9DFMFZGiJiXLyuRyGYcf6E97z",
                        "pnl": 67395290.55367899,
                        "realized_pnl": 761218.7928862367,
                        "unrealized_pnl": 66634071.76079275,
                        "volume": 7103127.149509426,
                        "trade_count": 83,
                        "network": "solana"
                      },
                      {
                        "address": "81m9aRw8RSAKchZ6pZo1L8m6DeJskq8hLZoTLU5gzoUc",
                        "pnl": 64080474.36939919,
                        "realized_pnl": -26045.200510758965,
                        "unrealized_pnl": 64106519.56990995,
                        "volume": 971495.1923311986,
                        "trade_count": 82,
                        "network": "solana"
                      }
                    ]
                  }
                }
              },
              "LoserList": {
                "value": {
                  "success": true,
                  "data": {
                    "items": [
                      {
                        "address": "CRSGeS8KFhkZ2uSVnFjuqDsGEK57RuLXdXnbA7bEpogm",
                        "pnl": -124.26538655906916,
                        "realized_pnl": 42563749.511075355,
                        "unrealized_pnl": -42563873.776461914,
                        "volume": 85127871.81831038,
                        "trade_count": 12,
                        "network": "solana"
                      },
                      {
                        "address": "HCPZJMSHXHn3uv1mvWH3NqjjWdUVZnu8zQk1HprF9DTq",
                        "pnl": -27.387685663998127,
                        "realized_pnl": 22160831.154574737,
                        "unrealized_pnl": -22160858.5422604,
                        "volume": 44321734.129539385,
                        "trade_count": 14,
                        "network": "solana"
                      }
                    ]
                  }
                }
              }
            }
          }
        }
      },
      "DefiTokenMarkets": {
        "description": "JSON object containing a list of markets of a token",
        "content": {
          "application/json": {
            "schema": {
              "$ref": "#/components/schemas/DefiTokenMarketsResponse"
            },
            "examples": {
              "Markets": {
                "value": {
                  "success": true,
                  "data": {
                    "items": [
                      {
                        "address": "Jito4APyf642JPZPx3hGc6WWJ8zPKtRbRs4P815Awbb",
                        "base": {
                          "address": "J1toso1uCk3RLmjorhTtrVwY9HJ7X8V9yYac6Y7kGCPn",
                          "decimals": 9,
                          "symbol": "JitoSOL",
                          "icon": "https://img.fotofolio.xyz/?url=https%3A%2F%2Fstorage.googleapis.com%2Ftoken-metadata%2FJitoSOL-256.png"
                        },
                        "createdAt": "2024-05-28T07:19:22.813Z",
                        "liquidity": 1733225301.1348372,
                        "name": "JitoSOL-SOL",
                        "price": null,
                        "quote": {
                          "address": "So11111111111111111111111111111111111111112",
                          "decimals": 9,
                          "icon": "https://img.fotofolio.xyz/?url=https%3A%2F%2Fraw.githubusercontent.com%2Fsolana-labs%2Ftoken-list%2Fmain%2Fassets%2Fmainnet%2FSo11111111111111111111111111111111111111112%2Flogo.png",
                          "symbol": "SOL"
                        },
                        "source": "Stake Pool",
                        "trade24h": 1021,
                        "trade24hChangePercent": 72.46621621621621,
                        "uniqueWallet24h": 382,
                        "uniqueWallet24hChangePercent": -13.769751693002258,
                        "volume24h": 7610352.270776577
                      }
                    ],
                    "total": 1523
                  }
                }
              }
            }
          }
        }
      },
      "AlltimeTradesResponse": {
        "description": "All time trading statistics by token address",
        "content": {
          "application/json": {
            "schema": {
              "type": "object",
              "properties": {
                "data": {
                  "type": "array",
                  "description": "All-time trading metrics grouped by token address.",
                  "items": {
                    "type": "object",
                    "properties": {
                      "address": {
                        "type": "string",
                        "description": "Token address.",
                        "example": "So11111111111111111111111111111111111111112"
                      },
                      "total_volume": {
                        "type": "number",
                        "description": "Total traded volume in token units.",
                        "example": 158766463.26959822
                      },
                      "total_volume_usd": {
                        "type": "number",
                        "description": "Total traded volume in USD.",
                        "example": 20188521260.405678
                      },
                      "volume_buy_usd": {
                        "type": "number",
                        "description": "Total buy volume in USD.",
                        "example": 20188521260.405678
                      },
                      "volume_sell_usd": {
                        "type": "number",
                        "description": "Total sell volume in USD.",
                        "example": 20188521260.405678
                      },
                      "volume_buy": {
                        "type": "number",
                        "description": "Total buy volume in token units.",
                        "example": 78227859.16098201
                      },
                      "volume_sell": {
                        "type": "number",
                        "description": "Total sell volume in token units.",
                        "example": 80538604.1086162
                      },
                      "total_trade": {
                        "type": "number",
                        "description": "Total trade count.",
                        "example": 258522892
                      },
                      "buy": {
                        "type": "number",
                        "description": "Total buy trade count.",
                        "example": 87829497
                      },
                      "sell": {
                        "type": "number",
                        "description": "Total sell trade count.",
                        "example": 170693395
                      }
                    }
                  }
                },
                "success": {
                  "type": "boolean",
                  "description": "Whether the request completed successfully.",
                  "example": true
                }
              }
            }
          }
        }
      },
      "AlltimePricesResponse": {
        "description": "All time high/low prices statistics by token address",
        "content": {
          "application/json": {
            "schema": {
              "type": "object",
              "properties": {
                "data": {
                  "type": "array",
                  "description": "All-time high and low price statistics grouped by token address.",
                  "items": {
                    "type": "object",
                    "properties": {
                      "address": {
                        "type": "string",
                        "description": "Token address.",
                        "example": "So11111111111111111111111111111111111111112"
                      },
                      "highest_price": {
                        "type": "number",
                        "description": "Highest price reached by the token.",
                        "example": 158766463.26959822
                      },
                      "highest_price_timestamp": {
                        "type": "number",
                        "description": "Unix timestamp of the highest price.",
                        "example": 20188521260
                      },
                      "v_highest_price": {
                        "type": "number",
                        "description": "Highest price expressed in the requested base denomination.",
                        "example": 20188521260.405678
                      },
                      "v_usd_highest_price": {
                        "type": "number",
                        "description": "Highest price expressed in USD.",
                        "example": 20188521260.405678
                      },
                      "lowest_price": {
                        "type": "number",
                        "description": "Lowest price reached by the token.",
                        "example": 158766463.26959822
                      },
                      "lowest_price_timestamp": {
                        "type": "number",
                        "description": "Unix timestamp of the lowest price.",
                        "example": 20188521260
                      },
                      "v_lowest_price": {
                        "type": "number",
                        "description": "Lowest price expressed in the requested base denomination.",
                        "example": 20188521260.405678
                      },
                      "v_usd_lowest_price": {
                        "type": "number",
                        "description": "Lowest price expressed in USD.",
                        "example": 20188521260.405678
                      }
                    }
                  }
                },
                "success": {
                  "type": "boolean",
                  "description": "Whether the request completed successfully.",
                  "example": true
                }
              }
            }
          }
        }
      },
      "AlltimeSingleTradeResponse": {
        "description": "All time trading statistics by token address",
        "content": {
          "application/json": {
            "schema": {
              "type": "object",
              "properties": {
                "data": {
                  "type": "object",
                  "description": "All-time trading metrics for a single token address.",
                  "properties": {
                    "address": {
                      "type": "string",
                      "description": "Token address.",
                      "example": "So11111111111111111111111111111111111111112"
                    },
                    "total_volume": {
                      "type": "number",
                      "description": "Total traded volume in token units.",
                      "example": 158766463.26959822
                    },
                    "total_volume_usd": {
                      "type": "number",
                      "description": "Total traded volume in USD.",
                      "example": 20188521260.405678
                    },
                    "volume_buy_usd": {
                      "type": "number",
                      "description": "Total buy volume in USD.",
                      "example": 20188521260.405678
                    },
                    "volume_sell_usd": {
                      "type": "number",
                      "description": "Total sell volume in USD.",
                      "example": 20188521260.405678
                    },
                    "volume_buy": {
                      "type": "number",
                      "description": "Total buy volume in token units.",
                      "example": 78227859.16098201
                    },
                    "volume_sell": {
                      "type": "number",
                      "description": "Total sell volume in token units.",
                      "example": 80538604.1086162
                    },
                    "total_trade": {
                      "type": "number",
                      "description": "Total trade count.",
                      "example": 258522892
                    },
                    "buy": {
                      "type": "number",
                      "description": "Total buy trade count.",
                      "example": 87829497
                    },
                    "sell": {
                      "type": "number",
                      "description": "Total sell trade count.",
                      "example": 170693395
                    }
                  }
                },
                "success": {
                  "type": "boolean",
                  "description": "Whether the request completed successfully.",
                  "example": true
                }
              }
            }
          }
        }
      },
      "AlltimeSinglePriceResponse": {
        "description": "All time high/low prices statistics by token address",
        "content": {
          "application/json": {
            "schema": {
              "type": "object",
              "properties": {
                "data": {
                  "type": "object",
                  "description": "All-time high and low price statistics for a single token address.",
                  "properties": {
                    "address": {
                      "type": "string",
                      "description": "Token address.",
                      "example": "So11111111111111111111111111111111111111112"
                    },
                    "highest_price": {
                      "type": "number",
                      "description": "Highest price reached by the token.",
                      "example": 158766463.26959822
                    },
                    "highest_price_timestamp": {
                      "type": "number",
                      "description": "Unix timestamp of the highest price.",
                      "example": 20188521260
                    },
                    "v_highest_price": {
                      "type": "number",
                      "description": "Highest price expressed in the requested base denomination.",
                      "example": 20188521260.405678
                    },
                    "v_usd_highest_price": {
                      "type": "number",
                      "description": "Highest price expressed in USD.",
                      "example": 20188521260.405678
                    },
                    "lowest_price": {
                      "type": "number",
                      "description": "Lowest price reached by the token.",
                      "example": 158766463.26959822
                    },
                    "lowest_price_timestamp": {
                      "type": "number",
                      "description": "Unix timestamp of the lowest price.",
                      "example": 20188521260
                    },
                    "v_lowest_price": {
                      "type": "number",
                      "description": "Lowest price expressed in the requested base denomination.",
                      "example": 20188521260.405678
                    },
                    "v_usd_lowest_price": {
                      "type": "number",
                      "description": "Lowest price expressed in USD.",
                      "example": 20188521260.405678
                    }
                  }
                },
                "success": {
                  "type": "boolean",
                  "description": "Whether the request completed successfully.",
                  "example": true
                }
              }
            }
          }
        }
      },
      "DefiTokenExitLiquidity": {
        "description": "JSON object containing exit liquidity data of a specific token",
        "content": {
          "application/json": {
            "schema": {
              "$ref": "#/components/schemas/DefiTokenExitLiquidityResponse"
            },
            "examples": {
              "TokenExitLiquidity": {
                "value": {
                  "data": {
                    "token": "0x60a3E35Cc302bFA44Cb288Bc5a4F316Fdb1adb42",
                    "exit_liquidity": 6787432.938612048,
                    "liquidity": 10355070.125772206,
                    "price": {
                      "value": 1.1515311597782227,
                      "update_unix_time": 1750385475,
                      "update_human_time": "2025-06-20T02:11:15",
                      "update_in_slot": 31798064
                    },
                    "currency": "USD",
                    "address": "0x60a3E35Cc302bFA44Cb288Bc5a4F316Fdb1adb42",
                    "name": "EURC",
                    "symbol": "EURC",
                    "decimals": 6,
                    "extensions": {
                      "twitter": "https://twitter.com/circlepay",
                      "website": "https://www.circle.com",
                      "telegram": null
                    },
                    "logo_uri": "https://coin-images.coingecko.com/coins/images/26045/small/euro.png?1696525125"
                  },
                  "success": true
                }
              }
            }
          }
        }
      },
      "DefiTokenExitLiquidityMultiple": {
        "description": "JSON object containing exit liquidity data of multiple tokens",
        "content": {
          "application/json": {
            "schema": {
              "$ref": "#/components/schemas/DefiTokenExitLiquidityMultipleResponse"
            },
            "examples": {
              "TokenMarketDataMultiple": {
                "value": {
                  "data": {
                    "items": [
                      {
                        "token": "0x60a3E35Cc302bFA44Cb288Bc5a4F316Fdb1adb42",
                        "exit_liquidity": 6719817.16468568,
                        "liquidity": 10277766.97799163,
                        "price": {
                          "value": 1.1516170107394188,
                          "update_unix_time": 1750385591,
                          "update_human_time": "2025-06-20T02:13:11",
                          "update_in_slot": 31798122
                        },
                        "currency": "USD",
                        "address": "0x60a3E35Cc302bFA44Cb288Bc5a4F316Fdb1adb42",
                        "name": "EURC",
                        "symbol": "EURC",
                        "decimals": 6,
                        "extensions": {
                          "twitter": "https://twitter.com/circlepay",
                          "website": "https://www.circle.com",
                          "telegram": null
                        },
                        "logo_uri": "https://coin-images.coingecko.com/coins/images/26045/small/euro.png?1696525125"
                      },
                      {
                        "token": "0xD7eA1d4d2528fc6Ff010006694C3489f386e2532",
                        "exit_liquidity": 162397.14079820755,
                        "liquidity": 324794.2815964151,
                        "price": {
                          "value": 0.0016673684083016622,
                          "update_unix_time": 1750385591,
                          "update_human_time": "2025-06-20T02:13:11",
                          "update_in_slot": 31798122
                        },
                        "currency": "USD",
                        "address": "0xD7eA1d4d2528fc6Ff010006694C3489f386e2532",
                        "name": "JPmorgan Dollar",
                        "symbol": "JPMD",
                        "decimals": 18,
                        "extensions": {
                          "twitter": null,
                          "website": null,
                          "telegram": null
                        },
                        "logo_uri": "https://dd.dexscreener.com/ds-data/tokens/base/0xd7ea1d4d2528fc6ff010006694c3489f386e2532.png?size=xl"
                      }
                    ]
                  },
                  "success": true
                }
              }
            }
          }
        }
      },
      "TokenHolderBatch": {
        "description": "JSON object containing token balances held by a list of wallet owners",
        "content": {
          "application/json": {
            "schema": {
              "$ref": "#/components/schemas/TokenHolderBatchResponse"
            },
            "examples": {
              "TokenMarketDataMultiple": {
                "value": {
                  "data": {
                    "items": [
                      {
                        "balance": "2039280",
                        "decimals": 9,
                        "mint": "So11111111111111111111111111111111111111112",
                        "owner": "2fgUSSpZFi8PjyhbrETSeLutJpFsuCfWsk2H6gb3Reye",
                        "amount": 0.00203928
                      },
                      {
                        "balance": "1563400084419",
                        "decimals": 9,
                        "mint": "So11111111111111111111111111111111111111112",
                        "owner": "CZY9M9BywshFAFjPw7uLgXw9yGtNL26YypLCJdewiHo",
                        "amount": 1563.400084419
                      },
                      {
                        "balance": "4961135742857367",
                        "decimals": 9,
                        "mint": "So11111111111111111111111111111111111111112",
                        "owner": "5Q544fKrFoe6tsEbD7S8EmxGTJYAKtTVhAW5Q5pge4j1",
                        "amount": 4961135.742857367
                      }
                    ]
                  },
                  "success": true
                }
              }
            }
          }
        }
      },
      "DefiMemeListResponse": {
        "description": "JSON object containing a list of meme token",
        "content": {
          "application/json": {
            "schema": {
              "$ref": "#/components/schemas/DefiMemeListSchemaResponse"
            },
            "examples": {
              "MemeTokenListData": {
                "value": {
                  "data": {
                    "items": [
                      {
                        "address": "4kniCuBuhsLBPv1zzGFEw8tySw6xV6NiHjme3pN8pump",
                        "logo_uri": "https://ipfs.io/ipfs/QmZF9uaGwUYYq4v9xbPxivHDH561jd1auoPQ8zZLmssLNx",
                        "name": "nothing ever Happens",
                        "symbol": "neh",
                        "decimals": 6,
                        "extensions": null,
                        "market_cap": 2378.761186407517,
                        "fdv": 2378.761186407517,
                        "total_supply": 1000000000,
                        "circulating_supply": 1000000000,
                        "liquidity": 0.32746902247014553,
                        "last_trade_unix_time": 1770718076,
                        "global_fees_paid": 5.5,
                        "volume_1m_usd": 0,
                        "volume_5m_usd": 0,
                        "volume_30m_usd": 83.33272090352035,
                        "volume_1m_change_percent": null,
                        "volume_5m_change_percent": null,
                        "volume_30m_change_percent": null,
                        "volume_1h_usd": 83.33272090352035,
                        "volume_1h_change_percent": null,
                        "volume_2h_usd": 83.33272090352035,
                        "volume_2h_change_percent": null,
                        "volume_4h_usd": 83.33272090352035,
                        "volume_4h_change_percent": null,
                        "volume_8h_usd": 83.33272090352035,
                        "volume_8h_change_percent": null,
                        "volume_24h_usd": 83.33272090352035,
                        "volume_24h_change_percent": null,
                        "volume_7d_usd": 83.33272090352035,
                        "volume_7d_change_percent": null,
                        "volume_30d_usd": 83.33272090352035,
                        "volume_30d_change_percent": null,
                        "trade_1m_count": 0,
                        "trade_5m_count": 0,
                        "trade_30m_count": 5,
                        "trade_1h_count": 5,
                        "trade_2h_count": 5,
                        "trade_4h_count": 5,
                        "trade_8h_count": 5,
                        "trade_24h_count": 5,
                        "trade_7d_count": 5,
                        "trade_30d_count": 5,
                        "buy_24h": 3,
                        "buy_24h_change_percent": null,
                        "volume_buy_24h_usd": 41.672060333790355,
                        "volume_buy_24h_change_percent": null,
                        "buy_7d": 3,
                        "buy_7d_change_percent": null,
                        "volume_buy_7d_usd": 41.672060333790355,
                        "volume_buy_7d_change_percent": null,
                        "buy_30d": 3,
                        "buy_30d_change_percent": null,
                        "volume_buy_30d_usd": 41.672060333790355,
                        "volume_buy_30d_change_percent": null,
                        "sell_24h": 2,
                        "sell_24h_change_percent": null,
                        "volume_sell_24h_usd": 41.66066056973,
                        "volume_sell_24h_change_percent": null,
                        "sell_7d": 2,
                        "sell_7d_change_percent": null,
                        "volume_sell_7d_usd": 41.66066056973,
                        "volume_sell_7d_change_percent": null,
                        "sell_30d": 2,
                        "sell_30d_change_percent": null,
                        "volume_sell_30d_usd": 41.66066056973,
                        "volume_sell_30d_change_percent": null,
                        "unique_wallet_24h": 3,
                        "unique_wallet_24h_change_percent": null,
                        "price": 0.000002378761186407517,
                        "price_change_1m_percent": 0,
                        "price_change_5m_percent": 0,
                        "price_change_30m_percent": -0.05600390312888975,
                        "price_change_1h_percent": -0.05600390312888975,
                        "price_change_2h_percent": -0.05600390312888975,
                        "price_change_4h_percent": -0.05600390312888975,
                        "price_change_8h_percent": -0.05600390312888975,
                        "price_change_24h_percent": -0.05600390312888975,
                        "price_change_7d_percent": -0.05600390312888975,
                        "price_change_30d_percent": -0.05600390312888975,
                        "holder": 2,
                        "recent_listing_time": 1770717909,
                        "meme_info": {
                          "created_at": {
                            "block_time": 1770717909,
                            "slot": 399301182,
                            "tx_hash": "57T66aM8PdrLG7mGZc4T2Uen8reC4jL9QStt8tkJcZUD5omVudbLm4tk8qrcV45Ar8i1KMTXaQxTFq8XbdGHnrSG"
                          },
                          "creator": "2J2rtMBRLxAbFkSLgrsuSNN8N5KMTJVaRTdnGfbZ5Vjw",
                          "address": "4kniCuBuhsLBPv1zzGFEw8tySw6xV6NiHjme3pN8pump",
                          "creation_time": 1770717909,
                          "graduated": false,
                          "pool": {
                            "address": "Chxbj4uRvwe94Pi4GYMgLQBkBABUJzyzoCbfMoBnQsev",
                            "real_sol_reserves": "99",
                            "real_token_reserves": "793099996586128",
                            "virtual_token_reserves": "1072999996586128",
                            "token_total_supply": "1000000000000000"
                          },
                          "progress_percent": 1.08639,
                          "source": "pump_dot_fun",
                          "platform_id": "6EF8rrecthR5Dkzon8Nwu78hRvfCKubJ14M5uBEwF6P",
                          "graduated_time": null
                        }
                      },
                      {
                        "address": "8avqVj8keXnxbNxDQ6w7rKZx2Sid8ygp1MBRnhqepump",
                        "logo_uri": "https://desperate-moccasin-minnow.myfilebase.com/ipfs/QmUPiDnnNMz3dkf8TVoknjyQsdAdixB72BMnURnByatYy9",
                        "name": "Nietzschean Giraffe",
                        "symbol": "GIRAFFEBETA",
                        "decimals": 6,
                        "extensions": null,
                        "market_cap": 2363.686706723888,
                        "fdv": 2363.686706723888,
                        "total_supply": 1000000000,
                        "circulating_supply": 1000000000,
                        "liquidity": 0.2631242285399431,
                        "last_trade_unix_time": 1770718296,
                        "global_fees_paid": 5.5,
                        "volume_1m_usd": 0,
                        "volume_5m_usd": 0,
                        "volume_30m_usd": 40.03289998373133,
                        "volume_1m_change_percent": null,
                        "volume_5m_change_percent": null,
                        "volume_30m_change_percent": null,
                        "volume_1h_usd": 40.03289998373133,
                        "volume_1h_change_percent": null,
                        "volume_2h_usd": 40.03289998373133,
                        "volume_2h_change_percent": null,
                        "volume_4h_usd": 40.03289998373133,
                        "volume_4h_change_percent": null,
                        "volume_8h_usd": 40.03289998373133,
                        "volume_8h_change_percent": null,
                        "volume_24h_usd": 40.03289998373133,
                        "volume_24h_change_percent": null,
                        "volume_7d_usd": 40.03289998373133,
                        "volume_7d_change_percent": null,
                        "volume_30d_usd": 40.03289998373133,
                        "volume_30d_change_percent": null,
                        "trade_1m_count": 0,
                        "trade_5m_count": 0,
                        "trade_30m_count": 5,
                        "trade_1h_count": 5,
                        "trade_2h_count": 5,
                        "trade_4h_count": 5,
                        "trade_8h_count": 5,
                        "trade_24h_count": 5,
                        "trade_7d_count": 5,
                        "trade_30d_count": 5,
                        "buy_24h": 3,
                        "buy_24h_change_percent": null,
                        "volume_buy_24h_usd": 20.026709987856,
                        "volume_buy_24h_change_percent": null,
                        "buy_7d": 3,
                        "buy_7d_change_percent": null,
                        "volume_buy_7d_usd": 20.026709987856,
                        "volume_buy_7d_change_percent": null,
                        "buy_30d": 3,
                        "buy_30d_change_percent": null,
                        "volume_buy_30d_usd": 20.026709987856,
                        "volume_buy_30d_change_percent": null,
                        "sell_24h": 2,
                        "sell_24h_change_percent": null,
                        "volume_sell_24h_usd": 20.00618999587533,
                        "volume_sell_24h_change_percent": null,
                        "sell_7d": 2,
                        "sell_7d_change_percent": null,
                        "volume_sell_7d_usd": 20.00618999587533,
                        "volume_sell_7d_change_percent": null,
                        "sell_30d": 2,
                        "sell_30d_change_percent": null,
                        "volume_sell_30d_usd": 20.00618999587533,
                        "volume_sell_30d_change_percent": null,
                        "unique_wallet_24h": 3,
                        "unique_wallet_24h_change_percent": null,
                        "price": 0.000002363686706723888,
                        "price_change_1m_percent": 0,
                        "price_change_5m_percent": 0,
                        "price_change_30m_percent": 0.02342091983003837,
                        "price_change_1h_percent": 0.02342091983003837,
                        "price_change_2h_percent": 0.02342091983003837,
                        "price_change_4h_percent": 0.02342091983003837,
                        "price_change_8h_percent": 0.02342091983003837,
                        "price_change_24h_percent": 0.02342091983003837,
                        "price_change_7d_percent": 0.02342091983003837,
                        "price_change_30d_percent": 0.02342091983003837,
                        "holder": 2,
                        "recent_listing_time": 1770717908,
                        "meme_info": {
                          "created_at": {
                            "block_time": 1770717908,
                            "slot": 399301180,
                            "tx_hash": "4nY7cpV4DWBhLUuKsYuXmhWKNgwrZT3Z4jB4ob31aVvsGjXnzpf56axwWkPLW6dQE3DCvoXdhC6tGuWcvh4xBqz2"
                          },
                          "creator": "DJ4hjUajRDySeCMppb6vqRN97HVuogGDAnwx2k6k1cEB",
                          "address": "8avqVj8keXnxbNxDQ6w7rKZx2Sid8ygp1MBRnhqepump",
                          "creation_time": 1770717908,
                          "graduated": false,
                          "pool": {
                            "address": "8ZL9WpMcHnrR9xGv5eVfNiYNCCdgBTNp3crAYpX74iVS",
                            "real_sol_reserves": "98765",
                            "real_token_reserves": "793096467588330",
                            "virtual_token_reserves": "1072996467588330",
                            "token_total_supply": "1000000000000000"
                          },
                          "progress_percent": 0.00045,
                          "source": "pump_dot_fun",
                          "platform_id": "6EF8rrecthR5Dkzon8Nwu78hRvfCKubJ14M5uBEwF6P",
                          "graduated_time": null
                        }
                      }
                    ],
                    "has_next": true
                  },
                  "success": true
                }
              }
            }
          }
        }
      },
      "DefiMemeDetailSingleResponse": {
        "description": "JSON object containing detail of the given meme token",
        "content": {
          "application/json": {
            "schema": {
              "$ref": "#/components/schemas/DefiMemeDetailSchemaResponse"
            },
            "examples": {
              "DefiMemeDetailSingleData": {
                "value": {
                  "data": {
                    "address": "6R3LxpHiE8RjTL7HnvKWtoQCHVA76CR1ebF9MYk61wzS",
                    "name": "RekaAI",
                    "symbol": "RekaAI",
                    "decimals": 6,
                    "extensions": {
                      "twitter": "https://x.com/FusionLab_Inc",
                      "website": "https://reka.ai",
                      "description": "Multimodal AI you can deploy anywhere"
                    },
                    "logo_uri": "https://ipfs.io/ipfs/QmXuk2dXxM5hYARaxoPyoryJm5UQHdTkEhXrtsFFU7Siay",
                    "price": 0.001,
                    "liquidity": 0.2919295560985348,
                    "global_fees_paid": 125.5,
                    "circulating_supply": 1000000000,
                    "market_cap": 1000000,
                    "total_supply": 1000000000,
                    "fdv": 1000000,
                    "meme_info": {
                      "source": "pump_dot_fun",
                      "platform_id": "6EF8rrecthR5Dkzon8Nwu78hRvfCKubJ14M5uBEwF6P",
                      "created_at": {
                        "tx_hash": "25CRJJs4B5NVTgu6Sv1mMVpnXYMT5HG7LcfmvXTV5Tkp1GN8ajXDTjW59NTFN1UsHkXjkfCeUs7gKQAzTufCjpnw",
                        "slot": 330948137,
                        "block_time": 1743653081
                      },
                      "creation_time": 1743653081,
                      "creator": "2suZVbGzdD1jdMFgyojG35TR6XWKFtSbprvjnTFAg8Ru",
                      "updated_at": {
                        "tx_hash": "25CRJJs4B5NVTgu6Sv1mMVpnXYMT5HG7LcfmvXTV5Tkp1GN8ajXDTjW59NTFN1UsHkXjkfCeUs7gKQAzTufCjpnw",
                        "slot": 330948137
                      },
                      "graduated_at": {
                        "slot": null,
                        "tx_hash": null,
                        "block_time": null
                      },
                      "graduated": false,
                      "graduated_time": null,
                      "pool": {
                        "address": "2T6KViNFRuQb1MiFbmEtM4cA1mK2ayHKJTZHJ9K7aNw4",
                        "real_sol_reserves": "0",
                        "real_token_reserves": "793100000000000",
                        "token_total_supply": "1000000000000000",
                        "virtual_token_reserves": "1073000000000000"
                      },
                      "progress_percent": 0,
                      "address": "6R3LxpHiE8RjTL7HnvKWtoQCHVA76CR1ebF9MYk61wzS"
                    }
                  },
                  "success": true
                }
              }
            }
          }
        }
      },
      "TokenHolderProfile": {
        "description": "JSON object containing token holder profile summary",
        "content": {
          "application/json": {
            "schema": {
              "$ref": "#/components/schemas/TokenHolderProfileResponse"
            },
            "examples": {
              "Sample": {
                "value": {
                  "success": true,
                  "data": {
                    "token": {
                      "creation_time": 1743621183,
                      "market_cap": 76953.927132964,
                      "liquidity": 31093.1204999,
                      "volume_1h": 98369093.075709,
                      "volume_1h_usd": 7724.716658279683,
                      "buy_volume_1h": 55864766.46463199,
                      "buy_volume_1h_usd": 4389.081586003591,
                      "sell_volume_1h": 42504326.61107701,
                      "sell_volume_1h_usd": 3335.6350722760917,
                      "is_scaled_ui_token": false,
                      "top10_holder": {
                        "hold_amount": "328262230.042939",
                        "percent_of_supply": 32.82937
                      }
                    },
                    "holder_summary": {
                      "total_holder": 409,
                      "total_holding": 516552632.417262,
                      "percent_of_supply": 51.660209
                    },
                    "tags": [
                      {
                        "tag": "bundler",
                        "holder_count": 404,
                        "hold_amount": "504468333.328127",
                        "percent_of_supply": 50.45166,
                        "buy_volume": "2323780188.2655096",
                        "sell_volume": "1845315786.9764643",
                        "buy_volume_usd": "329574.1593590265",
                        "sell_volume_usd": "259958.9376750694",
                        "avg_buy_price": "0.00014183",
                        "pnl": "-36019.85710298"
                      },
                      {
                        "tag": "sniper",
                        "holder_count": 0,
                        "hold_amount": "0",
                        "percent_of_supply": 0,
                        "buy_volume": "0",
                        "sell_volume": "0",
                        "buy_volume_usd": "0",
                        "sell_volume_usd": "0",
                        "avg_buy_price": "0",
                        "pnl": "0"
                      },
                      {
                        "tag": "insider",
                        "holder_count": 0,
                        "hold_amount": "0",
                        "percent_of_supply": 0,
                        "buy_volume": "0",
                        "sell_volume": "0",
                        "buy_volume_usd": "0",
                        "sell_volume_usd": "0",
                        "avg_buy_price": "0",
                        "pnl": "0"
                      },
                      {
                        "tag": "dev",
                        "holder_count": 1,
                        "hold_amount": "0",
                        "percent_of_supply": 0,
                        "buy_volume": "82538461.538461",
                        "sell_volume": "82538461.538461",
                        "buy_volume_usd": "209.95208323574846",
                        "sell_volume_usd": "332.72892173159056",
                        "avg_buy_price": "0.00000254",
                        "pnl": "122.77683849584209"
                      },
                      {
                        "tag": "smart_trader",
                        "holder_count": 0,
                        "hold_amount": "0",
                        "percent_of_supply": 0,
                        "buy_volume": "0",
                        "sell_volume": "0",
                        "buy_volume_usd": "0",
                        "sell_volume_usd": "0",
                        "avg_buy_price": "0",
                        "pnl": "0"
                      },
                      {
                        "tag": "kol",
                        "holder_count": 0,
                        "hold_amount": "0",
                        "percent_of_supply": 0,
                        "buy_volume": "0",
                        "sell_volume": "0",
                        "buy_volume_usd": "0",
                        "sell_volume_usd": "0",
                        "avg_buy_price": "0",
                        "pnl": "0"
                      }
                    ]
                  }
                }
              }
            }
          }
        }
      },
      "TokenFirstBuyers": {
        "description": "JSON object containing the first wallets that bought the token",
        "content": {
          "application/json": {
            "schema": {
              "$ref": "#/components/schemas/TokenFirstBuyersResponse"
            },
            "examples": {
              "Sample": {
                "value": {
                  "success": true,
                  "data": {
                    "token_address": "39i5b9Q3UWpsxaEVqmtyXLzYBFijBN9f6GsRGyY8pump",
                    "flow": "buy",
                    "page_summary": {
                      "total_wallets": 2,
                      "buy_more": 1,
                      "hold": 0,
                      "sell_partial": 0,
                      "sell_all": 1
                    },
                    "buyers": [
                      {
                        "wallet_address": "DuojVrALrNwwck6bqrLXPuiBnYVnc1ekfcjyeWDeTAdi",
                        "block_number": 422919059,
                        "block_unix_time": 1780050060,
                        "first_buy_volume": 10625406.111661,
                        "first_buy_volume_usd": 24.659147767012907,
                        "total_buy_volume": 10625406.111661,
                        "total_buy_volume_usd": 24.659147767012907,
                        "initial_holding": 10625406.111661,
                        "current_holding": 0,
                        "position_status": "sell_all",
                        "tags": [
                          "bundler",
                          "sniper"
                        ]
                      },
                      {
                        "wallet_address": "Gygj9QQby4j2jryqyqBHvLP7ctv2SaANgh4sCb69BUpA",
                        "block_number": 422919061,
                        "block_unix_time": 1780050061,
                        "first_buy_volume": 32804387.246183004,
                        "first_buy_volume_usd": 57.38558677840249,
                        "total_buy_volume": 41000000.5,
                        "total_buy_volume_usd": 72.15,
                        "initial_holding": 32804387.246183004,
                        "current_holding": 41000000.5,
                        "position_status": "buy_more",
                        "tags": [
                          "smart_trader"
                        ]
                      }
                    ]
                  }
                }
              }
            }
          }
        }
      },
      "TokenHolderPosition": {
        "description": "JSON array containing token holder position details",
        "content": {
          "application/json": {
            "schema": {
              "$ref": "#/components/schemas/TokenHolderPositionResponse"
            },
            "examples": {
              "Sample": {
                "value": {
                  "success": true,
                  "data": [
                    {
                      "wallet_address": "Ddh8bLNrt44uRttF7wTZcZQAy5LH4vBEJiPHinasW6Ee",
                      "hold_amount": "29071167.107303",
                      "percent_of_supply": 2.90729,
                      "buy_volume": "29071167.107303",
                      "sell_volume": "0",
                      "buy_volume_usd": "503.7999904930808",
                      "sell_volume_usd": "0",
                      "avg_buy_price": "0.00001733",
                      "pnl": "-402.7013196418882",
                      "buy_count": 8,
                      "sell_count": 0,
                      "first_trade_at": "2026-03-30T17:09:53Z",
                      "labels": [
                        "bundler",
                        "sniper"
                      ]
                    }
                  ]
                }
              }
            }
          }
        }
      },
      "TokenHolderDistribution": {
        "description": "JSON object containing token holder distribution details",
        "content": {
          "application/json": {
            "schema": {
              "$ref": "#/components/schemas/TokenHolderDistributionResponse"
            },
            "examples": {
              "By wallet (default address_type=wallet)": {
                "value": {
                  "success": true,
                  "data": {
                    "token_address": "11111Zxp8hv4GVzZTWcgcFTcFCfPzW8YmbwvGahTBP",
                    "mode": "percent",
                    "summary": {
                      "wallet_count": 2,
                      "total_holding": "0.007374018405092705",
                      "percent_of_supply": 0.0000017374018405092703
                    },
                    "holders": [
                      {
                        "wallet": "aXG7W1eYYHN3SyAp515Dqu595wzNJxdGtcG5sjLVky1",
                        "holding": "0.000017910381239401126",
                        "percent_of_supply": 0.0000017910381239401128
                      },
                      {
                        "wallet": "aXG7W1wjjgiNnu8emgqJsTqbN86B8KEeKhN4J4JChqd",
                        "holding": "0.0000007910381239401126",
                        "percent_of_supply": 0.0000017910381239401128
                      }
                    ]
                  }
                }
              },
              "By token account (address_type=token_account)": {
                "value": {
                  "success": true,
                  "data": {
                    "token_address": "5nC81GfjADGGWTiTn2pSrzSefErvya1zUqKq1Ttio7N7",
                    "mode": "percent",
                    "summary": {
                      "wallet_count": 2,
                      "total_holding": "292058.747997",
                      "percent_of_supply": 100
                    },
                    "holders": [
                      {
                        "token_account": "7Sq3fyMWeE87pgi5G1E7HP3EuEHmkSDySpCQdZT9Bvc9",
                        "holding": "292057.747997",
                        "percent_of_supply": 99.99966
                      },
                      {
                        "token_account": "BG5hdVb1Ji3fSWMULxWxTsi3fRnddt6q31JWib1261ew",
                        "holding": "1",
                        "percent_of_supply": 0.00034
                      }
                    ]
                  }
                }
              }
            }
          }
        }
      },
      "ChartHolderResponse": {
        "description": "JSON object containing token holder-count chart data",
        "content": {
          "application/json": {
            "schema": {
              "$ref": "#/components/schemas/TokenHolderChartResponse"
            },
            "examples": {
              "solana": {
                "value": {
                  "data": [
                    {
                      "timestamp": 1763608550,
                      "holder": 4451715,
                      "net_change": -160,
                      "percent_change": -0.0035939912958023305
                    },
                    {
                      "timestamp": 1763608548,
                      "holder": 4451713,
                      "net_change": -162,
                      "percent_change": -0.00363891618699986
                    }
                  ],
                  "success": true
                }
              }
            }
          }
        }
      },
      "DefiTokenFeeSingle": {
        "description": "JSON object containing global fees paid data for a token",
        "content": {
          "application/json": {
            "schema": {
              "$ref": "#/components/schemas/DefiTokenFeeSingleResponse"
            },
            "examples": {
              "TokenFeeSingle": {
                "value": {
                  "success": true,
                  "data": {
                    "5m": {
                      "summary": {
                        "sum_global_fee_paid_amount_sol": 2.260741268,
                        "sum_network_fee_amount_sol": 0.00409,
                        "sum_priority_fee_amount_sol": 0.264060373,
                        "sum_tips_fee_amount_sol": 0.084882903,
                        "sum_trading_platform_fee_amount_sol": 1.907707992,
                        "sum_trading_platform_fee_amount_stablecoins": 20.888957
                      },
                      "details": {
                        "tips_fee_amount_sol": {
                          "block_razor": 0.0008785,
                          "jito": 0.027954592,
                          "helius_sender": 0.003794858,
                          "bloxroute": 0.0155,
                          "0slot": 0.016689954,
                          "nozomi": 0.007,
                          "nextblock": 0.013,
                          "astralane": 0.000064999
                        },
                        "trading_platform_fee_amount_sol": {
                          "axiom": 1.094898688,
                          "padre": 0.240799484,
                          "gmgn": 0.265565729,
                          "photon": 0.149330908,
                          "trojan": 0.109667944,
                          "bullx": 0.005773436,
                          "bloom": 0.03079268,
                          "bonkbot": 0.010879123
                        },
                        "trading_platform_fee_amout_stablecoins": {
                          "fomo": 19.838957,
                          "gmgn": 1.05
                        }
                      },
                      "unix_start": 1779869700,
                      "unix_end": 1779870005
                    },
                    "alltime": {
                      "summary": {
                        "sum_global_fee_paid_amount_sol": 14.072168125,
                        "sum_network_fee_amount_sol": 0.021225,
                        "sum_priority_fee_amount_sol": 1.502911309,
                        "sum_tips_fee_amount_sol": 0.645540837,
                        "sum_trading_platform_fee_amount_sol": 11.902490979,
                        "sum_trading_platform_fee_amount_stablecoins": 93.877686
                      },
                      "details": {
                        "tips_fee_amount_sol": {
                          "helius_sender": 0.03185853,
                          "0slot": 0.099127349,
                          "jito": 0.313039066,
                          "nozomi": 0.070482395,
                          "astralane": 0.014424995,
                          "nextblock": 0.01403,
                          "bloxroute": 0.0955,
                          "block_razor": 0.007078502
                        },
                        "trading_platform_fee_amount_sol": {
                          "axiom": 7.315011285,
                          "trojan": 0.31617015,
                          "gmgn": 1.338555658,
                          "bonkbot": 0.335715947,
                          "bloom": 0.212465719,
                          "maestro": 0.053424493,
                          "photon": 0.554688827,
                          "padre": 1.725283079,
                          "soltradingbot": 0.00303525,
                          "bullx": 0.048140571
                        },
                        "trading_platform_fee_amout_stablecoins": {
                          "fomo": 77.976457,
                          "gmgn": 14.504494,
                          "padre": 1.396735
                        }
                      }
                    },
                    "24h": {
                      "summary": {
                        "sum_global_fee_paid_amount_sol": 14.072168125,
                        "sum_network_fee_amount_sol": 0.021225,
                        "sum_priority_fee_amount_sol": 1.502911309,
                        "sum_tips_fee_amount_sol": 0.645540837,
                        "sum_trading_platform_fee_amount_sol": 11.902490979,
                        "sum_trading_platform_fee_amount_stablecoins": 93.877686
                      },
                      "details": {
                        "tips_fee_amount_sol": {
                          "helius_sender": 0.03185853,
                          "0slot": 0.099127349,
                          "jito": 0.313039066,
                          "nozomi": 0.070482395,
                          "astralane": 0.014424995,
                          "nextblock": 0.01403,
                          "bloxroute": 0.0955,
                          "block_razor": 0.007078502
                        },
                        "trading_platform_fee_amount_sol": {
                          "axiom": 7.315011285,
                          "trojan": 0.31617015,
                          "gmgn": 1.338555658,
                          "bonkbot": 0.335715947,
                          "bloom": 0.212465719,
                          "maestro": 0.053424493,
                          "photon": 0.554688827,
                          "padre": 1.725283079,
                          "soltradingbot": 0.00303525,
                          "bullx": 0.048140571
                        },
                        "trading_platform_fee_amout_stablecoins": {
                          "fomo": 77.976457,
                          "gmgn": 14.504494,
                          "padre": 1.396735
                        }
                      },
                      "unix_start": 1779782400,
                      "unix_end": 1779870600
                    }
                  }
                }
              }
            }
          }
        }
      },
      "DefiTokenFeeMultiple": {
        "description": "JSON object containing global fees paid data for multiple tokens",
        "content": {
          "application/json": {
            "schema": {
              "$ref": "#/components/schemas/DefiTokenFeeMultipleResponse"
            },
            "examples": {
              "TokenFeeMultiple": {
                "value": {
                  "success": true,
                  "data": {
                    "7c23msBoMSmCAcTkFJd4vksE2XfrPmG9U2xffi86pump": {
                      "alltime": {
                        "summary": {
                          "sum_global_fee_paid_amount_sol": 31.844065518,
                          "sum_network_fee_amount_sol": 0.050545,
                          "sum_priority_fee_amount_sol": 3.957795217,
                          "sum_tips_fee_amount_sol": 1.640402995,
                          "sum_trading_platform_fee_amount_sol": 26.195322306,
                          "sum_trading_platform_fee_amount_stablecoins": 234.171577
                        },
                        "details": {
                          "tips_fee_amount_sol": {
                            "helius_sender": 0.085467223,
                            "0slot": 0.20945561,
                            "jito": 0.634858717,
                            "nozomi": 0.173040199,
                            "astralane": 0.053583969,
                            "nextblock": 0.01403,
                            "bloxroute": 0.452099869,
                            "block_razor": 0.016867408,
                            "node1": 0.001
                          },
                          "trading_platform_fee_amount_sol": {
                            "axiom": 15.716007989,
                            "trojan": 0.94711087,
                            "gmgn": 3.141299238,
                            "bonkbot": 0.542045413,
                            "bloom": 0.271720043,
                            "maestro": 0.080572133,
                            "photon": 1.351992787,
                            "padre": 3.987016904,
                            "soltradingbot": 0.00843525,
                            "bullx": 0.149121679
                          },
                          "trading_platform_fee_amout_stablecoins": {
                            "fomo": 205.286954,
                            "gmgn": 20.889774,
                            "padre": 7.994849
                          }
                        }
                      }
                    },
                    "AG98yS95WVxnz7ZpkaNuznnA1wZs9nyWCghMNjZEpump": {
                      "alltime": {
                        "summary": {
                          "sum_global_fee_paid_amount_sol": 11.87455467,
                          "sum_network_fee_amount_sol": 0.018465,
                          "sum_priority_fee_amount_sol": 1.892790462,
                          "sum_tips_fee_amount_sol": 0.690320681,
                          "sum_trading_platform_fee_amount_sol": 9.272978527,
                          "sum_trading_platform_fee_amount_stablecoins": 36.344839
                        },
                        "details": {
                          "tips_fee_amount_sol": {
                            "jito": 0.188022601,
                            "helius_sender": 0.025562077,
                            "0slot": 0.146888977,
                            "astralane": 0.01046,
                            "nozomi": 0.217246026,
                            "block_razor": 0.004541,
                            "node1": 0.0016,
                            "bloxroute": 0.096
                          },
                          "trading_platform_fee_amount_sol": {
                            "axiom": 6.083450079,
                            "padre": 1.205023533,
                            "gmgn": 0.978933497,
                            "trojan": 0.25310262,
                            "bonkbot": 0.256948374,
                            "photon": 0.311659393,
                            "bloom": 0.138585876,
                            "maestro": 0.023461059,
                            "bullx": 0.01,
                            "soltradingbot": 0.011814096
                          },
                          "trading_platform_fee_amout_stablecoins": {
                            "gmgn": 22.276849,
                            "fomo": 11.414191,
                            "padre": 2.653799
                          }
                        }
                      }
                    }
                  }
                }
              }
            }
          }
        }
      },
      "ChartTagHolderResponse": {
        "description": "JSON object containing holder chart data grouped by tag type",
        "content": {
          "application/json": {
            "schema": {
              "$ref": "#/components/schemas/ChartTagHoldingsResponse"
            },
            "examples": {
              "solana": {
                "value": {
                  "data": {
                    "bundler": [
                      {
                        "total_holder": 2,
                        "total_holding": 0.000002,
                        "time": 1700697600
                      }
                    ],
                    "sniper": [
                      {
                        "total_holder": 1,
                        "total_holding": 0,
                        "time": 1700697600
                      }
                    ]
                  },
                  "success": true
                }
              }
            }
          }
        }
      },
      "TokenWalletTagsTracker": {
        "description": "JSON object containing tagged-wallet trading activity bucketed by interval, grouped by tag, by exact tag combination, and by top 10 holder",
        "content": {
          "application/json": {
            "schema": {
              "$ref": "#/components/schemas/TokenWalletTagsTrackerResponse"
            },
            "examples": {
              "Sample": {
                "value": {
                  "success": true,
                  "data": {
                    "token_address": "2RaLR1kY37bbNfqWTK49AiCbPtdF27497jZ6DatKpump",
                    "time_frame": "1m",
                    "groups": {
                      "tags": {
                        "dev": [
                          {
                            "unix_time": 1792800060,
                            "volume_buy": 200,
                            "volume_sell": 60,
                            "volume_buy_usd": 200,
                            "volume_sell_usd": 60,
                            "wallet_buy_count": 1,
                            "wallet_sell_count": 1,
                            "tx_buy_count": 1,
                            "tx_sell_count": 1
                          }
                        ],
                        "sniper": [
                          {
                            "unix_time": 1792800060,
                            "volume_buy": 240,
                            "volume_sell": 0,
                            "volume_buy_usd": 240,
                            "volume_sell_usd": 0,
                            "wallet_buy_count": 2,
                            "wallet_sell_count": 0,
                            "tx_buy_count": 2,
                            "tx_sell_count": 0
                          }
                        ],
                        "smart_trader": [
                          {
                            "unix_time": 1792800180,
                            "volume_buy": 150,
                            "volume_sell": 0,
                            "volume_buy_usd": 150,
                            "volume_sell_usd": 0,
                            "wallet_buy_count": 1,
                            "wallet_sell_count": 0,
                            "tx_buy_count": 1,
                            "tx_sell_count": 0
                          }
                        ]
                      },
                      "tag_combinations": {
                        "dev": [
                          {
                            "unix_time": 1792800060,
                            "volume_buy": 0,
                            "volume_sell": 60,
                            "volume_buy_usd": 0,
                            "volume_sell_usd": 60,
                            "wallet_buy_count": 0,
                            "wallet_sell_count": 1,
                            "tx_buy_count": 0,
                            "tx_sell_count": 1
                          }
                        ],
                        "sniper": [
                          {
                            "unix_time": 1792800060,
                            "volume_buy": 40,
                            "volume_sell": 0,
                            "volume_buy_usd": 40,
                            "volume_sell_usd": 0,
                            "wallet_buy_count": 1,
                            "wallet_sell_count": 0,
                            "tx_buy_count": 1,
                            "tx_sell_count": 0
                          }
                        ],
                        "dev_sniper": [
                          {
                            "unix_time": 1792800060,
                            "volume_buy": 200,
                            "volume_sell": 0,
                            "volume_buy_usd": 200,
                            "volume_sell_usd": 0,
                            "wallet_buy_count": 1,
                            "wallet_sell_count": 0,
                            "tx_buy_count": 1,
                            "tx_sell_count": 0
                          }
                        ],
                        "smart_trader": [
                          {
                            "unix_time": 1792800180,
                            "volume_buy": 150,
                            "volume_sell": 0,
                            "volume_buy_usd": 150,
                            "volume_sell_usd": 0,
                            "wallet_buy_count": 1,
                            "wallet_sell_count": 0,
                            "tx_buy_count": 1,
                            "tx_sell_count": 0
                          }
                        ]
                      },
                      "top_10_holder": [
                        {
                          "unix_time": 1792800120,
                          "volume_buy": 300,
                          "volume_sell": 0,
                          "volume_buy_usd": 300,
                          "volume_sell_usd": 0,
                          "wallet_buy_count": 1,
                          "wallet_sell_count": 0,
                          "tx_buy_count": 1,
                          "tx_sell_count": 0
                        }
                      ]
                    },
                    "has_more": false
                  }
                }
              }
            }
          }
        }
      },
      "TokenWalletTagsTrackerDetails": {
        "description": "JSON object containing the per-bucket wallet drilldown for tagged wallets: each time bucket lists the wallets that traded in it with their buy/sell volume and transaction counts",
        "content": {
          "application/json": {
            "schema": {
              "$ref": "#/components/schemas/TokenWalletTagsTrackerDetailsResponse"
            },
            "examples": {
              "Sample": {
                "value": {
                  "success": true,
                  "data": {
                    "token_address": "9cRCn9rGT8V2imeM2BaKs13yhMEais3ruM3rPvTGpump",
                    "time_frame": "1D",
                    "items": [
                      {
                        "unix_time": 1785024000,
                        "wallets": [
                          {
                            "wallet": "kn9DxXLihmitnvKTt33wvwzWQHmeX34MUNDsmbt3zNH",
                            "volume_buy": 0,
                            "volume_sell": 1852281.332125,
                            "volume_buy_usd": 0,
                            "volume_sell_usd": 346515.28093932976,
                            "tx_buy_count": 0,
                            "tx_sell_count": 19,
                            "tags": [
                              "dev",
                              "sniper",
                              "smart_trader"
                            ],
                            "is_top_10_holder": true
                          },
                          {
                            "wallet": "6JJdhkhk2fsxJcv5f2pEfrkMfHDe6bJSWT6JF2pUXGAK",
                            "volume_buy": 154123.11024299997,
                            "volume_sell": 458600,
                            "volume_buy_usd": 28295.629788006085,
                            "volume_sell_usd": 88923.28892993511,
                            "tx_buy_count": 15,
                            "tx_sell_count": 60,
                            "tags": [
                              "smart_trader"
                            ]
                          }
                        ]
                      }
                    ],
                    "has_more": true,
                    "next_time_from": 1785112156
                  }
                }
              }
            }
          }
        }
      },
      "TraderTxsSeekByTime": {
        "description": "JSON object containing transactions of a trader",
        "content": {
          "application/json": {
            "schema": {
              "$ref": "#/components/schemas/V3TradeListResponse"
            },
            "examples": {
              "SolanaScaledUIAmount": {
                "value": {
                  "success": true,
                  "data": {
                    "items": [
                      {
                        "quote": {
                          "symbol": "SOL",
                          "decimals": 9,
                          "address": "So11111111111111111111111111111111111111112",
                          "amount": 8791828613200,
                          "type": "split",
                          "type_swap": "to",
                          "ui_amount": 8791.8286132,
                          "price": 182.32478738013168,
                          "nearest_price": 182.32478738013168,
                          "change_amount": 8791828613200,
                          "ui_change_amount": 8791.8286132,
                          "is_scaled_ui_token": false,
                          "multiplier": null
                        },
                        "base": {
                          "symbol": "BNSOL",
                          "decimals": 9,
                          "address": "BNso1VUJnh4zcfpZa6986Ea66P6TCp59hvtNJ8b1X85",
                          "amount": 8243057055060,
                          "type": "burn",
                          "type_swap": "from",
                          "ui_amount": 8243.05705506,
                          "price": 195.07266605796318,
                          "nearest_price": 195.07266605796318,
                          "change_amount": -8243057055060,
                          "ui_change_amount": -8243.05705506,
                          "is_scaled_ui_token": false,
                          "multiplier": null
                        },
                        "base_price": 195.07266605796318,
                        "quote_price": 182.32478738013168,
                        "tx_hash": "3tiVFmNkAzesSgJ8RJfRMFSMSTGMbvVd8Qm23uroSCPQFSi6rqhr9tqCCRCu4nZD8u3jLVMcuh3qxmEzFnbS61rF",
                        "source": "stake_pool",
                        "block_unix_time": 1754870741,
                        "tx_type": "swap",
                        "address": "Hr9pzexrBge3vgmBNRR8u42CNQgBXdHm4UkUN2DH4a7r",
                        "owner": "GBJ4MZe8fqpA6UVgjh19BwJPMb79KDfMv78XnFVxgH2Q",
                        "block_number": 359226070,
                        "volume_usd": 1602968.2825842479,
                        "volume": 8243.05705506,
                        "ins_index": 2,
                        "inner_ins_index": 0,
                        "signers": [
                          "GBJ4MZe8fqpA6UVgjh19BwJPMb79KDfMv78XnFVxgH2Q",
                          "5Z4RXtFUSBzQeptBRxBT4PHFMdMqgTt6YXNwEgngcSQ7"
                        ],
                        "interacted_program_id": "bn1dUNRecofQLxcGp895mGmKEVtFLMjdvjxBjFqhFU7"
                      }
                    ],
                    "hasNext": true
                  }
                }
              },
              "Solana": {
                "value": {
                  "success": true,
                  "data": {
                    "items": [
                      {
                        "quote": {
                          "symbol": "SOL",
                          "decimals": 9,
                          "address": "So11111111111111111111111111111111111111112",
                          "amount": 1514222137120,
                          "type": "transfer",
                          "type_swap": "from",
                          "ui_amount": 1514.22213712,
                          "price": 147.08334361834326,
                          "nearest_price": 147.08334361834326,
                          "change_amount": -1514222137120,
                          "ui_change_amount": -1514.22213712
                        },
                        "base": {
                          "symbol": "BNSOL",
                          "decimals": 9,
                          "address": "BNso1VUJnh4zcfpZa6986Ea66P6TCp59hvtNJ8b1X85",
                          "amount": 1430091473491,
                          "type": "mintTo",
                          "type_swap": "to",
                          "ui_amount": 1430.091473491,
                          "price": 155.4548663026571,
                          "nearest_price": 155.4548663026571,
                          "change_amount": 1430091473491,
                          "ui_change_amount": 1430.091473491
                        },
                        "base_price": 155.4548663026571,
                        "quote_price": 147.08334361834326,
                        "tx_hash": "3fXZUQds8F1vCPwCvB8hSNumrzHjTmCgLdmNdqAWTBvrWuJE71XqdLmnK9wkZPahJQdJidadCMjKbXKF7rAAvByt",
                        "source": "stake_pool",
                        "block_unix_time": 1750377939,
                        "tx_type": "swap",
                        "address": "Hr9pzexrBge3vgmBNRR8u42CNQgBXdHm4UkUN2DH4a7r",
                        "owner": "GBJ4MZe8fqpA6UVgjh19BwJPMb79KDfMv78XnFVxgH2Q",
                        "block_number": 347921215,
                        "volume_usd": 222716.85490852306,
                        "volume": 1430.091473491,
                        "ins_index": 1,
                        "inner_ins_index": 0,
                        "signers": [
                          "GBJ4MZe8fqpA6UVgjh19BwJPMb79KDfMv78XnFVxgH2Q"
                        ],
                        "interacted_program_id": "bn1dUNRecofQLxcGp895mGmKEVtFLMjdvjxBjFqhFU7"
                      }
                    ],
                    "hasNext": true
                  }
                }
              },
              "EVM": {
                "value": {
                  "data": {
                    "items": [
                      {
                        "quote": {
                          "symbol": "USDTB",
                          "decimals": 18,
                          "address": "0xC139190F447e929f090Edeb554D95AbB8b18aC1C",
                          "name": "USDtb",
                          "amount": 93773757100000000000,
                          "mint": "0xC139190F447e929f090Edeb554D95AbB8b18aC1C",
                          "type_swap": "from",
                          "ui_amount": 93.7737571,
                          "price": 1.000610301093257,
                          "nearest_price": 1.0001633146747766,
                          "change_amount": -93773757100000000000,
                          "ui_change_amount": -93.7737571
                        },
                        "base": {
                          "symbol": "USDE",
                          "decimals": 18,
                          "address": "0x4c9EDD5852cd905f086C759E8383e09bff1E68B3",
                          "name": "Ethena USDe",
                          "amount": 93874755715366390000,
                          "mint": "0x4c9EDD5852cd905f086C759E8383e09bff1E68B3",
                          "type_swap": "to",
                          "ui_amount": 93.87475571536639,
                          "price": 0.9995337576267879,
                          "nearest_price": 0.9995337576267879,
                          "change_amount": 93874755715366390000,
                          "ui_change_amount": 93.87475571536639
                        },
                        "base_price": 0.9995337576267879,
                        "quote_price": 1.000610301093257,
                        "tx_hash": "0x87a45becbdfae806c25dd75d5aec6fe40e5d646e63fdb24e2a5697aae02b2663",
                        "source": "0x2D9Bf9C1beFd77C094461df615bdbE905895f7C6",
                        "block_unix_time": 1744125659,
                        "tx_type": "swap",
                        "address": "0x2D9Bf9C1beFd77C094461df615bdbE905895f7C6",
                        "owner": "0xE76aDA2ADE5585859789b3500DDE494e5479fb75",
                        "block_number": 22225044,
                        "volume_usd": 93.83098732647694,
                        "volume": 93.87475571536639,
                        "ins_index": 4,
                        "interacted_program_id": "0x45312ea0eFf7E09C83CBE249fa1d7598c4C8cd4e"
                      }
                    ],
                    "has_next": true
                  },
                  "success": true
                }
              }
            }
          }
        }
      },
      "WalletTokenList": {
        "description": "JSON object containing a wallet's token holdings, with one row per token and optional total USD value.",
        "content": {
          "application/json": {
            "schema": {
              "$ref": "#/components/schemas/WalletTokenListResponseSchema"
            },
            "examples": {
              "SolanaScaledUIAmount": {
                "value": {
                  "success": true,
                  "data": {
                    "items": [
                      {
                        "address": "So11111111111111111111111111111111111111112",
                        "decimals": 9,
                        "balance": 130718,
                        "uiAmount": 0.000130718,
                        "chainId": "solana",
                        "name": "Wrapped SOL",
                        "symbol": "SOL",
                        "icon": "https://raw.githubusercontent.com/solana-labs/token-list/main/assets/mainnet/So11111111111111111111111111111111111111112/logo.png",
                        "logoURI": "https://raw.githubusercontent.com/solana-labs/token-list/main/assets/mainnet/So11111111111111111111111111111111111111112/logo.png",
                        "priceUsd": 186.35315787784225,
                        "valueUsd": 0.02435971209147578,
                        "isScaledUiToken": false,
                        "multiplier": null
                      },
                      {
                        "address": "J1toso1uCk3RLmjorhTtrVwY9HJ7X8V9yYac6Y7kGCPn",
                        "decimals": 9,
                        "balance": 20280,
                        "uiAmount": 0.00002028,
                        "chainId": "solana",
                        "name": "Jito Staked SOL",
                        "symbol": "JitoSOL",
                        "icon": "https://storage.googleapis.com/token-metadata/JitoSOL-256.png",
                        "logoURI": "https://storage.googleapis.com/token-metadata/JitoSOL-256.png",
                        "priceUsd": 227.7398265331134,
                        "valueUsd": 0.0046185636820915395,
                        "isScaledUiToken": false,
                        "multiplier": null
                      },
                      {
                        "address": "J3NKxxXZcnNiMjKw9hYb2K4LUxgwB6t1FtPtQVsv3KFr",
                        "decimals": 8,
                        "balance": 3159,
                        "uiAmount": 0.00003159,
                        "chainId": "solana",
                        "name": "SPX6900 (Wormhole)",
                        "symbol": "SPX",
                        "icon": "https://i.postimg.cc/w3Yq0dHf/2023-12-21-17-19-37.jpg",
                        "logoURI": "https://i.postimg.cc/w3Yq0dHf/2023-12-21-17-19-37.jpg",
                        "priceUsd": 1.9727875449629464,
                        "valueUsd": 0.00006232035854537948,
                        "isScaledUiToken": false,
                        "multiplier": null
                      }
                    ]
                  }
                }
              },
              "Solana": {
                "value": {
                  "success": true,
                  "data": {
                    "wallet": "Gt4RRcMg2mzEN9SDtSUjEjezC9b1nXjEGDQyEVbrc7Sk",
                    "totalUsd": 47.28979693780992,
                    "items": [
                      {
                        "address": "EPjFWdd5AufqSSqeM2qN1xzybapC8G4wEGGkZwyTDt1v",
                        "decimals": 6,
                        "balance": 47289918,
                        "uiAmount": 47.289918,
                        "chainId": "solana",
                        "name": "USD Coin",
                        "symbol": "USDC",
                        "logoURI": "https://raw.githubusercontent.com/solana-labs/token-list/main/assets/mainnet/EPjFWdd5AufqSSqeM2qN1xzybapC8G4wEGGkZwyTDt1v/logo.png",
                        "priceUsd": 0.99999744,
                        "valueUsd": 47.28979693780992
                      }
                    ]
                  }
                }
              },
              "EVM": {
                "value": {
                  "success": true,
                  "data": {
                    "wallet": "0xf584f8728b874a6a5c7a8d4d387c9aae9172d621",
                    "totalUsd": 177417911.42802328,
                    "items": [
                      {
                        "address": "0xdAC17F958D2ee523a2206206994597C13D831ec7",
                        "name": "Tether USD",
                        "symbol": "USDT",
                        "decimals": 6,
                        "balance": "72938605011215",
                        "uiAmount": 72938605.011215,
                        "chainId": "ethereum",
                        "logoURI": "https://assets.coingecko.com/coins/images/325/small/Tether.png?1668148663",
                        "priceUsd": 1.0000259715445037,
                        "valueUsd": 72940499.33944109
                      }
                    ]
                  }
                }
              }
            }
          }
        }
      },
      "WalletTokenBalance": {
        "description": "JSON object containing the balance and USD value for a single token holding.",
        "content": {
          "application/json": {
            "schema": {
              "$ref": "#/components/schemas/WalletTokenSingleResponseSchema"
            },
            "examples": {
              "SolanaScaledUIAmount": {
                "value": {
                  "success": true,
                  "data": {
                    "address": "So11111111111111111111111111111111111111112",
                    "decimals": 9,
                    "balance": 130718,
                    "uiAmount": 0.000130718,
                    "chainId": "solana-mainnet",
                    "logoURI": "https://raw.githubusercontent.com/solana-labs/token-list/main/assets/mainnet/So11111111111111111111111111111111111111112/logo.png",
                    "name": "Wrapped SOL",
                    "symbol": "SOL",
                    "priceUsd": 186.17611361160655,
                    "valueUsd": 0.024336569219081984,
                    "isScaledUiToken": false,
                    "multiplier": null
                  }
                }
              },
              "Solana": {
                "value": {
                  "success": true,
                  "data": {
                    "address": "Es9vMFrzaCERmJfrF4H2FYD4KCoNkY11McCe8BenwNYB",
                    "decimals": 6,
                    "balance": 1177780977972721,
                    "uiAmount": 1177780977.972721,
                    "chainId": "solana-mainnet",
                    "logoURI": "https://img.fotofolio.xyz/?w=30&h=30&url=https%3A%2F%2Fraw.githubusercontent.com%2Fsolana-labs%2Ftoken-list%2Fmain%2Fassets%2Fmainnet%2FEs9vMFrzaCERmJfrF4H2FYD4KCoNkY11McCe8BenwNYB%2Flogo.svg",
                    "name": "USDT",
                    "symbol": "USDT",
                    "priceUsd": 0.9999915198446391,
                    "valueUsd": 1177770990.2070467
                  }
                }
              },
              "EVM": {
                "value": {
                  "success": true,
                  "data": {
                    "address": "0xdac17f958d2ee523a2206206994597c13d831ec7",
                    "name": "Tether USD",
                    "symbol": "USDT",
                    "decimals": 6,
                    "balance": 94149341656019,
                    "uiAmount": 94149341.656019,
                    "chainId": "eth-mainnet",
                    "priceUsd": 0.9999915198446391,
                    "valueUsd": 94149341656019.2
                  }
                }
              }
            }
          }
        }
      },
      "WalletTxList": {
        "description": "JSON object containing the wallet's recent transaction history across supported chains.",
        "content": {
          "application/json": {
            "schema": {
              "$ref": "#/components/schemas/WalletTxListResponseSchema"
            },
            "examples": {
              "SolanaScaledUIAmount": {
                "value": {
                  "success": true,
                  "data": {
                    "solana": [
                      {
                        "txHash": "3MvG4bVz7HF76hWSGeGtcSkVAtDnLA5PmUVC97S22GPpGGvxbv7UqKEh91MVsAHJ35zSw4RkW9NBiHLfZbJm8xFn",
                        "blockNumber": 328889251,
                        "blockTime": "2025-03-24T15:06:14+00:00",
                        "status": true,
                        "from": "Gt4RRcMg2mzEN9SDtSUjEjezC9b1nXjEGDQyEVbrc7Sk",
                        "to": "11111111111111111111111111111111",
                        "fee": 80000,
                        "mainAction": "send",
                        "balanceChange": [
                          {
                            "amount": -165604794,
                            "symbol": "SOL",
                            "name": "Wrapped SOL",
                            "decimals": 9,
                            "address": "So11111111111111111111111111111111111111112",
                            "logoURI": "https://raw.githubusercontent.com/solana-labs/token-list/main/assets/mainnet/So11111111111111111111111111111111111111112/logo.png",
                            "isScaledUiToken": false,
                            "multiplier": null
                          }
                        ],
                        "contractLabel": {
                          "address": "11111111111111111111111111111111",
                          "name": "System Program",
                          "metadata": {
                            "icon": ""
                          }
                        },
                        "tokenTransfers": [
                          {
                            "fromTokenAccount": "Gt4RRcMg2mzEN9SDtSUjEjezC9b1nXjEGDQyEVbrc7Sk",
                            "toTokenAccount": "2YiHgAV2SaJYkLy63N3TMLZHKwkPKhWd3EUzAMZuay4T",
                            "fromUserAccount": "Gt4RRcMg2mzEN9SDtSUjEjezC9b1nXjEGDQyEVbrc7Sk",
                            "toUserAccount": "2YiHgAV2SaJYkLy63N3TMLZHKwkPKhWd3EUzAMZuay4T",
                            "tokenAmount": 0.165524794,
                            "mint": "So11111111111111111111111111111111111111111",
                            "transferNative": true,
                            "isScaledUiToken": false,
                            "multiplier": null
                          }
                        ]
                      }
                    ]
                  }
                }
              },
              "Solana": {
                "value": {
                  "success": true,
                  "data": {
                    "solana": [
                      {
                        "txHash": "svTZ3o5j7GDsk1EfkXZjEQnV1kirqq48YhS29HyfqFkGUiSzosHRNQaQTPNovP3rbDbV3QrkFQh4GzdESEyRw6s",
                        "blockNumber": 284733408,
                        "blockTime": "2024-08-20T10:44:26+00:00",
                        "status": true,
                        "from": "66YZZejVBupBnMwSEqTaCkAMwPacpPzP41GSEst55Kgz",
                        "to": "TokenkegQfeZyiNwAJbNbGKPFXCWuBvf9Ss623VQ5DA",
                        "fee": 15000,
                        "mainAction": "send",
                        "balanceChange": [
                          {
                            "amount": 0,
                            "symbol": "SOL",
                            "name": "Wrapped SOL",
                            "decimals": 9,
                            "address": "So11111111111111111111111111111111111111112",
                            "logoURI": "https://img.fotofolio.xyz/?w=30&h=30&url=https%3A%2F%2Fraw.githubusercontent.com%2Fsolana-labs%2Ftoken-list%2Fmain%2Fassets%2Fmainnet%2FSo11111111111111111111111111111111111111112%2Flogo.png"
                          },
                          {
                            "tokenAccount": "99pfYkuFEUPvUzVSGsMc2VN47FaFSTrKBMXGnxg13tDt",
                            "owner": "Q6XprfkF8RQQKoQVG33xT88H7wi8Uk1B1CC7YAs69Gi",
                            "decimals": 6,
                            "programId": "TokenkegQfeZyiNwAJbNbGKPFXCWuBvf9Ss623VQ5DA",
                            "amount": -10000000000000,
                            "address": "Es9vMFrzaCERmJfrF4H2FYD4KCoNkY11McCe8BenwNYB",
                            "name": "USDT",
                            "symbol": "USDT",
                            "logoURI": "https://img.fotofolio.xyz/?w=30&h=30&url=https%3A%2F%2Fraw.githubusercontent.com%2Fsolana-labs%2Ftoken-list%2Fmain%2Fassets%2Fmainnet%2FEs9vMFrzaCERmJfrF4H2FYD4KCoNkY11McCe8BenwNYB%2Flogo.svg"
                          }
                        ],
                        "contractLabel": {
                          "address": "TokenkegQfeZyiNwAJbNbGKPFXCWuBvf9Ss623VQ5DA",
                          "name": "Token Program",
                          "metadata": {
                            "icon": ""
                          }
                        }
                      }
                    ]
                  }
                }
              },
              "EVM": {
                "value": {
                  "success": true,
                  "data": {
                    "ethereum": [
                      {
                        "txHash": "0x9e362abb139f2ae9270b66efd9a3bc9477481049c04256b804a5f7093640d24d",
                        "blockNumber": 20779293,
                        "blockTime": "2024-09-18T18:32:59Z",
                        "status": true,
                        "from": "0xf89d7b9c864f589bbF53a82105107622B35EaA40",
                        "to": "0xf584F8728B874a6a5c7A8d4d387C9aae9172D621",
                        "gasUsed": 21000,
                        "gasPrice": 13739048708,
                        "fee": "288520022868000",
                        "feeUsd": 0.6724695987010954,
                        "value": "12228500000000000000",
                        "contractLabel": {
                          "address": "0xf584F8728B874a6a5c7A8d4d387C9aae9172D621",
                          "name": "Jump Trading",
                          "metadata": {}
                        },
                        "mainAction": "call",
                        "balanceChange": [
                          {
                            "name": "ETH",
                            "symbol": "ETH",
                            "logoURI": "https://assets.coingecko.com/coins/images/279/standard/ethereum.png?1696501628",
                            "address": "0xEeeeeEeeeEeEeeEeEeEeeEEEeeeeEeeeeeeeEEeE",
                            "amount": -12228500000000000000,
                            "decimals": 18
                          }
                        ]
                      }
                    ]
                  }
                }
              }
            }
          }
        }
      },
      "WalletBalanceChange": {
        "description": "JSON object containing a list of balance changes of an address",
        "content": {
          "application/json": {
            "schema": {
              "$ref": "#/components/schemas/WalletBalanceChangeResponseSchema"
            },
            "examples": {
              "Solana": {
                "value": {
                  "success": true,
                  "data": {
                    "items": [
                      {
                        "time": "2025-08-01T08:55:58Z",
                        "block_number": 357129280,
                        "block_unix_time": 1754038558,
                        "address": "51dEMNojjd2hZKrMeDWBRMPmhDS5QH1eCQWCdtR7CYKp",
                        "token_account": "ATgjegWTEidtsDniCfVJp5Py86fi5X8nzRyzndfimr59",
                        "tx_hash": "mBxrLzapLZtcdPsKSr6EkUUXgFJDyXJs7bJcwQ58xh7JXhN7nsz9ELNspxsnG6TxVaJdzsbrkvhjgrX8QArrp4h",
                        "pre_balance": "257629693",
                        "post_balance": "293106471",
                        "amount": "35476777",
                        "token_info": {
                          "address": "4a79c1TRehFCpHxQ7niHAiBAvHRJRWey3UkWuMDREKL7",
                          "decimals": 9,
                          "symbol": "",
                          "name": "",
                          "logo_uri": "",
                          "is_scaled_ui_token": true,
                          "multiplier": 1.5
                        },
                        "type": 2,
                        "type_text": "SPL",
                        "change_type": 1,
                        "change_type_text": "INCR"
                      }
                    ]
                  }
                }
              }
            }
          }
        }
      },
      "WalletCurrentNetWorth": {
        "description": "JSON object containing portfolio of an address",
        "content": {
          "application/json": {
            "schema": {
              "$ref": "#/components/schemas/WalletCurrentNetWorthResponseSchema"
            },
            "examples": {
              "Solana": {
                "value": {
                  "success": true,
                  "data": {
                    "wallet_address": "8X35rQUK2u9hfn8rMPwwr6ZSEUhbmfDPEapp589XyoM1",
                    "currency": "usd",
                    "total_value": "0.010349446772590722",
                    "current_timestamp": "2025-05-19T04:47:19.414327725Z",
                    "items": [
                      {
                        "address": "cCpv5Z3nqKbKohYqgY7rxFebjMjvU7SBhwgYbCipump",
                        "decimals": 6,
                        "price": 0.00014999198221145974,
                        "balance": "69000000",
                        "amount": 69,
                        "network": "solana",
                        "name": "Smellow",
                        "symbol": "SMLO",
                        "logo_uri": "https://pump.mypinata.cloud/ipfs/QmcCjKS4MMeji11PqnNhqDSXd6gD4iGj1nC6zjyfaekuQZ",
                        "value": "0.010349446772590722"
                      }
                    ]
                  },
                  "pagination": {
                    "limit": 100,
                    "offset": 0,
                    "total": 1
                  }
                }
              }
            }
          }
        }
      },
      "MultipleNetworthSummary": {
        "description": "JSON object containing summary networth",
        "content": {
          "application/json": {
            "schema": {
              "$ref": "#/components/schemas/MultipleNetworthSummaryResponseSchema"
            },
            "examples": {
              "Solana": {
                "value": {
                  "data": {
                    "currency": "usd",
                    "current_timestamp": "2025-10-30T03:33:40.980036224Z",
                    "wallets": {
                      "5Q544fKrFoe6tsEbD7S8EmxGTJYAKtTVhAW5Q5pge4j1": {
                        "value": "1764819473.530063"
                      },
                      "WLHv2UAZm6z4KyaaELi5pjdbJh6RESMva1Rnn8pJVVh": {
                        "value": "3508619230.707581"
                      }
                    }
                  },
                  "success": true
                }
              }
            }
          }
        }
      },
      "WalletNetWorth": {
        "description": "JSON object containing net worth of an address",
        "content": {
          "application/json": {
            "schema": {
              "$ref": "#/components/schemas/WalletNetWorthHistoryResponseSchema"
            },
            "examples": {
              "Solana": {
                "value": {
                  "success": true,
                  "data": {
                    "wallet_address": "HV1KXxWFaSeriyFvXyx48FqG9BoFbfinB8njCJonqP7K",
                    "currency": "usd",
                    "current_timestamp": "2025-07-31T23:59:59Z",
                    "past_timestamp": "2025-07-01T23:59:59Z",
                    "history": [
                      {
                        "timestamp": "2025-07-30T23:59:59Z",
                        "net_worth": 13210463.21,
                        "net_worth_change": 1971274.94,
                        "net_worth_change_percent": 17.54
                      },
                      {
                        "timestamp": "2025-07-29T23:59:59Z",
                        "net_worth": 11839478.54,
                        "net_worth_change": 600290.26,
                        "net_worth_change_percent": 5.35
                      }
                    ]
                  }
                }
              }
            }
          }
        }
      },
      "WalletNetWorthDetail": {
        "description": "JSON object containing list assets of an address at a specific time",
        "content": {
          "application/json": {
            "schema": {
              "$ref": "#/components/schemas/WalletNetWorthDetailResponseSchema"
            },
            "examples": {
              "Solana": {
                "value": {
                  "success": true,
                  "data": {
                    "wallet_address": "HV1KXxWFaSeriyFvXyx48FqG9BoFbfinB8njCJonqP7K",
                    "currency": "usd",
                    "net_worth": 11839478.53162622,
                    "requested_timestamp": "2025-07-31T04:50:06.303258803Z",
                    "resolved_timestamp": "2025-07-31T04:50:06.475623209Z",
                    "net_assets": [
                      {
                        "symbol": "Salute",
                        "token_address": "49aR46Zgvh3w7cLnM3nZRC4DSVV2A25tYV1fVxYbjtb4",
                        "decimal": 4,
                        "balance": "50000000000",
                        "price": 1.931249899999106,
                        "value": 9656249.49999553
                      },
                      {
                        "symbol": "SOL",
                        "token_address": "So11111111111111111111111111111111111111112",
                        "decimal": 9,
                        "balance": "7316581866484",
                        "price": 181.4958586895311,
                        "value": 1327929.3085297658
                      }
                    ]
                  },
                  "pagination": {
                    "limit": 100,
                    "offset": 0,
                    "total": 2
                  }
                }
              }
            }
          }
        }
      },
      "WalletPnlResponse": {
        "description": "JSON object containing a wallet’s PnL per token",
        "content": {
          "application/json": {
            "schema": {
              "$ref": "#/components/schemas/WalletPnlResponseSchema"
            },
            "examples": {
              "Solana": {
                "value": {
                  "success": true,
                  "data": {
                    "meta": {
                      "address": "4mwReoK1x668B6KuuSAbGm2tUQULSTHGgTpCa2jUMXtD",
                      "currency": "usd",
                      "holding_check": false,
                      "time": "2025-08-27T14:06:48.987054346Z"
                    },
                    "tokens": {
                      "So11111111111111111111111111111111111111112": {
                        "symbol": "SOL",
                        "decimals": 9,
                        "counts": {
                          "total_buy": 236570,
                          "total_sell": 236570,
                          "total_trade": 473140
                        },
                        "quantity": {
                          "total_bought_amount": 12092390.76837637,
                          "total_sold_amount": 0.00047313999999776897,
                          "holding": 0
                        },
                        "cashflow_usd": {
                          "cost_of_quantity_sold": 0.07608073802599198,
                          "total_invested": 1944451989.1810136,
                          "total_sold": 0.07602689546632857,
                          "current_value": 0
                        },
                        "pnl": {
                          "realized_profit_usd": -0.00005384255966340998,
                          "realized_profit_percent": -0.0707702909572399,
                          "unrealized_usd": 523529777.302561,
                          "unrealized_percent": 26.92428407777512,
                          "total_usd": 523529777.30250716,
                          "total_percent": 26.92428407671888,
                          "avg_profit_per_trade_usd": -2.275967352724774e-10
                        },
                        "pricing": {
                          "current_price": 204.09378209627866,
                          "avg_buy_cost": 160.79963229984938,
                          "avg_sell_cost": 160.6858339322126
                        }
                      },
                      "pumpsAkNcb1nZs89Uees3DyRzUGxjqThuzF3A8LVVfn": {
                        "symbol": "PUMP",
                        "decimals": 9,
                        "counts": {
                          "total_buy": 236570,
                          "total_sell": 236570,
                          "total_trade": 473140
                        },
                        "quantity": {
                          "total_bought_amount": 1.9012623099995465,
                          "total_sold_amount": 128820503932.7875,
                          "holding": 880839335.5814558
                        },
                        "cashflow_usd": {
                          "cost_of_quantity_sold": 5151221341.162621,
                          "total_invested": 0.07602689546632857,
                          "total_sold": 1944451989.1810136,
                          "current_value": 7.5417466875590655
                        },
                        "pnl": {
                          "realized_profit_usd": -0.04732872112474718,
                          "realized_profit_percent": -62.25260262759055,
                          "unrealized_usd": 0,
                          "unrealized_percent": 0,
                          "total_usd": -0.04732872112474718,
                          "total_percent": -62.25260262759055,
                          "avg_profit_per_trade_usd": -2.0006222735235735e-7
                        },
                        "pricing": {
                          "current_price": 8.562000336395786e-9,
                          "avg_buy_cost": 0.03998758880690519,
                          "avg_sell_cost": 0.015094274046587626
                        }
                      }
                    }
                  }
                }
              }
            }
          }
        }
      },
      "WalletPnlDetailsResponse": {
        "description": "JSON object containing a wallet",
        "content": {
          "application/json": {
            "schema": {
              "$ref": "#/components/schemas/WalletPnlDetailsResponseSchema"
            },
            "examples": {
              "Solana": {
                "value": {
                  "data": {
                    "meta": {
                      "address": "123hJZ8FGVhesDUrv5dCgorewd7KMqBkFhoGdyZNp62D",
                      "currency": "usd",
                      "holding_check": false,
                      "time": "2025-10-31T08:38:25.295882105Z"
                    },
                    "tokens": [
                      {
                        "symbol": "G7",
                        "decimals": 6,
                        "address": "2VKDTnMF9hmDfCG4i7yPHsfYzYCRhLwQcgUQPxvvYKnV",
                        "counts": {
                          "total_buy": 1,
                          "total_sell": 1,
                          "total_trade": 2
                        },
                        "quantity": {
                          "total_bought_amount": 6152601.258849,
                          "total_sold_amount": 6152601.258849,
                          "holding": 0
                        },
                        "cashflow_usd": {
                          "cost_of_quantity_sold": 9.7233729560565,
                          "total_invested": 9.7233729560565,
                          "total_sold": 9.85555342050984,
                          "current_value": 0
                        },
                        "pnl": {
                          "realized_profit_usd": 0.13218046445334128,
                          "realized_profit_percent": 1.3594095901773329,
                          "unrealized_usd": 0,
                          "unrealized_percent": 0,
                          "total_usd": 0.13218046445334128,
                          "total_percent": 1.3594095901773329,
                          "avg_profit_per_trade_usd": 0.13218046445334128
                        },
                        "pricing": {
                          "current_price": null,
                          "avg_buy_cost": 0.0000015803678065552884,
                          "avg_sell_cost": 0.0000016018514780776761
                        }
                      }
                    ],
                    "summary": {
                      "unique_tokens": 7,
                      "counts": {
                        "total_buy": 19,
                        "total_sell": 19,
                        "total_trade": 38,
                        "total_win": 4,
                        "total_loss": 1,
                        "win_rate": 0.5714285714285714
                      },
                      "cashflow_usd": {
                        "total_invested": 424.183016567611,
                        "total_sold": 555.080692928933,
                        "current_value": 392.84271337031083
                      },
                      "pnl": {
                        "realized_profit_usd": 130.8976763613221,
                        "realized_profit_percent": 30.858773512554855,
                        "unrealized_usd": 0,
                        "total_usd": 130.8976763613221,
                        "avg_profit_per_trade_usd": 3.444675693719003
                      }
                    }
                  }
                }
              }
            }
          }
        }
      },
      "WalletPnlChartResponse": {
        "description": "JSON object containing a wallet pnl chart",
        "content": {
          "application/json": {
            "schema": {
              "$ref": "#/components/schemas/WalletPnlChartResponseSchema"
            },
            "examples": {
              "Solana": {
                "value": {
                  "data": [
                    {
                      "timestamp": "2026-05-30T23:59:59Z",
                      "realized_pnl": 0,
                      "total_volume_usd": 64.447324224148,
                      "total_token_traded": 13,
                      "total_tx_count": 13
                    },
                    {
                      "timestamp": "2026-05-31T23:59:59Z",
                      "realized_pnl": 0.014336242978757942,
                      "total_volume_usd": 159.60189124804634,
                      "total_token_traded": 18,
                      "total_tx_count": 48
                    },
                    {
                      "timestamp": "2026-06-01T23:59:59Z",
                      "realized_pnl": 0.006014134550233186,
                      "total_volume_usd": 220.32103859032927,
                      "total_token_traded": 22,
                      "total_tx_count": 75
                    }
                  ]
                }
              }
            }
          }
        }
      },
      "WalletPnlSummaryResponse": {
        "description": "JSON object containing a wallet’s PnL",
        "content": {
          "application/json": {
            "schema": {
              "$ref": "#/components/schemas/WalletPnlSummaryResponseSchema"
            },
            "examples": {
              "Solana": {
                "value": {
                  "success": true,
                  "data": {
                    "summary": {
                      "unique_tokens": 2,
                      "counts": {
                        "total_buy": 11,
                        "total_sell": 3,
                        "total_trade": 14,
                        "total_win": 0,
                        "total_loss": 0,
                        "win_rate": 0
                      },
                      "cashflow_usd": {
                        "total_invested": 175666.37823969766,
                        "total_sold": 87670.81375594059
                      },
                      "pnl": {
                        "realized_profit_usd": 6045.934178885913,
                        "realized_profit_percent": 0.07406974699642274,
                        "unrealized_usd": -74830.62425247866,
                        "total_usd": -68784.69007359275,
                        "avg_profit_per_trade_usd": -4913.192148113768
                      }
                    }
                  }
                }
              }
            }
          }
        }
      },
      "MultipleWalletPnlResponse": {
        "description": "JSON object containing multiple wallet’s PnL per token",
        "content": {
          "application/json": {
            "schema": {
              "$ref": "#/components/schemas/MultipleWalletPnlResponseSchema"
            },
            "examples": {
              "Solana": {
                "value": {
                  "success": true,
                  "data": {
                    "token_metadata": {
                      "symbol": "PUMP",
                      "decimals": 9
                    },
                    "data": {
                      "3aLF8VXyUbEPSFyqSoQrsq6TdgKXgLmwJprE2yTfdNA2": {
                        "counts": {
                          "total_buy": 3,
                          "total_sell": 0,
                          "total_trade": 3
                        },
                        "quantity": {
                          "total_bought_amount": 29285.756489887,
                          "total_sold_amount": 0,
                          "holding": 880839335.5814558
                        },
                        "cashflow_usd": {
                          "cost_of_quantity_sold": 0,
                          "total_invested": 2.6329984012898864,
                          "total_sold": 0,
                          "current_value": 7.5417466875590655
                        },
                        "pnl": {
                          "realized_profit_usd": 0,
                          "realized_profit_percent": 0,
                          "unrealized_usd": -2.6327476566329686,
                          "unrealized_percent": -99.99047683975823,
                          "total_usd": -2.6327476566329686,
                          "total_percent": -99.99047683975824,
                          "avg_profit_per_trade_usd": 0
                        },
                        "pricing": {
                          "current_price": 8.562000336395786e-9,
                          "avg_buy_cost": 0.00008990713291627338,
                          "avg_sell_cost": null
                        }
                      },
                      "4mwReoK1x668B6KuuSAbGm2tUQULSTHGgTpCa2jUMXtD": {
                        "counts": {
                          "total_buy": 236570,
                          "total_sell": 236570,
                          "total_trade": 473140
                        },
                        "quantity": {
                          "total_bought_amount": 1.9012623099995465,
                          "total_sold_amount": 128820503932.7875,
                          "holding": 880839335.5814558
                        },
                        "cashflow_usd": {
                          "cost_of_quantity_sold": 5151221341.162621,
                          "total_invested": 0.07602689546632857,
                          "total_sold": 1944451989.1810136,
                          "current_value": 7.5417466875590655
                        },
                        "pnl": {
                          "realized_profit_usd": -0.04732872112474718,
                          "realized_profit_percent": -62.25260262759055,
                          "unrealized_usd": 0,
                          "unrealized_percent": 0,
                          "total_usd": -0.04732872112474718,
                          "total_percent": -62.25260262759055,
                          "avg_profit_per_trade_usd": -2.0006222735235735e-7
                        },
                        "pricing": {
                          "current_price": 8.562000336395786e-9,
                          "avg_buy_cost": 0.03998758880690519,
                          "avg_sell_cost": 0.015094274046587626
                        }
                      }
                    }
                  }
                }
              }
            }
          }
        }
      },
      "WalletTokenBalanceResponse": {
        "description": "JSON object containing a wallet token balance",
        "content": {
          "application/json": {
            "schema": {
              "$ref": "#/components/schemas/WalletTokenBalanceListResponseSchema"
            },
            "examples": {
              "Solana": {
                "value": {
                  "success": true,
                  "data": [
                    {
                      "address": "8i42ZVsjEGVhZ6spj4Z5aB36Msh9Vq4nnBaw5kq4pump",
                      "decimals": 9,
                      "price": 0.0020303701828560256,
                      "balance": "4998929789571623824",
                      "amount": 4998929789.571624,
                      "network": "solana",
                      "name": "BIGIFTRUE",
                      "symbol": "BIGIFTRUE",
                      "logo_uri": "https://ipfs.io/ipfs/bafkreihgbhs4sumfhvdcquud7mvggjjbidfuoisytxqnpafrx6ukrh4hlm",
                      "value": "10149677.99093697"
                    }
                  ]
                }
              }
            }
          }
        }
      },
      "WalletTxFirstFundedResponse": {
        "description": "JSON object containing a wallet token balance",
        "content": {
          "application/json": {
            "schema": {
              "$ref": "#/components/schemas/WalletTxFirstFundedResponseSchema"
            },
            "examples": {
              "Solana": {
                "value": {
                  "success": true,
                  "data": {
                    "1jw5fDodwGEGBVqNXsx2eqiLgNmgMDEeXWSbrTreLCM": {
                      "tx_hash": "8g5kPkNNhbxozv7veVjwHqCdJ6FB4B3zMaXBfHigZKwPprNB3A3WcVBCdEm1rfuG1m3syHEVZHeYfCZfM7BgQ6s",
                      "block_unix_time": 1717292678,
                      "block_number": 269344897,
                      "balance_change": "7182720",
                      "token_address": "So11111111111111111111111111111111111111111",
                      "token_decimals": 9
                    }
                  }
                }
              }
            }
          }
        }
      },
      "WalletFundedByResponse": {
        "description": "JSON object containing the wallet that first funded the requested address with SOL, along with the funding details",
        "content": {
          "application/json": {
            "schema": {
              "$ref": "#/components/schemas/WalletFundedByResponseSchema"
            },
            "examples": {
              "Solana": {
                "value": {
                  "success": true,
                  "data": {
                    "funders": [
                      {
                        "funder": "AgmLJBMDCqWynYnQiPCuj9ewsNNsBJXyzoUhD9LJzN51",
                        "funder_name": "MEV Bot"
                      },
                      {
                        "funder": "4SnmsNwQLpBhuNvdjXQwafT6kV1BDvR6KgF3B9777wQd",
                        "funder_name": ""
                      }
                    ],
                    "token_address": "So11111111111111111111111111111111111111111",
                    "token_decimals": 9,
                    "block_number": 403982922,
                    "unix_time": 1772558735,
                    "amount": 37030480,
                    "tx_hash": "2uAZx5CQ5AgrA21LbqZd7hFH5wit3Xm7w4fB3YeZCqCaUs6MS3SmoFfJ1jsAQDwgzgmieCjzYegNNwZprovJe5Vo"
                  }
                }
              }
            }
          }
        }
      },
      "TransferResponse": {
        "description": "JSON object containing list transfer",
        "content": {
          "application/json": {
            "schema": {
              "$ref": "#/components/schemas/TransferListResponseSchema"
            },
            "examples": {
              "Solana": {
                "value": {
                  "success": true,
                  "data": [
                    {
                      "time": "2025-11-18T04:32:26Z",
                      "block_number": 380819945,
                      "unix_time": 1763440346,
                      "token_address": "9TR9Ge75PMHfoKBAzo88XpDhvhjsirETEuPtRS4VtrpJ",
                      "from_address": "HLnpSz9h2S4hiLQ43rnSD9XkcUThA7B8hQMKmDaiTLcC",
                      "to_address": "FCgMrWxuY5mWgFn55czYLysfGi3QFsZm3W7sJ7wTDQpz",
                      "from_token_account": "5JAZp6t5eSNXbdEwu3pMbB8uKV1e9cf2yg8E4Yq56WZa",
                      "to_token_account": "FKtWCwxFKdc7g7ymxVgyBSbwzGMNGWe7HtbKkum99f9C",
                      "amount": "14213245095",
                      "ui_amount": 14213.245095,
                      "price": 0.000029247096468293907,
                      "value": 0.4156961504209702,
                      "tx_hash": "2vLYZuCrKARicrXRDf2eGnzaKR9PP6qFFuzgPCHUNAnwepcqvFQ8WiPRuZjBNihNsNoxxQ5bLVLX7Wu6i6h5tmuP",
                      "flow": "out",
                      "token_info": {
                        "address": "9TR9Ge75PMHfoKBAzo88XpDhvhjsirETEuPtRS4VtrpJ",
                        "decimals": 6,
                        "symbol": "NYAN",
                        "name": "Nyan Cat",
                        "logo_uri": "https://wsrv.nl/?w=128&h=128&default=1&url=https://rs.debot.ai/logo/CMx7yon2cLzHcXqgHsKJhuU3MmME6noWLQk2rAycBAGS.gif"
                      },
                      "action": "transfer"
                    }
                  ]
                }
              }
            }
          }
        }
      },
      "TotalTransferResponse": {
        "description": "JSON object containing a total transfer",
        "content": {
          "application/json": {
            "schema": {
              "$ref": "#/components/schemas/TotalTransferResponseSchema"
            },
            "examples": {
              "Solana": {
                "value": {
                  "success": true,
                  "data": {
                    "total": 10
                  }
                }
              }
            }
          }
        }
      },
      "WalletLeaderboard": {
        "description": "JSON object containing the wallet leaderboard ranked by total asset value",
        "content": {
          "application/json": {
            "schema": {
              "$ref": "#/components/schemas/WalletLeaderboardResponseSchema"
            },
            "examples": {
              "Solana": {
                "value": {
                  "success": true,
                  "data": [
                    {
                      "owner": "3QG3aFvShbd6SxN3SdPowYQbokfReLGV6L141kMJQoLc",
                      "total_value": 5235177.875046033,
                      "trade_count": 82,
                      "volume_usd": 2528308.586962412,
                      "realized_pnl": -236.30401229077495,
                      "unrealized_pnl": 0
                    },
                    {
                      "owner": "226rXSbYUSwux7aHGC2XhhVhnuzazVPYuveGXyAsqvrt",
                      "total_value": 27178262.34140204,
                      "trade_count": 189,
                      "volume_usd": 1575267.9387524147,
                      "realized_pnl": -146.38501180820623,
                      "unrealized_pnl": 0
                    }
                  ]
                }
              }
            }
          }
        }
      },
      "SupportedNetworks": {
        "description": "A list of supported networks",
        "content": {
          "application/json": {
            "schema": {
              "$ref": "#/components/schemas/SupportedNetworksResponse"
            },
            "example": {
              "success": true,
              "data": [
                "solana",
                "ethereum",
                "bsc",
                "base",
                "robinhood",
                "arc",
                "sui",
                "mantle",
                "hyperevm",
                "arbitrum",
                "avalanche",
                "optimism",
                "polygon",
                "zksync",
                "monad",
                "aptos",
                "fogo",
                "megaeth"
              ]
            }
          }
        }
      },
      "WalletSupportedNetworks": {
        "description": "A list of supported networks for wallet APIs",
        "content": {
          "application/json": {
            "schema": {
              "$ref": "#/components/schemas/SupportedNetworksResponse"
            },
            "example": {
              "success": true,
              "data": [
                "solana"
              ]
            }
          }
        }
      },
      "UtilsCreditsUsage": {
        "description": "JSON object containing the credits usage",
        "content": {
          "application/json": {
            "schema": {
              "$ref": "#/components/schemas/UtilsCreditsUsageResponse"
            },
            "examples": {
              "CreditsUsage": {
                "value": {
                  "data": {
                    "start_time": 1758367608,
                    "end_time": 1760959608,
                    "usage": {
                      "total": 1176300,
                      "api": 1162912,
                      "ws": 13388
                    },
                    "remaining": {
                      "api": 1498837088,
                      "ws": 49986612,
                      "total": 1548823700
                    },
                    "overage_usage": {
                      "api": 0,
                      "ws": 0,
                      "total": 0
                    },
                    "overage_cost": {
                      "api": 0,
                      "ws": 0,
                      "total": 0
                    }
                  },
                  "success": true
                }
              }
            }
          }
        }
      },
      "Search": {
        "description": "Search for token and market data matching keyword, tokenAddress using full-text search",
        "content": {
          "application/json": {
            "schema": {
              "$ref": "#/components/schemas/SearchResponse"
            },
            "examples": {
              "SolanaScaledUIAmount": {
                "value": {
                  "success": true,
                  "data": {
                    "items": [
                      {
                        "type": "token",
                        "result": [
                          {
                            "name": "TRENDSDOTFUN",
                            "symbol": "",
                            "address": "CdsF47CkMGnXnMuGNPw9TpCbE6hxRvA4XUbxbZcLrfJ8",
                            "network": "solana",
                            "decimals": 6,
                            "verified": false,
                            "fdv": 13697.614698138917,
                            "market_cap": 13697.614698138917,
                            "liquidity": 60054.03786109897,
                            "price": 0.000013697614670743687,
                            "price_change_24h_percent": 333.97707074856015,
                            "sell_24h": 4088,
                            "sell_24h_change_percent": null,
                            "buy_24h": 4374,
                            "buy_24h_change_percent": null,
                            "unique_wallet_24h": 203,
                            "unique_wallet_24h_change_percent": null,
                            "trade_24h": 8462,
                            "trade_24h_change_percent": null,
                            "volume_24h_change_percent": null,
                            "volume_24h_usd": 1867782.2902830783,
                            "last_trade_unix_time": 1749490559,
                            "last_trade_human_time": "2025-06-09T17:35:59",
                            "updated_time": 1749491343,
                            "creation_time": "2025-06-09T17:13:02.490Z",
                            "is_scaled_ui_token": false,
                            "multiplier": null
                          }
                        ]
                      },
                      {
                        "type": "market",
                        "result": []
                      }
                    ]
                  }
                }
              },
              "SearchData": {
                "value": {
                  "data": {
                    "items": [
                      {
                        "type": "token",
                        "result": [
                          {
                            "name": "Wrapped SOL",
                            "symbol": "SOL",
                            "address": "So11111111111111111111111111111111111111112",
                            "network": "solana",
                            "decimals": 9,
                            "logo_uri": "https://raw.githubusercontent.com/solana-labs/token-list/main/assets/mainnet/So11111111111111111111111111111111111111112/logo.png",
                            "verified": true,
                            "fdv": 90819272048.42484,
                            "market_cap": 78411420690.92838,
                            "liquidity": 13151956937.267107,
                            "price": 151.87906506413003,
                            "price_change_24h_percent": 8.382435933049754,
                            "sell_24h": 14987224,
                            "sell_24h_change_percent": 2.545108704948598,
                            "buy_24h": 11808908,
                            "buy_24h_change_percent": -1.730191226931713,
                            "unique_wallet_24h": 1918596,
                            "unique_wallet_24h_change_percent": 12.744451058663554,
                            "trade_24h": 26796132,
                            "trade_24h_change_percent": 0.6160241681533454,
                            "volume_24h_change_percent": 23.428765048651922,
                            "volume_24h_usd": 3529926746.199748,
                            "last_trade_unix_time": 1745403512,
                            "last_trade_human_time": "2025-04-23T10:18:32",
                            "supply": 596038231.288297,
                            "updated_time": 1745403518
                          },
                          {
                            "name": "The Clever Galapagos Hunter",
                            "symbol": "Sol",
                            "address": "51g2iAa2XMpWkzA7SGBG7qJtVbPpLGtSksoh7L72PUMP",
                            "network": "solana",
                            "decimals": 6,
                            "verified": false,
                            "fdv": 236.9309248798655,
                            "market_cap": 236.9309248798655,
                            "liquidity": 8.415722964906944,
                            "price": 2.369309248798655e-8,
                            "price_change_24h_percent": -99.99630719886537,
                            "sell_24h": 136072,
                            "sell_24h_change_percent": null,
                            "buy_24h": 135847,
                            "buy_24h_change_percent": null,
                            "unique_wallet_24h": 225,
                            "unique_wallet_24h_change_percent": null,
                            "trade_24h": 271919,
                            "trade_24h_change_percent": null,
                            "volume_24h_change_percent": null,
                            "volume_24h_usd": 13620948.061542135,
                            "last_trade_unix_time": 1745320033,
                            "last_trade_human_time": "2025-04-22T11:07:13",
                            "updated_time": 1745320409,
                            "creation_time": "2025-04-22T02:51:01.804Z"
                          }
                        ]
                      },
                      {
                        "type": "market",
                        "result": [
                          {
                            "name": "SOL-USDC",
                            "address": "Czfq3xZZDmsdGdUyrNLtRhGc47cXcZtLG4crryfu44zE",
                            "network": "solana",
                            "liquidity": 27586976.29702192,
                            "unique_wallet_24h": 3019,
                            "unique_wallet_24h_change_percent": -14.717514124293785,
                            "trade_24h": 63476,
                            "trade_24h_change_percent": -15.101582248853104,
                            "volume_24h_usd": 215816762.24573693,
                            "last_trade_unix_time": 1741859485,
                            "last_trade_human_time": "2025-03-13T09:51:25.000Z",
                            "source": "Orca",
                            "base_mint": "So11111111111111111111111111111111111111112",
                            "quote_mint": "EPjFWdd5AufqSSqeM2qN1xzybapC8G4wEGGkZwyTDt1v",
                            "amount_base": 173168.012566278,
                            "amout_quote": 6036799.351477
                          },
                          {
                            "name": "SOL-USDC",
                            "address": "3ucNos4NbumPLZNWztqGHNFFgkHeRMBQAVemeeomsUxv",
                            "network": "solana",
                            "liquidity": 7558785.231379336,
                            "unique_wallet_24h": 2982,
                            "unique_wallet_24h_change_percent": -14.604810996563575,
                            "trade_24h": 59389,
                            "trade_24h_change_percent": -1.4879076402481504,
                            "volume_24h_usd": 123387689.97390246,
                            "last_trade_unix_time": 1741859484,
                            "last_trade_human_time": "2025-03-13T09:51:24.000Z",
                            "source": "Raydium Clamm",
                            "base_mint": "So11111111111111111111111111111111111111112",
                            "quote_mint": "EPjFWdd5AufqSSqeM2qN1xzybapC8G4wEGGkZwyTDt1v",
                            "amount_base": 41501.80227063,
                            "amout_quote": 2394129.681614,
                            "creation_time": "2024-08-07T21:17:56.963Z"
                          }
                        ]
                      }
                    ]
                  },
                  "success": true
                }
              }
            }
          }
        }
      },
      "SmartMoneyTokenResponse": {
        "description": "JSON object containing a total transfer",
        "content": {
          "application/json": {
            "schema": {
              "$ref": "#/components/schemas/SmartMoneyTokenListResponse"
            },
            "examples": {
              "Solana": {
                "value": {
                  "success": true,
                  "data": [
                    {
                      "token": "C6HB4R62NeXacwT4CAfohnCTJiaLhYfuQZNsbsqypump",
                      "price": 0.00001883295471804635,
                      "liquidity": 14375.686217934,
                      "market_cap": 18588.443206268883,
                      "net_flow": 52810.052897156216,
                      "smart_traders_no": 308,
                      "trader_style": "trenchers",
                      "volume_usd": 13862029.460908774,
                      "volume_buy_usd": 6957419.756902965,
                      "volume_sell_usd": 6904609.704005809,
                      "symbol": "Nazijak",
                      "name": "Nazi Wojak",
                      "logo_uri": "https://wsrv.nl/?w=128&h=128&default=1&url=https://ipfs.io/ipfs/bafkreiecr4nqikoow756ahfgjj7fhqga5nepbqyi3hqisw7ehk2p6uzm4y",
                      "price_change_percent": 43.032329448293844
                    }
                  ]
                }
              }
            }
          }
        }
      },
      "perpTokenListResponse": {
        "description": "JSON object containing a list of tokens with certain fields",
        "content": {
          "application/json": {
            "schema": {
              "$ref": "#/components/schemas/PerpTokenListResponse"
            },
            "examples": {
              "TokenList": {
                "value": {
                  "success": true,
                  "data": [
                    {
                      "token": "BTC",
                      "long_io": 248130937.65533,
                      "short_io": 131704764.64346,
                      "open_interest": 379835702.29879,
                      "margin": 93565344.18447486,
                      "margin_used": 27115263.997527998,
                      "entry_margin": 27123192.271091487,
                      "unrealized_pnl": 205455.992125,
                      "bias": 1.2443300885242552,
                      "leverage": 14.0081875040353,
                      "bias_text": "Very Bullish"
                    }
                  ]
                }
              }
            }
          }
        }
      },
      "perpTokenOverviewResponse": {
        "description": "JSON object containing overview information of a token",
        "content": {
          "application/json": {
            "schema": {
              "$ref": "#/components/schemas/PerpTokenOverviewResponse"
            },
            "examples": {
              "TokenOverview": {
                "value": {
                  "success": true,
                  "data": {
                    "price": 80707,
                    "position_count": 27967,
                    "open_interest": 2176626728.25445,
                    "long_liquidation_1h": 0,
                    "short_liquidation_1h": 0,
                    "long_liquidation_4h": 1368222.64619,
                    "short_liquidation_4h": 13790.85989,
                    "long_liquidation_1d": 1506653.41144,
                    "short_liquidation_1d": 9848277.21284,
                    "long_liquidation_7d": 32705301.59656,
                    "short_liquidation_7d": 32312554.24219
                  }
                }
              }
            }
          }
        }
      },
      "perpTokenOpenPositionsResponse": {
        "description": "JSON object containing a list of open positions with certain fields",
        "content": {
          "application/json": {
            "schema": {
              "$ref": "#/components/schemas/PerpTokenOpenPositionsResponse"
            },
            "examples": {
              "TokenOpenPositions": {
                "value": {
                  "success": true,
                  "data": [
                    {
                      "wallet": "0x4c7ef4ce9317016a6bdf28fe6d4873d188d6fa7f",
                      "wallet_first_trade": 1758884208,
                      "token": "BTC",
                      "leverage_type": "isolated",
                      "leverage_value": 1,
                      "max_leverage": 40,
                      "entry_price": 80746,
                      "mark_price": 80748,
                      "margin_used": 29.863114,
                      "position_value": 29.87602,
                      "size": -0.00037,
                      "unrealized_pnl": 0,
                      "cum_funding_since_open": 0,
                      "cum_funding_since_change": 0,
                      "open_time": 1778830957
                    }
                  ]
                }
              }
            }
          }
        }
      },
      "perpTokenLiquidationMapResponse": {
        "description": "JSON object containing a list of liquidation with certain fields",
        "content": {
          "application/json": {
            "schema": {
              "$ref": "#/components/schemas/PerpTokenLiquidationMapResponse"
            },
            "examples": {
              "TokenLiquidationMap": {
                "value": {
                  "success": true,
                  "data": [
                    {
                      "low_price": 59355.907139877854,
                      "high_price": 60425.81178288396,
                      "position_count": 255,
                      "long_liq_size": 928.74387,
                      "long_liq_value": 55407181.36036671,
                      "short_liq_size": 0,
                      "short_liq_value": 0,
                      "cum_long_liq_size": 6978.52862,
                      "cum_long_liq_value": 483658047.865786,
                      "cum_short_liq_size": 0,
                      "cum_short_liq_value": 0
                    }
                  ]
                }
              }
            }
          }
        }
      },
      "perpWalletListResponse": {
        "description": "JSON object containing a list of wallets with certain fields",
        "content": {
          "application/json": {
            "schema": {
              "$ref": "#/components/schemas/PerpWalletListResponse"
            },
            "examples": {
              "WalletList": {
                "value": {
                  "success": true,
                  "data": [
                    {
                      "wallet": "0x5b5d51203a0f9079f8aeb098a6523a13f298c060",
                      "perp_equity": 4820256.661112,
                      "long_value": 7711796.4816,
                      "short_value": 27162652.130878,
                      "unrealized_pnl": 519753.636517,
                      "order_count": 528268,
                      "order_count_90d": 40946,
                      "win": 204298,
                      "win_90d": 18111,
                      "loss": 50566,
                      "loss_90d": 2810,
                      "volume_usd": 2877059275.010704,
                      "volume_90d_usd": 287016529.073075,
                      "open_volume_usd": 1317279026.67999,
                      "open_volume_90d_usd": 155549308.313184,
                      "realized_pnl": 171489764.775849,
                      "realized_pnl_90d": 9018515.858766,
                      "funding_fee": -1923466.812288,
                      "funding_fee_90d": -2530808.146744,
                      "first_trade": 1748185475,
                      "last_trade": 1778818326,
                      "open_value": 34874448.612478,
                      "total_pnl": 172009518.412366,
                      "total_pnl_90d": 9538269.495283,
                      "win_rate": 0.8015961453951912,
                      "win_rate_90d": 0.8656851966923187,
                      "roe": 0.11145774849176364,
                      "roi": 0.13018484413895512,
                      "roi_90d": 0.05797850184333872,
                      "bias": -4.035232357272615,
                      "leverage": 7.234977525954543,
                      "bias_text": "Very Bearish"
                    }
                  ]
                }
              }
            }
          }
        }
      },
      "perpWalletOverviewResponse": {
        "description": "JSON object containing overview information of a wallet",
        "content": {
          "application/json": {
            "schema": {
              "$ref": "#/components/schemas/PerpWalletOverviewResponse"
            },
            "examples": {
              "WalletOverview": {
                "value": {
                  "success": true,
                  "data": {
                    "perp_equity": 4820256.661112,
                    "long_value": 7711796.4816,
                    "short_value": 27162652.130878,
                    "unrealized_pnl": 519753.636517,
                    "order_count": 528268,
                    "order_count_90d": 40946,
                    "win": 204298,
                    "win_90d": 18111,
                    "loss": 50566,
                    "loss_90d": 2810,
                    "volume_usd": 2877059275.010704,
                    "volume_90d_usd": 287016529.073075,
                    "open_volume_usd": 1317279026.67999,
                    "open_volume_90d_usd": 155549308.313184,
                    "realized_pnl": 171489764.775849,
                    "realized_pnl_90d": 9018515.858766,
                    "funding_fee": -1923466.812288,
                    "funding_fee_90d": -2530808.146744,
                    "first_trade": 1748185475,
                    "last_trade": 1778818326,
                    "open_value": 34874448.612478,
                    "total_pnl": 172009518.412366,
                    "total_pnl_90d": 9538269.495283,
                    "win_rate": 0.8015961453951912,
                    "win_rate_90d": 0.8656851966923187,
                    "roe": 0.11145774849176364,
                    "roi": 0.13018484413895512,
                    "roi_90d": 0.05797850184333872,
                    "bias": -4.035232357272615,
                    "leverage": 7.234977525954543,
                    "bias_text": "Very Bearish"
                  }
                }
              }
            }
          }
        }
      },
      "perpWalletOpenPositionsResponse": {
        "description": "JSON object containing a list of open positions with certain fields",
        "content": {
          "application/json": {
            "schema": {
              "$ref": "#/components/schemas/PerpWalletOpenPositionsResponse"
            },
            "examples": {
              "WalletOpenPositions": {
                "value": {
                  "success": true,
                  "data": [
                    {
                      "token": "BTC",
                      "leverage_type": "cross",
                      "leverage_value": 10,
                      "max_leverage": 40,
                      "entry_price": 77241.5,
                      "mark_price": 80787,
                      "liquidation_price": null,
                      "margin_used": 771179.64816,
                      "position_value": 7710078.6134399995,
                      "roe": 0.4590149077892066,
                      "size": 95.43712,
                      "unrealized_pnl": 338372.30896,
                      "cum_funding_since_open": 28605.300979,
                      "cum_funding_since_change": 398.514496,
                      "open_time": 1770775214
                    }
                  ]
                }
              }
            }
          }
        }
      },
      "perpWalletTradeFillsResponse": {
        "description": "JSON object containing a list of trade fills with certain fields",
        "content": {
          "application/json": {
            "schema": {
              "$ref": "#/components/schemas/CommonResponseType"
            },
            "examples": {
              "WalletTradeFills": {
                "value": {
                  "success": true,
                  "data": [
                    {
                      "hash": "0x1ecf84c8e4b3c24e2049043b6d788102031600ae7fb6e120c298301ba3b79c38",
                      "token": "ETH",
                      "side": "Sell",
                      "direction": "Open Short",
                      "size": 0.0678,
                      "volume_usd": 153.89244,
                      "start_position": -8915.6276,
                      "closed_pnl": 0,
                      "fee_value": 0.008617,
                      "price": 2269.7999999999997
                    }
                  ]
                }
              }
            }
          }
        }
      },
      "perpWalletTransfersResponse": {
        "description": "JSON object containing a list of transfers with certain fields",
        "content": {
          "application/json": {
            "schema": {
              "$ref": "#/components/schemas/CommonResponseType"
            },
            "examples": {
              "WalletTransfers": {
                "value": {
                  "success": true,
                  "data": [
                    {
                      "time": 1778752720,
                      "hash": "0xf0a0a2f792ecdaa1cf2c239609980b5fb127a91e2511c251c92e7796e9b93d18",
                      "type": "Deposit",
                      "sender": "",
                      "recipient": "0x5b5d51203a0f9079f8aeb098a6523a13f298c060",
                      "token": "USDC",
                      "amount": 5000499.6,
                      "fee": 0,
                      "fee_token": "",
                      "source_dex": "",
                      "destination_dex": "",
                      "display_type": "Deposit"
                    }
                  ]
                }
              }
            }
          }
        }
      },
      "perpPostWalletTradeFillsResponse": {
        "description": "JSON object containing a list of trade fills with certain fields",
        "content": {
          "application/json": {
            "schema": {
              "$ref": "#/components/schemas/CommonResponseType"
            },
            "examples": {
              "WalletTradeFills": {
                "value": {
                  "data": {
                    "data": [
                      {
                        "time": 1789343885,
                        "hash": "0x1ac3874b7d5799501c3d044458a8ad0205540031185ab822be8c329e3c5b733a",
                        "token": "PUMP",
                        "side": "Buy",
                        "direction": "Close Short",
                        "size": 2881240,
                        "volume_usd": 9997.9028,
                        "start_position": -3411528597,
                        "closed_pnl": 3275.96988,
                        "fee_value": 2.099559,
                        "price": 0.00347
                      }
                    ],
                    "nextCursor": "MHg1YjVkNTEyMDNhMGY5MDc5ZjhhZWIwOThhNjUyM2ExM2YyOThjMDYwLTE3ODkzNDM4NzcwMjgtMHhjOTYxNTY5MmM1YjQ0ZWJjY2FkYjA0NDQ1OGE4NDcwMjAyNDgwMDc4NjBiNzZkOGU2ZDJhMDFlNTg0YjgyOGE3"
                  },
                  "success": true
                }
              }
            }
          }
        }
      },
      "perpPostWalletTransfersResponse": {
        "description": "JSON object containing a list of transfers with certain fields",
        "content": {
          "application/json": {
            "schema": {
              "$ref": "#/components/schemas/CommonResponseType"
            },
            "examples": {
              "WalletTransfers": {
                "value": {
                  "data": {
                    "data": [
                      {
                        "time": 1789340787,
                        "hash": "0xe862f3d735dc25efe9dc044458016f0202d200bcd0df44c18c2b9f29f4dfffda",
                        "type": "Send",
                        "sender": "0x5b5d51203a0f9079f8aeb098a6523a13f298c060",
                        "recipient": "0x2000000000000000000000000000000000000000",
                        "token": "USDC",
                        "amount": 4000000,
                        "usdc_value": 4000000,
                        "fee": 0.00002,
                        "fee_token": "HYPE",
                        "source_dex": "spot",
                        "destination_dex": "spot",
                        "display_type": "Send"
                      }
                    ],
                    "nextCursor": "MHg1YjVkNTEyMDNhMGY5MDc5ZjhhZWIwOThhNjUyM2ExM2YyOThjMDYwLTE3ODkzNDA2NjAzMzYtMHhiOWI5MzcwMTE1M2JkNDFmYmIzMjA0NDQ1N2ZhNzgwMjAxNGIwMGU2YjAzZWYyZjE1ZDgxZTI1M2Q0M2ZhZTBh"
                  },
                  "success": true
                }
              }
            }
          }
        }
      },
      "blockchainAccountDetailResponse": {
        "description": "Successful response",
        "content": {
          "application/json": {
            "schema": {
              "$ref": "#/components/schemas/BlockchainAccountDetailResponse"
            },
            "examples": {
              "Example": {
                "value": {
                  "success": true,
                  "data": {
                    "name": "BondingCurve",
                    "program": "pump",
                    "lamports": 2040843,
                    "data": "F7f4N2DYrGDO/8t04s8DALsuJfwGAAAAzme5KFHRAgC7ggEAAAAAAACAxqR+jQMAAFT6k+xbg5mwoIGlqPjjmPN6AYRz8A2IsL6gBVUa37xvAAEAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA==",
                    "data_parsed": {
                      "complete": false,
                      "creator": "6iirpNpiVKgNWm43ZsMqMXhtFhGwmqYjLoJcRCLyMPvN",
                      "is_cashback_coin": true,
                      "is_mayhem_mode": false,
                      "quote_mint": "11111111111111111111111111111111",
                      "real_quote_reserves": 99003,
                      "real_token_reserves": 793096459216846,
                      "token_total_supply": 1000000000000000,
                      "virtual_quote_reserves": 30000099003,
                      "virtual_token_reserves": 1072996459216846
                    },
                    "owner": "6EF8rrecthR5Dkzon8Nwu78hRvfCKubJ14M5uBEwF6P",
                    "executable": false,
                    "rent_epoch": 18446744073709552000,
                    "is_on_curve": false
                  }
                }
              }
            }
          }
        }
      },
      "blockchainAccountMultipleResponse": {
        "description": "Successful response",
        "content": {
          "application/json": {
            "schema": {
              "$ref": "#/components/schemas/BlockchainAccountMultipleResponse"
            },
            "examples": {
              "Example": {
                "value": {
                  "success": true,
                  "data": {
                    "99wRz6QVMo8HbDQTrv4GrFEUPymiiZeXtzjs3JGVbFNs": {
                      "name": "BondingCurve",
                      "program": "pump",
                      "lamports": 2040843,
                      "data": "F7f4N2DYrGDO/8t04s8DALsuJfwGAAAAzme5KFHRAgC7ggEAAAAAAACAxqR+jQMAAFT6k+xbg5mwoIGlqPjjmPN6AYRz8A2IsL6gBVUa37xvAAEAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA==",
                      "data_parsed": {
                        "complete": false,
                        "creator": "6iirpNpiVKgNWm43ZsMqMXhtFhGwmqYjLoJcRCLyMPvN",
                        "is_cashback_coin": true,
                        "is_mayhem_mode": false,
                        "quote_mint": "11111111111111111111111111111111",
                        "real_quote_reserves": 99003,
                        "real_token_reserves": 793096459216846,
                        "token_total_supply": 1000000000000000,
                        "virtual_quote_reserves": 30000099003,
                        "virtual_token_reserves": 1072996459216846
                      },
                      "owner": "6EF8rrecthR5Dkzon8Nwu78hRvfCKubJ14M5uBEwF6P",
                      "executable": false,
                      "rent_epoch": 18446744073709552000,
                      "is_on_curve": false
                    },
                    "125Ei5rFXvLoThesL8PpszoebQS2mTKNtLAH1NECtQd": {
                      "name": "PoolState",
                      "program": "raydium_launchpad",
                      "lamports": 3876720,
                      "data": "9+3j9dfD3kaYAwAAAAAAAPoABgkBAIDGpH6NAwAAeMX7UdECAN50Dj7pzwMA168w/AYAAAAnJSwK0AAAAFKEfQEAAAAAABJlyhMAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAVxqOAcjfeCD51ms8c2W40eSvqBt4VMwu91zvWL0Ihn7Z43muccQHrOyvERB3Ee6vHb7tmq6FmYSy3N5CMGKU7nZ83C/DwRkVzNl6PAantRdSQQJH3Cpmg5UU5sC9Mqm1BpuIV/6rgYT7aH9jRhjANdrEOdwa6ztVmKDwAAAAAAHrQeA4dFcQqIaAVqsCc9W3F5F2G0Jk/ZCEJtOcklMVRHxdHEqDRylHj0hq2dRU2r1PPfMyXe34cKp7zuDPd89N4/766J4TkjF3H81LUjcN2ESYLg/P/ukSkC3jAESj940AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA",
                      "data_parsed": {
                        "amm_creator_fee_on": {
                          "variant": "QuoteToken"
                        },
                        "auth_bump": 250,
                        "base_decimals": 6,
                        "base_mint": "8yXY3Zeb1SWktToQE1ZpC33uVuYLFvMNfVe7zAMNbonk",
                        "base_vault": "GqM54DAsx6XSPuJxqoPkKzmARr2PAW35Hw1QuiRiAfWb",
                        "creator": "GM145cZ2ZwxAv27ggpPLJYSwxKTcvvqM9b9LV4gBoQLL",
                        "epoch": 920,
                        "global_config": "6s1xP3hpbAfFoNtUNF8mfHsjr2Bd97JxFJRWLbL6aHuX",
                        "migrate_fee": 0,
                        "migrate_type": 1,
                        "padding": [
                          0,
                          0,
                          0,
                          0,
                          0,
                          0,
                          0,
                          0,
                          0,
                          0,
                          0,
                          0,
                          0,
                          0,
                          0,
                          0,
                          0,
                          0,
                          0,
                          0,
                          0,
                          0,
                          0,
                          0,
                          0,
                          0,
                          0,
                          0,
                          0,
                          0,
                          0,
                          0,
                          0,
                          0,
                          0,
                          0,
                          0,
                          0,
                          0,
                          0,
                          0,
                          0,
                          0,
                          0,
                          0,
                          0,
                          0,
                          0,
                          0,
                          0,
                          0,
                          0,
                          0,
                          0
                        ],
                        "platform_config": "FfYek5vEz23cMkWsdJwG2oa6EphsvXSHrGpdALN4g6W1",
                        "platform_fee": 0,
                        "platform_vesting_share": 0,
                        "quote_decimals": 9,
                        "quote_mint": "So11111111111111111111111111111111111111112",
                        "quote_protocol_fee": 0,
                        "quote_vault": "9NTuK6boCAFk3gb8V8asp9t7emrXKmkPTxtcCUeGGMDW",
                        "real_base": 893523862823,
                        "real_quote": 25003090,
                        "status": 0,
                        "supply": 1000000000000000,
                        "token_program_flag": 0,
                        "total_base_sell": 793100000000000,
                        "total_quote_fund_raising": 85000000000,
                        "vesting_schedule": {
                          "allocated_share_amount": 0,
                          "cliff_period": 0,
                          "start_time": 0,
                          "total_locked_amount": 0,
                          "unlock_period": 0
                        },
                        "virtual_base": 1073025605596382,
                        "virtual_quote": 30000852951
                      },
                      "owner": "LanMV9sAd7wArD4vJFi2qDdfnVhFxYSUg6eADduJ3uj",
                      "executable": false,
                      "rent_epoch": 18446744073709552000,
                      "is_on_curve": false
                    }
                  }
                }
              }
            }
          }
        }
      },
      "blockchainTokenAccountsResponse": {
        "description": "Successful response",
        "content": {
          "application/json": {
            "schema": {
              "$ref": "#/components/schemas/BlockchainTokenAccountsResponse"
            },
            "examples": {
              "Example": {
                "value": {
                  "success": true,
                  "data": [
                    {
                      "token_account": "14TDbofLkZ9BMLmQrWiwawD9ngjo62auj5Axs3g3ed9",
                      "mint": "HdAUYdY3NFnDytViCkBdkX3pdP2KFHxJ7oaujiQfycN8",
                      "decimals": 0,
                      "amount": 1,
                      "state": "initialized"
                    },
                    {
                      "token_account": "17fAxkeEaGS1t4uMVeE2A2ifyqstMRf2eJ6MEh3YxNB",
                      "mint": "3aF8DcwKxyUjQkh1C2Xaf54d6rHAe3pWXiWVsPsQEXKQ",
                      "decimals": 6,
                      "amount": 157145478888,
                      "state": "initialized"
                    }
                  ]
                }
              }
            }
          }
        }
      },
      "blockchainTokenMetadataResponse": {
        "description": "Successful response",
        "content": {
          "application/json": {
            "schema": {
              "$ref": "#/components/schemas/BlockchainTokenMetadataResponse"
            },
            "examples": {
              "Example": {
                "value": {
                  "success": true,
                  "data": {
                    "supply": 1,
                    "decimals": 0,
                    "is_initialized": true,
                    "mint_authority": "HZZKPtYNXzvD7UUNA5BAJdTV6waECFQ4bYV2VrfVyDfk",
                    "freeze_authority": "HZZKPtYNXzvD7UUNA5BAJdTV6waECFQ4bYV2VrfVyDfk",
                    "is_nft": true,
                    "key": "MetadataV1",
                    "update_authority": "3bwq8YJDGQN6GJfGjcrkCTKT2g2LCzBdgtg6x7PmE3Fz",
                    "name": "Magellanic Clouds",
                    "symbol": "",
                    "uri": "https://bafkreiblcmp6u7j6fdspyr7sf2igpbipihqexecj3d4mg43brpxfombnxm.ipfs.dweb.link?ext=",
                    "seller_fee_basis_points": 1000,
                    "creators": [
                      {
                        "address": "3bwq8YJDGQN6GJfGjcrkCTKT2g2LCzBdgtg6x7PmE3Fz",
                        "verified": true,
                        "share": 98
                      },
                      {
                        "address": "tsU33UT3K2JTfLgHUo7hdzRhRe4wth885cqVbM8WLiq",
                        "verified": true,
                        "share": 2
                      }
                    ],
                    "primary_sale_happened": false,
                    "is_mutable": true,
                    "edition_nonce": 253,
                    "token_standard": "NonFungible",
                    "collection": {
                      "verified": true,
                      "key": "H2MmeHoKSTzmfmtd8HDEfTtTbDFsXKbnDA6Ec2Pjrvvc"
                    }
                  }
                }
              }
            }
          }
        }
      },
      "blockchainTokenMetadataMultipleResponse": {
        "description": "Successful response",
        "content": {
          "application/json": {
            "schema": {
              "$ref": "#/components/schemas/BlockchainTokenMetadataMultipleResponse"
            },
            "examples": {
              "Example": {
                "value": {
                  "success": true,
                  "data": {
                    "FhMxWnZts95ViF8hgzwvomydAiLP9qfgZHyGRnvkNia5": {
                      "supply": 999743839592276900,
                      "decimals": 9,
                      "is_initialized": true,
                      "mint_authority": null,
                      "freeze_authority": null,
                      "is_nft": false,
                      "key": "MetadataV1",
                      "update_authority": "65USnH8wG5iGXNUcYqSFzfdUUKDhZ9PtM1Lc4h142xc9",
                      "name": "LYDIAN$",
                      "symbol": "LYD$",
                      "uri": "https://nftstorage.link/ipfs/bafkreictlkcmobpvfaou6layeextjgf5ytlzjnijsnxppwt4vhup4jqpwu/",
                      "seller_fee_basis_points": 0,
                      "creators": [
                        {
                          "address": "65USnH8wG5iGXNUcYqSFzfdUUKDhZ9PtM1Lc4h142xc9",
                          "verified": true,
                          "share": 100
                        }
                      ],
                      "primary_sale_happened": false,
                      "is_mutable": false,
                      "edition_nonce": 255,
                      "token_standard": "Fungible"
                    },
                    "6hiALznKpxkDjUXmmja8QhCY3meTN1wTEga8vSSUgaA4": {
                      "supply": 996756255212019,
                      "decimals": 9,
                      "is_initialized": true,
                      "mint_authority": null,
                      "freeze_authority": null,
                      "is_nft": false,
                      "key": "MetadataV1",
                      "update_authority": "8X27f7skxnSZv5LmyqvHL2uazGrSyBeawBr88rn9Zun8",
                      "name": "dog wif hoodie",
                      "symbol": "dwh",
                      "uri": "https://maroon-genetic-fowl-955.mypinata.cloud/ipfs/QmcKFww8gFwuCmPJcJDS17qsWQ9DBj2poTXajoezGSTWFQ",
                      "seller_fee_basis_points": 0,
                      "creators": [
                        {
                          "address": "8X27f7skxnSZv5LmyqvHL2uazGrSyBeawBr88rn9Zun8",
                          "verified": true,
                          "share": 100
                        }
                      ],
                      "primary_sale_happened": false,
                      "is_mutable": true,
                      "edition_nonce": 254,
                      "token_standard": "Fungible"
                    }
                  }
                }
              }
            }
          }
        }
      },
      "blockchainTransactionDetailResponse": {
        "description": "Successful response",
        "content": {
          "application/json": {
            "schema": {
              "$ref": "#/components/schemas/BlockchainTransactionDetailResponse"
            },
            "examples": {
              "Example": {
                "value": {
                  "success": true,
                  "data": {
                    "signatures": [
                      "39FeSE4ykBAZiFsSJrhAKoqTszXF8fbTMZE1oEu5c91AuYq9t1vcg8wsXxYigdXNm22QAHCJ6oUG23Mnr4bKF5ao"
                    ],
                    "signers": [
                      "E1onLBSnoQMsp9tntCcvMJ6TYEfQniJvumd5dGYQxuky"
                    ],
                    "slot": 432547834,
                    "fee": 224376,
                    "priority_fee": 219376,
                    "cost_units": 377372,
                    "compute_units_consumed": 365777,
                    "sol_balance_changes": [
                      {
                        "address": "E1onLBSnoQMsp9tntCcvMJ6TYEfQniJvumd5dGYQxuky",
                        "pre_balance": 119828653,
                        "post_balance": 115525729
                      },
                      {
                        "address": "22ZMtRbmWcrS1caUfXRQeHqx4TTpWw1vbLm3kS1jJB7g",
                        "pre_balance": 0,
                        "post_balance": 2039280
                      },
                      {
                        "address": "2V53KRpaVGWfGWHRaZ6hLoUR8jL82ZGC49RmiKmNCRaS",
                        "pre_balance": 2074080,
                        "post_balance": 2074080
                      },
                      {
                        "address": "3Zy3QguGdwe3ibsb1sgHXrYhizdbEkawCihVdgjogkN2",
                        "pre_balance": 0,
                        "post_balance": 0
                      },
                      {
                        "address": "972ivFHdp1ZZ1Gq5JjW85R7eZJ1hiy9VuBn1CbRPjchR",
                        "pre_balance": 2039280,
                        "post_balance": 2039280
                      },
                      {
                        "address": "A97Fu2nQCryJuTA2DgxzL9wJ4nT3YZf8XfXRHCj9ZXLA",
                        "pre_balance": 1844400,
                        "post_balance": 1844400
                      },
                      {
                        "address": "AufkKeddmSVSkMidBdY7Lto69xPWvGARFVopwGL3ifJx",
                        "pre_balance": 0,
                        "post_balance": 2039280
                      },
                      {
                        "address": "BsnXWR2bsoaFDm2JoArdT56WkeMT8ovMtAmjoZ1zGDJD",
                        "pre_balance": 3841920,
                        "post_balance": 3841920
                      },
                      {
                        "address": "cqhdYZqwH9t1EXRTN4qEF4fPPnwNMk78eV3x5kZUb2M",
                        "pre_balance": 2039280,
                        "post_balance": 2039280
                      },
                      {
                        "address": "FpMyHdv6kDZWL3ABovoYrevG7rS5ptuQ1zpZNeEyAmK9",
                        "pre_balance": 2146646,
                        "post_balance": 2146646
                      },
                      {
                        "address": "GLiLYXNjQVVcdTMjX28jkrs4RdtPmwue9zjz7GP2i8hm",
                        "pre_balance": 2039280,
                        "post_balance": 2039280
                      },
                      {
                        "address": "3i5JeuZuUxeKtVysUnwQNGerJP2bSMX9fTFfS4Nxe3Br",
                        "pre_balance": 1141444,
                        "post_balance": 1141444
                      },
                      {
                        "address": "4NdFc3vL7AQ3mMhdaHNJYJAPXwURCP2daHEis2D6RYCK",
                        "pre_balance": 0,
                        "post_balance": 0
                      },
                      {
                        "address": "4vSbQ5LYFQahHwzeCweRANVXjAwzDGMQvuvqwts4GEX2",
                        "pre_balance": 1461600,
                        "post_balance": 1461600
                      },
                      {
                        "address": "ATokenGPvbdGVxr1b2hvZbsiqW5xWH25efTNsLJA8knL",
                        "pre_balance": 3388605256,
                        "post_balance": 3388605256
                      },
                      {
                        "address": "ComputeBudget111111111111111111111111111111",
                        "pre_balance": 1,
                        "post_balance": 1
                      },
                      {
                        "address": "DF1ow4tspfHX9JwWJsAb9epbkA8hmpSEAtxXy1V27QBH",
                        "pre_balance": 13326446,
                        "post_balance": 13326446
                      },
                      {
                        "address": "E7b1VeWWnMWLLdcVYgwxnDdmBDknKDAXJC5yNdoeRLDz",
                        "pre_balance": 8184960,
                        "post_balance": 8184960
                      },
                      {
                        "address": "HbBHuvgWoChfztoqz2izLRF5mSoLKQXfU68kueBmhcmL",
                        "pre_balance": 10001142500,
                        "post_balance": 10001142500
                      },
                      {
                        "address": "TokenkegQfeZyiNwAJbNbGKPFXCWuBvf9Ss623VQ5DA",
                        "pre_balance": 58238313,
                        "post_balance": 58238313
                      },
                      {
                        "address": "5kvBykCa3dTU2HVpikGuZ5gsuqrf7L1ywrdMBozh8Hj8",
                        "pre_balance": 1461600,
                        "post_balance": 1461600
                      },
                      {
                        "address": "CAtPGrHP2CbY8AXBBUYduxiWNhHnVDHoozNjnnzBF7M5",
                        "pre_balance": 2039280,
                        "post_balance": 2039280
                      },
                      {
                        "address": "GsVQjvW7KzEqe8thTSXDLQVoiDxAvCpMPYbBaeSZQfK6",
                        "pre_balance": 2039280,
                        "post_balance": 2039280
                      },
                      {
                        "address": "MXRyxFjF3mqGgEGdoQ6LwAUKVjdp2TgjNCcvugpJQ6w",
                        "pre_balance": 26348272712,
                        "post_balance": 26348569271
                      },
                      {
                        "address": "DWpvfqzGWuVy9jVSKSShdM2733nrEsnnhsUStYbkj6Nn",
                        "pre_balance": 604798434430,
                        "post_balance": 604798435823
                      },
                      {
                        "address": "GAFuhgcd328SkkBYHpfadzmef9hTGAFRCi9QoCnsZQug",
                        "pre_balance": 506474494,
                        "post_balance": 506475886
                      },
                      {
                        "address": "452kHnW1owUXuf3DbqnxL15eNwK4TTWN2b9kcbof4YvT",
                        "pre_balance": 2074080,
                        "post_balance": 2074080
                      },
                      {
                        "address": "5byNGNXxGhjv6Ymukbky2p73H1joEAucMg1aQDeV7Pjj",
                        "pre_balance": 27676111963,
                        "post_balance": 27675812607
                      },
                      {
                        "address": "6RQTgY3yHCWARVAnPVrCGbWavoo4RRHWWbBs2snawNSw",
                        "pre_balance": 2985840,
                        "post_balance": 2985840
                      },
                      {
                        "address": "AnpiBsThFWgK78KzX41cztvupt2CWVF3d5sA45m85Lab",
                        "pre_balance": 2039280,
                        "post_balance": 2039280
                      },
                      {
                        "address": "7R3ZCZHf4y9E8oy41YJoYFSxVmQfUtcDBNFFgBRUh6zw",
                        "pre_balance": 0,
                        "post_balance": 0
                      },
                      {
                        "address": "Djxfn7zWFxFqYgwesXfq8BeAirfXwfhQmNcCousXh7G7",
                        "pre_balance": 3145920,
                        "post_balance": 3145920
                      },
                      {
                        "address": "11111111111111111111111111111111",
                        "pre_balance": 1,
                        "post_balance": 1
                      },
                      {
                        "address": "5PHirr8joyTMp9JMm6nW7hNDVyEYdkzDqazxPD7RaTjx",
                        "pre_balance": 33103976,
                        "post_balance": 33103976
                      },
                      {
                        "address": "8Ks12pbrD6PXxfty1hVQiE9sc289zgU1zHkvXhrSdriF",
                        "pre_balance": 1000056,
                        "post_balance": 1000056
                      },
                      {
                        "address": "8xeaWCsJYxRoudEZGJWURdfrtFhLYZz9b4iHJnW5tb3d",
                        "pre_balance": 1244009,
                        "post_balance": 1244009
                      },
                      {
                        "address": "9M4giFFMxmFGXtc3feFzRai56WbBqehoSeRE5GK7gf7",
                        "pre_balance": 1587644543,
                        "post_balance": 1587644543
                      },
                      {
                        "address": "ADyA8hdefvWN2dbGGWFotbzWxrAvLW83WG6QCVXvJKqw",
                        "pre_balance": 8986092,
                        "post_balance": 8986092
                      },
                      {
                        "address": "dbcij3LWUppWqq96dh6gJWwBifmcGfLSB5D4DuSMaqN",
                        "pre_balance": 5571162548,
                        "post_balance": 5571162548
                      },
                      {
                        "address": "EPjFWdd5AufqSSqeM2qN1xzybapC8G4wEGGkZwyTDt1v",
                        "pre_balance": 512759414417,
                        "post_balance": 512759414417
                      },
                      {
                        "address": "FhVo3mqL8PW5pH5U2CN4XE33DokiyZnUwuGpH2hmHLuM",
                        "pre_balance": 5936173127,
                        "post_balance": 5936173127
                      },
                      {
                        "address": "GS4CU59F31iL7aR2Q8zVS8DRrcRnXX1yjQ66TqNVQnaR",
                        "pre_balance": 4641092,
                        "post_balance": 4641092
                      },
                      {
                        "address": "JCRGumoE9Qi5BBgULTgdgTLjSgkCMSbF62ZZfGs84JeU",
                        "pre_balance": 3406998996166,
                        "post_balance": 3406998996166
                      },
                      {
                        "address": "jitodontfront1111111111111111Bui1dWithDF1ow",
                        "pre_balance": 0,
                        "post_balance": 0
                      },
                      {
                        "address": "pAMMBay6oceH9fJKBRHGP5D4bD4sWpmSwMn52FMfXEA",
                        "pre_balance": 1168683627,
                        "post_balance": 1168683627
                      },
                      {
                        "address": "pfeeUxB6jkeY1Hxd7CsFCAjcbHA9rWtchMGdZ6VojVZ",
                        "pre_balance": 6046720,
                        "post_balance": 6046720
                      },
                      {
                        "address": "So11111111111111111111111111111111111111112",
                        "pre_balance": 1588058864147,
                        "post_balance": 1588058864147
                      },
                      {
                        "address": "SSwapUtytfBdBn1b9NUGG6foMVPtcWgpRU32HToDUZr",
                        "pre_balance": 1141440,
                        "post_balance": 1141440
                      },
                      {
                        "address": "Sysvar1nstructions1111111111111111111111111",
                        "pre_balance": 0,
                        "post_balance": 0
                      },
                      {
                        "address": "SysvarC1ock11111111111111111111111111111111",
                        "pre_balance": 1169280,
                        "post_balance": 1169280
                      },
                      {
                        "address": "TokenzQdBNbLqP5VEhdkAS6EPFLC1PHnBqCXEpPxuEb",
                        "pre_balance": 70127637,
                        "post_balance": 70127637
                      },
                      {
                        "address": "C5QG8mi79H9ndfBzmU8Hn9FRCTbpSnU9MtdA69GVpump",
                        "pre_balance": 3640080,
                        "post_balance": 3640080
                      },
                      {
                        "address": "GARuZ29MyE2b84z4aLTGRc196bC7wBoKZKoiGehFrYjZ",
                        "pre_balance": 0,
                        "post_balance": 0
                      },
                      {
                        "address": "HTXVP3BP6m6mFvG7FjYfcj4xjPWQmXREVJy7DvAMYfWH",
                        "pre_balance": 0,
                        "post_balance": 0
                      }
                    ],
                    "token_balance_changes": [
                      {
                        "address": "AufkKeddmSVSkMidBdY7Lto69xPWvGARFVopwGL3ifJx",
                        "mint": "4vSbQ5LYFQahHwzeCweRANVXjAwzDGMQvuvqwts4GEX2",
                        "decimals": 6,
                        "post_owner": "HbBHuvgWoChfztoqz2izLRF5mSoLKQXfU68kueBmhcmL",
                        "pre_balance": 0,
                        "post_balance": 4061
                      },
                      {
                        "address": "MXRyxFjF3mqGgEGdoQ6LwAUKVjdp2TgjNCcvugpJQ6w",
                        "mint": "So11111111111111111111111111111111111111112",
                        "decimals": 9,
                        "pre_owner": "7R3ZCZHf4y9E8oy41YJoYFSxVmQfUtcDBNFFgBRUh6zw",
                        "post_owner": "7R3ZCZHf4y9E8oy41YJoYFSxVmQfUtcDBNFFgBRUh6zw",
                        "pre_balance": 26346233413,
                        "post_balance": 26346529972
                      },
                      {
                        "address": "GLiLYXNjQVVcdTMjX28jkrs4RdtPmwue9zjz7GP2i8hm",
                        "mint": "4vSbQ5LYFQahHwzeCweRANVXjAwzDGMQvuvqwts4GEX2",
                        "decimals": 6,
                        "pre_owner": "FhVo3mqL8PW5pH5U2CN4XE33DokiyZnUwuGpH2hmHLuM",
                        "post_owner": "FhVo3mqL8PW5pH5U2CN4XE33DokiyZnUwuGpH2hmHLuM",
                        "pre_balance": 499583517662757,
                        "post_balance": 499583517198602
                      },
                      {
                        "address": "AnpiBsThFWgK78KzX41cztvupt2CWVF3d5sA45m85Lab",
                        "mint": "So11111111111111111111111111111111111111112",
                        "decimals": 9,
                        "pre_owner": "GARuZ29MyE2b84z4aLTGRc196bC7wBoKZKoiGehFrYjZ",
                        "post_owner": "GARuZ29MyE2b84z4aLTGRc196bC7wBoKZKoiGehFrYjZ",
                        "pre_balance": 0,
                        "post_balance": 0
                      },
                      {
                        "address": "CAtPGrHP2CbY8AXBBUYduxiWNhHnVDHoozNjnnzBF7M5",
                        "mint": "5kvBykCa3dTU2HVpikGuZ5gsuqrf7L1ywrdMBozh8Hj8",
                        "decimals": 2,
                        "pre_owner": "FDbLZ5DRo61queVRH9LL1mQnsiAoubQEnoCRuPEmH9M8",
                        "post_owner": "FDbLZ5DRo61queVRH9LL1mQnsiAoubQEnoCRuPEmH9M8",
                        "pre_balance": 17304802522,
                        "post_balance": 17304806558
                      },
                      {
                        "address": "22ZMtRbmWcrS1caUfXRQeHqx4TTpWw1vbLm3kS1jJB7g",
                        "mint": "4vSbQ5LYFQahHwzeCweRANVXjAwzDGMQvuvqwts4GEX2",
                        "decimals": 6,
                        "post_owner": "E1onLBSnoQMsp9tntCcvMJ6TYEfQniJvumd5dGYQxuky",
                        "pre_balance": 0,
                        "post_balance": 460094
                      },
                      {
                        "address": "972ivFHdp1ZZ1Gq5JjW85R7eZJ1hiy9VuBn1CbRPjchR",
                        "mint": "EPjFWdd5AufqSSqeM2qN1xzybapC8G4wEGGkZwyTDt1v",
                        "decimals": 6,
                        "pre_owner": "FhVo3mqL8PW5pH5U2CN4XE33DokiyZnUwuGpH2hmHLuM",
                        "post_owner": "FhVo3mqL8PW5pH5U2CN4XE33DokiyZnUwuGpH2hmHLuM",
                        "pre_balance": 19602364698,
                        "post_balance": 19602387486
                      },
                      {
                        "address": "GsVQjvW7KzEqe8thTSXDLQVoiDxAvCpMPYbBaeSZQfK6",
                        "mint": "EPjFWdd5AufqSSqeM2qN1xzybapC8G4wEGGkZwyTDt1v",
                        "decimals": 6,
                        "pre_owner": "7R3ZCZHf4y9E8oy41YJoYFSxVmQfUtcDBNFFgBRUh6zw",
                        "post_owner": "7R3ZCZHf4y9E8oy41YJoYFSxVmQfUtcDBNFFgBRUh6zw",
                        "pre_balance": 2025311638,
                        "post_balance": 2025288850
                      },
                      {
                        "address": "GAFuhgcd328SkkBYHpfadzmef9hTGAFRCi9QoCnsZQug",
                        "mint": "So11111111111111111111111111111111111111112",
                        "decimals": 9,
                        "pre_owner": "9M4giFFMxmFGXtc3feFzRai56WbBqehoSeRE5GK7gf7",
                        "post_owner": "9M4giFFMxmFGXtc3feFzRai56WbBqehoSeRE5GK7gf7",
                        "pre_balance": 504435214,
                        "post_balance": 504436606
                      },
                      {
                        "address": "2V53KRpaVGWfGWHRaZ6hLoUR8jL82ZGC49RmiKmNCRaS",
                        "mint": "C5QG8mi79H9ndfBzmU8Hn9FRCTbpSnU9MtdA69GVpump",
                        "decimals": 6,
                        "pre_owner": "E1onLBSnoQMsp9tntCcvMJ6TYEfQniJvumd5dGYQxuky",
                        "post_owner": "E1onLBSnoQMsp9tntCcvMJ6TYEfQniJvumd5dGYQxuky",
                        "pre_balance": 9515338301,
                        "post_balance": 0
                      },
                      {
                        "address": "5byNGNXxGhjv6Ymukbky2p73H1joEAucMg1aQDeV7Pjj",
                        "mint": "So11111111111111111111111111111111111111112",
                        "decimals": 9,
                        "pre_owner": "6RQTgY3yHCWARVAnPVrCGbWavoo4RRHWWbBs2snawNSw",
                        "post_owner": "6RQTgY3yHCWARVAnPVrCGbWavoo4RRHWWbBs2snawNSw",
                        "pre_balance": 27674072683,
                        "post_balance": 27673773327
                      },
                      {
                        "address": "FpMyHdv6kDZWL3ABovoYrevG7rS5ptuQ1zpZNeEyAmK9",
                        "mint": "So11111111111111111111111111111111111111112",
                        "decimals": 9,
                        "pre_owner": "A97Fu2nQCryJuTA2DgxzL9wJ4nT3YZf8XfXRHCj9ZXLA",
                        "post_owner": "A97Fu2nQCryJuTA2DgxzL9wJ4nT3YZf8XfXRHCj9ZXLA",
                        "pre_balance": 107366,
                        "post_balance": 107366
                      },
                      {
                        "address": "cqhdYZqwH9t1EXRTN4qEF4fPPnwNMk78eV3x5kZUb2M",
                        "mint": "EPjFWdd5AufqSSqeM2qN1xzybapC8G4wEGGkZwyTDt1v",
                        "decimals": 6,
                        "pre_owner": "E1onLBSnoQMsp9tntCcvMJ6TYEfQniJvumd5dGYQxuky",
                        "post_owner": "E1onLBSnoQMsp9tntCcvMJ6TYEfQniJvumd5dGYQxuky",
                        "pre_balance": 0,
                        "post_balance": 0
                      },
                      {
                        "address": "452kHnW1owUXuf3DbqnxL15eNwK4TTWN2b9kcbof4YvT",
                        "mint": "C5QG8mi79H9ndfBzmU8Hn9FRCTbpSnU9MtdA69GVpump",
                        "decimals": 6,
                        "pre_owner": "6RQTgY3yHCWARVAnPVrCGbWavoo4RRHWWbBs2snawNSw",
                        "post_owner": "6RQTgY3yHCWARVAnPVrCGbWavoo4RRHWWbBs2snawNSw",
                        "pre_balance": 879461975782395,
                        "post_balance": 879471491120696
                      },
                      {
                        "address": "DWpvfqzGWuVy9jVSKSShdM2733nrEsnnhsUStYbkj6Nn",
                        "mint": "So11111111111111111111111111111111111111112",
                        "decimals": 9,
                        "pre_owner": "JCRGumoE9Qi5BBgULTgdgTLjSgkCMSbF62ZZfGs84JeU",
                        "post_owner": "JCRGumoE9Qi5BBgULTgdgTLjSgkCMSbF62ZZfGs84JeU",
                        "pre_balance": 604796395150,
                        "post_balance": 604796396543
                      }
                    ],
                    "instructions": [
                      {
                        "name": "set_compute_unit_price",
                        "program_id": "ComputeBudget111111111111111111111111111111",
                        "program": "ComputeBudget",
                        "data": "AyChBwAAAAAA",
                        "data_parsed": {
                          "micro_lamports": 500000
                        }
                      },
                      {
                        "name": "set_compute_unit_limit",
                        "program_id": "ComputeBudget111111111111111111111111111111",
                        "program": "ComputeBudget",
                        "data": "AuCxBgA=",
                        "data_parsed": {
                          "units": 438752
                        }
                      },
                      {
                        "program_id": "3i5JeuZuUxeKtVysUnwQNGerJP2bSMX9fTFfS4Nxe3Br",
                        "accounts": [
                          {
                            "address": "SysvarC1ock11111111111111111111111111111111"
                          },
                          {
                            "address": "4NdFc3vL7AQ3mMhdaHNJYJAPXwURCP2daHEis2D6RYCK"
                          }
                        ],
                        "data": "AP8g2ruStU4A"
                      },
                      {
                        "name": "swap",
                        "program_id": "DF1ow4tspfHX9JwWJsAb9epbkA8hmpSEAtxXy1V27QBH",
                        "program": "swap_orchestrator",
                        "accounts": [
                          {
                            "name": "token_program",
                            "address": "TokenkegQfeZyiNwAJbNbGKPFXCWuBvf9Ss623VQ5DA",
                            "writable": false,
                            "signer": false
                          },
                          {
                            "name": "associated_token_program",
                            "address": "ATokenGPvbdGVxr1b2hvZbsiqW5xWH25efTNsLJA8knL",
                            "writable": false,
                            "signer": false
                          },
                          {
                            "name": "system_program",
                            "address": "11111111111111111111111111111111",
                            "writable": false,
                            "signer": false
                          },
                          {
                            "name": "user_token_authority",
                            "address": "E1onLBSnoQMsp9tntCcvMJ6TYEfQniJvumd5dGYQxuky",
                            "writable": false,
                            "signer": true
                          },
                          {
                            "name": "event_authority",
                            "address": "8xeaWCsJYxRoudEZGJWURdfrtFhLYZz9b4iHJnW5tb3d",
                            "writable": false,
                            "signer": false
                          },
                          {
                            "name": "program",
                            "address": "DF1ow4tspfHX9JwWJsAb9epbkA8hmpSEAtxXy1V27QBH",
                            "writable": false,
                            "signer": false
                          },
                          {
                            "address": "DF1ow4tspfHX9JwWJsAb9epbkA8hmpSEAtxXy1V27QBH"
                          },
                          {
                            "address": "Sysvar1nstructions1111111111111111111111111"
                          },
                          {
                            "address": "TokenzQdBNbLqP5VEhdkAS6EPFLC1PHnBqCXEpPxuEb"
                          },
                          {
                            "address": "C5QG8mi79H9ndfBzmU8Hn9FRCTbpSnU9MtdA69GVpump"
                          },
                          {
                            "address": "DF1ow4tspfHX9JwWJsAb9epbkA8hmpSEAtxXy1V27QBH"
                          },
                          {
                            "address": "jitodontfront1111111111111111Bui1dWithDF1ow"
                          },
                          {
                            "address": "pAMMBay6oceH9fJKBRHGP5D4bD4sWpmSwMn52FMfXEA"
                          },
                          {
                            "address": "6RQTgY3yHCWARVAnPVrCGbWavoo4RRHWWbBs2snawNSw"
                          },
                          {
                            "address": "E1onLBSnoQMsp9tntCcvMJ6TYEfQniJvumd5dGYQxuky"
                          },
                          {
                            "address": "ADyA8hdefvWN2dbGGWFotbzWxrAvLW83WG6QCVXvJKqw"
                          },
                          {
                            "address": "C5QG8mi79H9ndfBzmU8Hn9FRCTbpSnU9MtdA69GVpump"
                          },
                          {
                            "address": "So11111111111111111111111111111111111111112"
                          },
                          {
                            "address": "2V53KRpaVGWfGWHRaZ6hLoUR8jL82ZGC49RmiKmNCRaS"
                          },
                          {
                            "address": "3Zy3QguGdwe3ibsb1sgHXrYhizdbEkawCihVdgjogkN2"
                          },
                          {
                            "address": "452kHnW1owUXuf3DbqnxL15eNwK4TTWN2b9kcbof4YvT"
                          },
                          {
                            "address": "5byNGNXxGhjv6Ymukbky2p73H1joEAucMg1aQDeV7Pjj"
                          },
                          {
                            "address": "JCRGumoE9Qi5BBgULTgdgTLjSgkCMSbF62ZZfGs84JeU"
                          },
                          {
                            "address": "DWpvfqzGWuVy9jVSKSShdM2733nrEsnnhsUStYbkj6Nn"
                          },
                          {
                            "address": "GS4CU59F31iL7aR2Q8zVS8DRrcRnXX1yjQ66TqNVQnaR"
                          },
                          {
                            "address": "AnpiBsThFWgK78KzX41cztvupt2CWVF3d5sA45m85Lab"
                          },
                          {
                            "address": "GARuZ29MyE2b84z4aLTGRc196bC7wBoKZKoiGehFrYjZ"
                          },
                          {
                            "address": "5PHirr8joyTMp9JMm6nW7hNDVyEYdkzDqazxPD7RaTjx"
                          },
                          {
                            "address": "pfeeUxB6jkeY1Hxd7CsFCAjcbHA9rWtchMGdZ6VojVZ"
                          },
                          {
                            "address": "HTXVP3BP6m6mFvG7FjYfcj4xjPWQmXREVJy7DvAMYfWH"
                          },
                          {
                            "address": "A97Fu2nQCryJuTA2DgxzL9wJ4nT3YZf8XfXRHCj9ZXLA"
                          },
                          {
                            "address": "FpMyHdv6kDZWL3ABovoYrevG7rS5ptuQ1zpZNeEyAmK9"
                          },
                          {
                            "address": "9M4giFFMxmFGXtc3feFzRai56WbBqehoSeRE5GK7gf7"
                          },
                          {
                            "address": "GAFuhgcd328SkkBYHpfadzmef9hTGAFRCi9QoCnsZQug"
                          },
                          {
                            "address": "SSwapUtytfBdBn1b9NUGG6foMVPtcWgpRU32HToDUZr"
                          },
                          {
                            "address": "Djxfn7zWFxFqYgwesXfq8BeAirfXwfhQmNcCousXh7G7"
                          },
                          {
                            "address": "7R3ZCZHf4y9E8oy41YJoYFSxVmQfUtcDBNFFgBRUh6zw"
                          },
                          {
                            "address": "E1onLBSnoQMsp9tntCcvMJ6TYEfQniJvumd5dGYQxuky"
                          },
                          {
                            "address": "3Zy3QguGdwe3ibsb1sgHXrYhizdbEkawCihVdgjogkN2"
                          },
                          {
                            "address": "MXRyxFjF3mqGgEGdoQ6LwAUKVjdp2TgjNCcvugpJQ6w"
                          },
                          {
                            "address": "GsVQjvW7KzEqe8thTSXDLQVoiDxAvCpMPYbBaeSZQfK6"
                          },
                          {
                            "address": "cqhdYZqwH9t1EXRTN4qEF4fPPnwNMk78eV3x5kZUb2M"
                          },
                          {
                            "address": "5kvBykCa3dTU2HVpikGuZ5gsuqrf7L1ywrdMBozh8Hj8"
                          },
                          {
                            "address": "CAtPGrHP2CbY8AXBBUYduxiWNhHnVDHoozNjnnzBF7M5"
                          },
                          {
                            "address": "EPjFWdd5AufqSSqeM2qN1xzybapC8G4wEGGkZwyTDt1v"
                          },
                          {
                            "address": "FhVo3mqL8PW5pH5U2CN4XE33DokiyZnUwuGpH2hmHLuM"
                          },
                          {
                            "address": "E7b1VeWWnMWLLdcVYgwxnDdmBDknKDAXJC5yNdoeRLDz"
                          },
                          {
                            "address": "BsnXWR2bsoaFDm2JoArdT56WkeMT8ovMtAmjoZ1zGDJD"
                          },
                          {
                            "address": "cqhdYZqwH9t1EXRTN4qEF4fPPnwNMk78eV3x5kZUb2M"
                          },
                          {
                            "address": "22ZMtRbmWcrS1caUfXRQeHqx4TTpWw1vbLm3kS1jJB7g"
                          },
                          {
                            "address": "GLiLYXNjQVVcdTMjX28jkrs4RdtPmwue9zjz7GP2i8hm"
                          },
                          {
                            "address": "972ivFHdp1ZZ1Gq5JjW85R7eZJ1hiy9VuBn1CbRPjchR"
                          },
                          {
                            "address": "4vSbQ5LYFQahHwzeCweRANVXjAwzDGMQvuvqwts4GEX2"
                          },
                          {
                            "address": "EPjFWdd5AufqSSqeM2qN1xzybapC8G4wEGGkZwyTDt1v"
                          },
                          {
                            "address": "E1onLBSnoQMsp9tntCcvMJ6TYEfQniJvumd5dGYQxuky"
                          },
                          {
                            "address": "dbcij3LWUppWqq96dh6gJWwBifmcGfLSB5D4DuSMaqN"
                          },
                          {
                            "address": "8Ks12pbrD6PXxfty1hVQiE9sc289zgU1zHkvXhrSdriF"
                          },
                          {
                            "address": "dbcij3LWUppWqq96dh6gJWwBifmcGfLSB5D4DuSMaqN"
                          }
                        ],
                        "data": "+MaekeF1h8gGAAAAJcrJEG9qW8EX0jvrKp2BI4piBM3p5Z5GvSeNJQAKq/obj/AEyZx4esCD+yzoUdZZuEm7IFSzsZi+pF643WKFIwV7KMgZAAMoubkAAAAxAgAAAAAAAAAAAAAABlAkiwQAAAAACS0NPYooNwIAAACBHG+GBAAAAAAAARYEWQAAAAAAAAABGxUHAAAAAAAyAAAA",
                        "data_parsed": {
                          "params": {
                            "actions": [
                              {
                                "fields": [
                                  {
                                    "id": [
                                      202,
                                      201,
                                      16,
                                      111,
                                      106,
                                      91,
                                      193,
                                      23,
                                      210,
                                      59,
                                      235,
                                      42,
                                      157,
                                      129,
                                      35,
                                      138,
                                      98,
                                      4,
                                      205,
                                      233,
                                      229,
                                      158,
                                      70,
                                      189,
                                      39,
                                      141,
                                      37,
                                      0,
                                      10,
                                      171,
                                      250,
                                      27,
                                      143,
                                      240,
                                      4,
                                      201,
                                      156,
                                      120,
                                      122,
                                      192,
                                      131,
                                      251,
                                      44,
                                      232,
                                      81,
                                      214,
                                      89,
                                      184,
                                      73,
                                      187,
                                      32,
                                      84,
                                      179,
                                      177,
                                      152,
                                      190,
                                      164,
                                      94,
                                      184,
                                      221,
                                      98,
                                      133,
                                      35,
                                      5,
                                      123,
                                      40,
                                      200,
                                      25,
                                      0,
                                      3,
                                      40,
                                      185,
                                      185,
                                      0,
                                      0,
                                      0
                                    ]
                                  }
                                ],
                                "variant": "RecordId"
                              },
                              {
                                "fields": [
                                  {
                                    "minimum_prices": [
                                      {
                                        "input_mint_decimals": 6,
                                        "output_atoms_per_input_token": 0
                                      },
                                      {
                                        "input_mint_decimals": 9,
                                        "output_atoms_per_input_token": 76227664
                                      }
                                    ]
                                  }
                                ],
                                "variant": "SetMinimumLegPrices"
                              },
                              {
                                "variant": "IncludeAccount"
                              },
                              {
                                "fields": [
                                  {
                                    "amount": 9515338301,
                                    "orchestrator_flags": {
                                      "flags": 129
                                    }
                                  }
                                ],
                                "variant": "PumpFunAmmSell"
                              },
                              {
                                "fields": [
                                  {
                                    "amount": 296559,
                                    "orchestrator_flags": {
                                      "flags": 1
                                    }
                                  }
                                ],
                                "variant": "TokenSwap"
                              },
                              {
                                "fields": [
                                  {
                                    "amount": 22788,
                                    "is_rate_limiter_applied": false,
                                    "orchestrator_flags": {
                                      "flags": 1
                                    }
                                  }
                                ],
                                "variant": "MeteoraDbcSwap"
                              }
                            ],
                            "platform_fee_bps": 0,
                            "quoted_out_amount": 464155,
                            "slippage_bps": 50
                          }
                        },
                        "inner_instructions": [
                          {
                            "name": "create",
                            "program_id": "ATokenGPvbdGVxr1b2hvZbsiqW5xWH25efTNsLJA8knL",
                            "program": "AssociatedTokenAccount",
                            "accounts": [
                              {
                                "name": "funding",
                                "address": "E1onLBSnoQMsp9tntCcvMJ6TYEfQniJvumd5dGYQxuky",
                                "writable": true,
                                "signer": true
                              },
                              {
                                "name": "associated_account",
                                "address": "3Zy3QguGdwe3ibsb1sgHXrYhizdbEkawCihVdgjogkN2",
                                "writable": true,
                                "signer": false
                              },
                              {
                                "name": "wallet",
                                "address": "E1onLBSnoQMsp9tntCcvMJ6TYEfQniJvumd5dGYQxuky",
                                "writable": false,
                                "signer": false
                              },
                              {
                                "name": "token_mint",
                                "address": "So11111111111111111111111111111111111111112",
                                "writable": false,
                                "signer": false
                              },
                              {
                                "name": "system",
                                "address": "11111111111111111111111111111111",
                                "writable": false,
                                "signer": false
                              },
                              {
                                "name": "token_program",
                                "address": "TokenkegQfeZyiNwAJbNbGKPFXCWuBvf9Ss623VQ5DA",
                                "writable": false,
                                "signer": false
                              }
                            ],
                            "data": "AA==",
                            "stack_height": 2
                          },
                          {
                            "name": "get_account_data_size",
                            "program_id": "TokenkegQfeZyiNwAJbNbGKPFXCWuBvf9Ss623VQ5DA",
                            "program": "Token",
                            "accounts": [
                              {
                                "name": "mint",
                                "address": "So11111111111111111111111111111111111111112",
                                "writable": false,
                                "signer": false
                              }
                            ],
                            "data": "FQcA",
                            "stack_height": 3
                          },
                          {
                            "name": "create_account",
                            "program_id": "11111111111111111111111111111111",
                            "program": "System",
                            "accounts": [
                              {
                                "name": "from_address",
                                "address": "E1onLBSnoQMsp9tntCcvMJ6TYEfQniJvumd5dGYQxuky",
                                "writable": true,
                                "signer": true
                              },
                              {
                                "name": "to_address",
                                "address": "3Zy3QguGdwe3ibsb1sgHXrYhizdbEkawCihVdgjogkN2",
                                "writable": true,
                                "signer": true
                              }
                            ],
                            "data": "AAAAAPAdHwAAAAAApQAAAAAAAAAG3fbh12Whk9nL4UbO63msHLSF7V9bN5E6jPWFfv8AqQ==",
                            "data_parsed": {
                              "lamports": 2039280,
                              "owner": "TokenkegQfeZyiNwAJbNbGKPFXCWuBvf9Ss623VQ5DA",
                              "space": 165
                            },
                            "stack_height": 3
                          },
                          {
                            "name": "initialize_immutable_owner",
                            "program_id": "TokenkegQfeZyiNwAJbNbGKPFXCWuBvf9Ss623VQ5DA",
                            "program": "Token",
                            "accounts": [
                              {
                                "name": "account",
                                "address": "3Zy3QguGdwe3ibsb1sgHXrYhizdbEkawCihVdgjogkN2",
                                "writable": true,
                                "signer": false
                              }
                            ],
                            "data": "Fg==",
                            "stack_height": 3
                          },
                          {
                            "name": "initialize_account3",
                            "program_id": "TokenkegQfeZyiNwAJbNbGKPFXCWuBvf9Ss623VQ5DA",
                            "program": "Token",
                            "accounts": [
                              {
                                "name": "account",
                                "address": "3Zy3QguGdwe3ibsb1sgHXrYhizdbEkawCihVdgjogkN2",
                                "writable": true,
                                "signer": false
                              },
                              {
                                "name": "mint",
                                "address": "So11111111111111111111111111111111111111112",
                                "writable": false,
                                "signer": false
                              }
                            ],
                            "data": "EsFc03zxTQHvWQjBGVnQqcPRrKQwMfc+WcCih3OE42Ju",
                            "data_parsed": {
                              "owner": "E1onLBSnoQMsp9tntCcvMJ6TYEfQniJvumd5dGYQxuky"
                            },
                            "stack_height": 3
                          },
                          {
                            "name": "sell",
                            "program_id": "pAMMBay6oceH9fJKBRHGP5D4bD4sWpmSwMn52FMfXEA",
                            "program": "pump_amm",
                            "accounts": [
                              {
                                "name": "pool",
                                "address": "6RQTgY3yHCWARVAnPVrCGbWavoo4RRHWWbBs2snawNSw",
                                "writable": true,
                                "signer": false
                              },
                              {
                                "name": "user",
                                "address": "E1onLBSnoQMsp9tntCcvMJ6TYEfQniJvumd5dGYQxuky",
                                "writable": true,
                                "signer": true
                              },
                              {
                                "name": "global_config",
                                "address": "ADyA8hdefvWN2dbGGWFotbzWxrAvLW83WG6QCVXvJKqw",
                                "writable": false,
                                "signer": false
                              },
                              {
                                "name": "base_mint",
                                "address": "C5QG8mi79H9ndfBzmU8Hn9FRCTbpSnU9MtdA69GVpump",
                                "writable": false,
                                "signer": false
                              },
                              {
                                "name": "quote_mint",
                                "address": "So11111111111111111111111111111111111111112",
                                "writable": false,
                                "signer": false
                              },
                              {
                                "name": "user_base_token_account",
                                "address": "2V53KRpaVGWfGWHRaZ6hLoUR8jL82ZGC49RmiKmNCRaS",
                                "writable": true,
                                "signer": false
                              },
                              {
                                "name": "user_quote_token_account",
                                "address": "3Zy3QguGdwe3ibsb1sgHXrYhizdbEkawCihVdgjogkN2",
                                "writable": true,
                                "signer": false
                              },
                              {
                                "name": "pool_base_token_account",
                                "address": "452kHnW1owUXuf3DbqnxL15eNwK4TTWN2b9kcbof4YvT",
                                "writable": true,
                                "signer": false
                              },
                              {
                                "name": "pool_quote_token_account",
                                "address": "5byNGNXxGhjv6Ymukbky2p73H1joEAucMg1aQDeV7Pjj",
                                "writable": true,
                                "signer": false
                              },
                              {
                                "name": "protocol_fee_recipient",
                                "address": "JCRGumoE9Qi5BBgULTgdgTLjSgkCMSbF62ZZfGs84JeU",
                                "writable": false,
                                "signer": false
                              },
                              {
                                "name": "protocol_fee_recipient_token_account",
                                "address": "DWpvfqzGWuVy9jVSKSShdM2733nrEsnnhsUStYbkj6Nn",
                                "writable": true,
                                "signer": false
                              },
                              {
                                "name": "base_token_program",
                                "address": "TokenzQdBNbLqP5VEhdkAS6EPFLC1PHnBqCXEpPxuEb",
                                "writable": false,
                                "signer": false
                              },
                              {
                                "name": "quote_token_program",
                                "address": "TokenkegQfeZyiNwAJbNbGKPFXCWuBvf9Ss623VQ5DA",
                                "writable": false,
                                "signer": false
                              },
                              {
                                "name": "system_program",
                                "address": "11111111111111111111111111111111",
                                "writable": false,
                                "signer": false
                              },
                              {
                                "name": "associated_token_program",
                                "address": "ATokenGPvbdGVxr1b2hvZbsiqW5xWH25efTNsLJA8knL",
                                "writable": false,
                                "signer": false
                              },
                              {
                                "name": "event_authority",
                                "address": "GS4CU59F31iL7aR2Q8zVS8DRrcRnXX1yjQ66TqNVQnaR",
                                "writable": false,
                                "signer": false
                              },
                              {
                                "name": "program",
                                "address": "pAMMBay6oceH9fJKBRHGP5D4bD4sWpmSwMn52FMfXEA",
                                "writable": false,
                                "signer": false
                              },
                              {
                                "name": "coin_creator_vault_ata",
                                "address": "AnpiBsThFWgK78KzX41cztvupt2CWVF3d5sA45m85Lab",
                                "writable": true,
                                "signer": false
                              },
                              {
                                "name": "coin_creator_vault_authority",
                                "address": "GARuZ29MyE2b84z4aLTGRc196bC7wBoKZKoiGehFrYjZ",
                                "writable": false,
                                "signer": false
                              },
                              {
                                "name": "fee_config",
                                "address": "5PHirr8joyTMp9JMm6nW7hNDVyEYdkzDqazxPD7RaTjx",
                                "writable": false,
                                "signer": false
                              },
                              {
                                "name": "fee_program",
                                "address": "pfeeUxB6jkeY1Hxd7CsFCAjcbHA9rWtchMGdZ6VojVZ",
                                "writable": false,
                                "signer": false
                              },
                              {
                                "address": "FpMyHdv6kDZWL3ABovoYrevG7rS5ptuQ1zpZNeEyAmK9"
                              },
                              {
                                "address": "A97Fu2nQCryJuTA2DgxzL9wJ4nT3YZf8XfXRHCj9ZXLA"
                              },
                              {
                                "address": "HTXVP3BP6m6mFvG7FjYfcj4xjPWQmXREVJy7DvAMYfWH"
                              },
                              {
                                "address": "9M4giFFMxmFGXtc3feFzRai56WbBqehoSeRE5GK7gf7"
                              },
                              {
                                "address": "GAFuhgcd328SkkBYHpfadzmef9hTGAFRCi9QoCnsZQug"
                              }
                            ],
                            "data": "M+aFpAF/g609iig3AgAAAAAAAAAAAAAA",
                            "data_parsed": {
                              "base_amount_in": 9515338301,
                              "min_quote_amount_out": 0
                            },
                            "stack_height": 2
                          },
                          {
                            "name": "get_fees",
                            "program_id": "pfeeUxB6jkeY1Hxd7CsFCAjcbHA9rWtchMGdZ6VojVZ",
                            "program": "pump_fees",
                            "accounts": [
                              {
                                "name": "fee_config",
                                "address": "5PHirr8joyTMp9JMm6nW7hNDVyEYdkzDqazxPD7RaTjx",
                                "writable": false,
                                "signer": false
                              },
                              {
                                "name": "config_program_id",
                                "address": "pAMMBay6oceH9fJKBRHGP5D4bD4sWpmSwMn52FMfXEA",
                                "writable": false,
                                "signer": false
                              }
                            ],
                            "data": "5yV+Vc9bPzQB62vgUgcAAAAAAAAAAAAAAJiRBAAAAAAAAA==",
                            "data_parsed": {
                              "is_new_quote_mint": [
                                false
                              ],
                              "is_pump_pool": true,
                              "market_cap_lamports": 31455210475,
                              "trade_size_lamports": 299416
                            },
                            "stack_height": 3
                          },
                          {
                            "name": "transfer_checked",
                            "program_id": "TokenzQdBNbLqP5VEhdkAS6EPFLC1PHnBqCXEpPxuEb",
                            "program": "Token2022",
                            "accounts": [
                              {
                                "name": "source",
                                "address": "2V53KRpaVGWfGWHRaZ6hLoUR8jL82ZGC49RmiKmNCRaS",
                                "writable": true,
                                "signer": false
                              },
                              {
                                "name": "mint",
                                "address": "C5QG8mi79H9ndfBzmU8Hn9FRCTbpSnU9MtdA69GVpump",
                                "writable": false,
                                "signer": false
                              },
                              {
                                "name": "destination",
                                "address": "452kHnW1owUXuf3DbqnxL15eNwK4TTWN2b9kcbof4YvT",
                                "writable": true,
                                "signer": false
                              },
                              {
                                "name": "authority",
                                "address": "E1onLBSnoQMsp9tntCcvMJ6TYEfQniJvumd5dGYQxuky",
                                "writable": false,
                                "signer": true
                              }
                            ],
                            "data": "DD2KKDcCAAAABg==",
                            "data_parsed": {
                              "amount": 9515338301,
                              "decimals": 6
                            },
                            "stack_height": 3
                          },
                          {
                            "name": "transfer_checked",
                            "program_id": "TokenkegQfeZyiNwAJbNbGKPFXCWuBvf9Ss623VQ5DA",
                            "program": "Token",
                            "accounts": [
                              {
                                "name": "source",
                                "address": "5byNGNXxGhjv6Ymukbky2p73H1joEAucMg1aQDeV7Pjj",
                                "writable": true,
                                "signer": false
                              },
                              {
                                "name": "mint",
                                "address": "So11111111111111111111111111111111111111112",
                                "writable": false,
                                "signer": false
                              },
                              {
                                "name": "destination",
                                "address": "3Zy3QguGdwe3ibsb1sgHXrYhizdbEkawCihVdgjogkN2",
                                "writable": true,
                                "signer": false
                              },
                              {
                                "name": "authority",
                                "address": "6RQTgY3yHCWARVAnPVrCGbWavoo4RRHWWbBs2snawNSw",
                                "writable": false,
                                "signer": true
                              }
                            ],
                            "data": "DPiCBAAAAAAACQ==",
                            "data_parsed": {
                              "amount": 295672,
                              "decimals": 9
                            },
                            "stack_height": 3
                          },
                          {
                            "name": "transfer_checked",
                            "program_id": "TokenkegQfeZyiNwAJbNbGKPFXCWuBvf9Ss623VQ5DA",
                            "program": "Token",
                            "accounts": [
                              {
                                "name": "source",
                                "address": "5byNGNXxGhjv6Ymukbky2p73H1joEAucMg1aQDeV7Pjj",
                                "writable": true,
                                "signer": false
                              },
                              {
                                "name": "mint",
                                "address": "So11111111111111111111111111111111111111112",
                                "writable": false,
                                "signer": false
                              },
                              {
                                "name": "destination",
                                "address": "DWpvfqzGWuVy9jVSKSShdM2733nrEsnnhsUStYbkj6Nn",
                                "writable": true,
                                "signer": false
                              },
                              {
                                "name": "authority",
                                "address": "6RQTgY3yHCWARVAnPVrCGbWavoo4RRHWWbBs2snawNSw",
                                "writable": false,
                                "signer": true
                              }
                            ],
                            "data": "DHEFAAAAAAAACQ==",
                            "data_parsed": {
                              "amount": 1393,
                              "decimals": 9
                            },
                            "stack_height": 3
                          },
                          {
                            "name": "transfer_checked",
                            "program_id": "TokenkegQfeZyiNwAJbNbGKPFXCWuBvf9Ss623VQ5DA",
                            "program": "Token",
                            "accounts": [
                              {
                                "name": "source",
                                "address": "5byNGNXxGhjv6Ymukbky2p73H1joEAucMg1aQDeV7Pjj",
                                "writable": true,
                                "signer": false
                              },
                              {
                                "name": "mint",
                                "address": "So11111111111111111111111111111111111111112",
                                "writable": false,
                                "signer": false
                              },
                              {
                                "name": "destination",
                                "address": "FpMyHdv6kDZWL3ABovoYrevG7rS5ptuQ1zpZNeEyAmK9",
                                "writable": true,
                                "signer": false
                              },
                              {
                                "name": "authority",
                                "address": "6RQTgY3yHCWARVAnPVrCGbWavoo4RRHWWbBs2snawNSw",
                                "writable": false,
                                "signer": true
                              }
                            ],
                            "data": "DIMDAAAAAAAACQ==",
                            "data_parsed": {
                              "amount": 899,
                              "decimals": 9
                            },
                            "stack_height": 3
                          },
                          {
                            "name": "transfer_checked",
                            "program_id": "TokenkegQfeZyiNwAJbNbGKPFXCWuBvf9Ss623VQ5DA",
                            "program": "Token",
                            "accounts": [
                              {
                                "name": "source",
                                "address": "5byNGNXxGhjv6Ymukbky2p73H1joEAucMg1aQDeV7Pjj",
                                "writable": true,
                                "signer": false
                              },
                              {
                                "name": "mint",
                                "address": "So11111111111111111111111111111111111111112",
                                "writable": false,
                                "signer": false
                              },
                              {
                                "name": "destination",
                                "address": "GAFuhgcd328SkkBYHpfadzmef9hTGAFRCi9QoCnsZQug",
                                "writable": true,
                                "signer": false
                              },
                              {
                                "name": "authority",
                                "address": "6RQTgY3yHCWARVAnPVrCGbWavoo4RRHWWbBs2snawNSw",
                                "writable": false,
                                "signer": true
                              }
                            ],
                            "data": "DHAFAAAAAAAACQ==",
                            "data_parsed": {
                              "amount": 1392,
                              "decimals": 9
                            },
                            "stack_height": 3
                          },
                          {
                            "program_id": "pAMMBay6oceH9fJKBRHGP5D4bD4sWpmSwMn52FMfXEA",
                            "program": "pump_amm",
                            "accounts": [
                              {
                                "address": "GS4CU59F31iL7aR2Q8zVS8DRrcRnXX1yjQ66TqNVQnaR"
                              }
                            ],
                            "data": "5EWlLlHLmh0+LzcKpQPcKuJAVGoAAAAAPYooNwIAAAAAAAAAAAAAAD2KKDcCAAAAAAAAAAAAAAD786iy3R8DAGvWgHEGAAAAmJEEAAAAAAACAAAAAAAAADwAAAAAAAAAXQAAAAAAAADhCgAAAAAAAFyRBAAAAAAA+IIEAAAAAABQiuZ/1w1kKvG7Acran/U2a23cKq4nDlRuzWj1p7gTdMFc03zxTQHvWQjBGVnQqcPRrKQwMfc+WcCih3OE42JuFgyEgAhudcr9DfcmUt8yJyqRm56faj7hds7Aqwiyr3smKVN7Ew2xFEoLQ/4qvhRwhbQqQQAeeqnozJ0q2sLwx/+Dg4GLqPoow807bV6T+fq48Jebw3IVrMWyRod7qMPJufBGo6LPTuIStPqS/Z0A+k+ws/z9Nh5ArlOR+WA16mNQTm9XwS4rryHYwbRnDxrstWymnqjLFLZpEGkoe8gjzQAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAIMDAAAAAAAAiBMAAAAAAABwBQAAAAAAAA==",
                            "stack_height": 3,
                            "decode_error": "unknown instruction discriminator: [228, 69, 165, 46, 81, 203, 154, 29]"
                          },
                          {
                            "name": "claim_cashback",
                            "program_id": "pAMMBay6oceH9fJKBRHGP5D4bD4sWpmSwMn52FMfXEA",
                            "program": "pump_amm",
                            "accounts": [
                              {
                                "name": "user",
                                "address": "E1onLBSnoQMsp9tntCcvMJ6TYEfQniJvumd5dGYQxuky",
                                "writable": true,
                                "signer": false
                              },
                              {
                                "name": "user_volume_accumulator",
                                "address": "A97Fu2nQCryJuTA2DgxzL9wJ4nT3YZf8XfXRHCj9ZXLA",
                                "writable": true,
                                "signer": false
                              },
                              {
                                "name": "quote_mint",
                                "address": "So11111111111111111111111111111111111111112",
                                "writable": false,
                                "signer": false
                              },
                              {
                                "name": "quote_token_program",
                                "address": "TokenkegQfeZyiNwAJbNbGKPFXCWuBvf9Ss623VQ5DA",
                                "writable": false,
                                "signer": false
                              },
                              {
                                "name": "user_volume_accumulator_wsol_token_account",
                                "address": "FpMyHdv6kDZWL3ABovoYrevG7rS5ptuQ1zpZNeEyAmK9",
                                "writable": true,
                                "signer": false
                              },
                              {
                                "name": "user_wsol_token_account",
                                "address": "3Zy3QguGdwe3ibsb1sgHXrYhizdbEkawCihVdgjogkN2",
                                "writable": true,
                                "signer": false
                              },
                              {
                                "name": "system_program",
                                "address": "11111111111111111111111111111111",
                                "writable": false,
                                "signer": false
                              },
                              {
                                "name": "event_authority",
                                "address": "GS4CU59F31iL7aR2Q8zVS8DRrcRnXX1yjQ66TqNVQnaR",
                                "writable": false,
                                "signer": false
                              },
                              {
                                "name": "program",
                                "address": "pAMMBay6oceH9fJKBRHGP5D4bD4sWpmSwMn52FMfXEA",
                                "writable": false,
                                "signer": false
                              }
                            ],
                            "data": "JTojfr415MU=",
                            "data_parsed": {},
                            "stack_height": 2
                          },
                          {
                            "name": "transfer_checked",
                            "program_id": "TokenkegQfeZyiNwAJbNbGKPFXCWuBvf9Ss623VQ5DA",
                            "program": "Token",
                            "accounts": [
                              {
                                "name": "source",
                                "address": "FpMyHdv6kDZWL3ABovoYrevG7rS5ptuQ1zpZNeEyAmK9",
                                "writable": true,
                                "signer": false
                              },
                              {
                                "name": "mint",
                                "address": "So11111111111111111111111111111111111111112",
                                "writable": false,
                                "signer": false
                              },
                              {
                                "name": "destination",
                                "address": "3Zy3QguGdwe3ibsb1sgHXrYhizdbEkawCihVdgjogkN2",
                                "writable": true,
                                "signer": false
                              },
                              {
                                "name": "authority",
                                "address": "A97Fu2nQCryJuTA2DgxzL9wJ4nT3YZf8XfXRHCj9ZXLA",
                                "writable": false,
                                "signer": true
                              }
                            ],
                            "data": "DOmmAQAAAAAACQ==",
                            "data_parsed": {
                              "amount": 108265,
                              "decimals": 9
                            },
                            "stack_height": 3
                          },
                          {
                            "program_id": "pAMMBay6oceH9fJKBRHGP5D4bD4sWpmSwMn52FMfXEA",
                            "program": "pump_amm",
                            "accounts": [
                              {
                                "address": "GS4CU59F31iL7aR2Q8zVS8DRrcRnXX1yjQ66TqNVQnaR"
                              }
                            ],
                            "data": "5EWlLlHLmh3i1vYhB/KT5cFc03zxTQHvWQjBGVnQqcPRrKQwMfc+WcCih3OE42Ju6aYBAAAAAADiQFRqAAAAAOmmAQAAAAAA6aYBAAAAAAA=",
                            "stack_height": 3,
                            "decode_error": "unknown instruction discriminator: [228, 69, 165, 46, 81, 203, 154, 29]"
                          },
                          {
                            "name": "transfer",
                            "program_id": "TokenkegQfeZyiNwAJbNbGKPFXCWuBvf9Ss623VQ5DA",
                            "program": "Token",
                            "accounts": [
                              {
                                "name": "source",
                                "address": "3Zy3QguGdwe3ibsb1sgHXrYhizdbEkawCihVdgjogkN2",
                                "writable": true,
                                "signer": false
                              },
                              {
                                "name": "destination",
                                "address": "FpMyHdv6kDZWL3ABovoYrevG7rS5ptuQ1zpZNeEyAmK9",
                                "writable": true,
                                "signer": false
                              },
                              {
                                "name": "authority",
                                "address": "E1onLBSnoQMsp9tntCcvMJ6TYEfQniJvumd5dGYQxuky",
                                "writable": false,
                                "signer": true
                              }
                            ],
                            "data": "A2ajAQAAAAAA",
                            "data_parsed": {
                              "amount": 107366
                            },
                            "stack_height": 2
                          },
                          {
                            "program_id": "DF1ow4tspfHX9JwWJsAb9epbkA8hmpSEAtxXy1V27QBH",
                            "program": "swap_orchestrator",
                            "accounts": [
                              {
                                "address": "8xeaWCsJYxRoudEZGJWURdfrtFhLYZz9b4iHJnW5tb3d"
                              }
                            ],
                            "data": "5EWlLlHLmh1Axs3oJghx4gwU3vyCXsZ2lCUIGLtlQGX0KY0xVtVxtNT4CQwY6ahjpJEuPrVkgQE+lM15Qj13oFb1BHwNz+P+Lp6Q6yES+G89iig3AgAAAAabiFf+q4GE+2h/Y0YYwDXaxDncGus7VZig8AAAAAABe4YEAAAAAAA=",
                            "stack_height": 2,
                            "decode_error": "unknown instruction discriminator: [228, 69, 165, 46, 81, 203, 154, 29]"
                          },
                          {
                            "program_id": "SSwapUtytfBdBn1b9NUGG6foMVPtcWgpRU32HToDUZr",
                            "accounts": [
                              {
                                "address": "Djxfn7zWFxFqYgwesXfq8BeAirfXwfhQmNcCousXh7G7"
                              },
                              {
                                "address": "7R3ZCZHf4y9E8oy41YJoYFSxVmQfUtcDBNFFgBRUh6zw"
                              },
                              {
                                "address": "E1onLBSnoQMsp9tntCcvMJ6TYEfQniJvumd5dGYQxuky"
                              },
                              {
                                "address": "3Zy3QguGdwe3ibsb1sgHXrYhizdbEkawCihVdgjogkN2"
                              },
                              {
                                "address": "MXRyxFjF3mqGgEGdoQ6LwAUKVjdp2TgjNCcvugpJQ6w"
                              },
                              {
                                "address": "GsVQjvW7KzEqe8thTSXDLQVoiDxAvCpMPYbBaeSZQfK6"
                              },
                              {
                                "address": "cqhdYZqwH9t1EXRTN4qEF4fPPnwNMk78eV3x5kZUb2M"
                              },
                              {
                                "address": "5kvBykCa3dTU2HVpikGuZ5gsuqrf7L1ywrdMBozh8Hj8"
                              },
                              {
                                "address": "CAtPGrHP2CbY8AXBBUYduxiWNhHnVDHoozNjnnzBF7M5"
                              },
                              {
                                "address": "TokenkegQfeZyiNwAJbNbGKPFXCWuBvf9Ss623VQ5DA"
                              }
                            ],
                            "data": "AXuGBAAAAAAAAAAAAAAAAAA=",
                            "stack_height": 2
                          },
                          {
                            "name": "transfer",
                            "program_id": "TokenkegQfeZyiNwAJbNbGKPFXCWuBvf9Ss623VQ5DA",
                            "program": "Token",
                            "accounts": [
                              {
                                "name": "source",
                                "address": "3Zy3QguGdwe3ibsb1sgHXrYhizdbEkawCihVdgjogkN2",
                                "writable": true,
                                "signer": false
                              },
                              {
                                "name": "destination",
                                "address": "MXRyxFjF3mqGgEGdoQ6LwAUKVjdp2TgjNCcvugpJQ6w",
                                "writable": true,
                                "signer": false
                              },
                              {
                                "name": "authority",
                                "address": "E1onLBSnoQMsp9tntCcvMJ6TYEfQniJvumd5dGYQxuky",
                                "writable": false,
                                "signer": true
                              }
                            ],
                            "data": "A2+GBAAAAAAA",
                            "data_parsed": {
                              "amount": 296559
                            },
                            "stack_height": 3
                          },
                          {
                            "name": "mint_to",
                            "program_id": "TokenkegQfeZyiNwAJbNbGKPFXCWuBvf9Ss623VQ5DA",
                            "program": "Token",
                            "accounts": [
                              {
                                "name": "mint",
                                "address": "5kvBykCa3dTU2HVpikGuZ5gsuqrf7L1ywrdMBozh8Hj8",
                                "writable": true,
                                "signer": false
                              },
                              {
                                "name": "account",
                                "address": "CAtPGrHP2CbY8AXBBUYduxiWNhHnVDHoozNjnnzBF7M5",
                                "writable": true,
                                "signer": false
                              },
                              {
                                "name": "owner",
                                "address": "7R3ZCZHf4y9E8oy41YJoYFSxVmQfUtcDBNFFgBRUh6zw",
                                "writable": false,
                                "signer": true
                              }
                            ],
                            "data": "B8QPAAAAAAAA",
                            "data_parsed": {
                              "amount": 4036
                            },
                            "stack_height": 3
                          },
                          {
                            "name": "transfer",
                            "program_id": "TokenkegQfeZyiNwAJbNbGKPFXCWuBvf9Ss623VQ5DA",
                            "program": "Token",
                            "accounts": [
                              {
                                "name": "source",
                                "address": "GsVQjvW7KzEqe8thTSXDLQVoiDxAvCpMPYbBaeSZQfK6",
                                "writable": true,
                                "signer": false
                              },
                              {
                                "name": "destination",
                                "address": "cqhdYZqwH9t1EXRTN4qEF4fPPnwNMk78eV3x5kZUb2M",
                                "writable": true,
                                "signer": false
                              },
                              {
                                "name": "authority",
                                "address": "7R3ZCZHf4y9E8oy41YJoYFSxVmQfUtcDBNFFgBRUh6zw",
                                "writable": false,
                                "signer": true
                              }
                            ],
                            "data": "AwRZAAAAAAAA",
                            "data_parsed": {
                              "amount": 22788
                            },
                            "stack_height": 3
                          },
                          {
                            "program_id": "DF1ow4tspfHX9JwWJsAb9epbkA8hmpSEAtxXy1V27QBH",
                            "program": "swap_orchestrator",
                            "accounts": [
                              {
                                "address": "8xeaWCsJYxRoudEZGJWURdfrtFhLYZz9b4iHJnW5tb3d"
                              }
                            ],
                            "data": "5EWlLlHLmh1Axs3oJghx4gaE2hamicLDiWqEEXFb6UMu7BynGhziCHKGxnZ3z2W9BpuIV/6rgYT7aH9jRhjANdrEOdwa6ztVmKDwAAAAAAFvhgQAAAAAAMb6evO+2606PWXzaqvJdDGxu+TC0vbg5HymAgNFL11hBFkAAAAAAAA=",
                            "stack_height": 2,
                            "decode_error": "unknown instruction discriminator: [228, 69, 165, 46, 81, 203, 154, 29]"
                          },
                          {
                            "name": "close_account",
                            "program_id": "TokenkegQfeZyiNwAJbNbGKPFXCWuBvf9Ss623VQ5DA",
                            "program": "Token",
                            "accounts": [
                              {
                                "name": "account",
                                "address": "3Zy3QguGdwe3ibsb1sgHXrYhizdbEkawCihVdgjogkN2",
                                "writable": true,
                                "signer": false
                              },
                              {
                                "name": "destination",
                                "address": "E1onLBSnoQMsp9tntCcvMJ6TYEfQniJvumd5dGYQxuky",
                                "writable": true,
                                "signer": false
                              },
                              {
                                "name": "owner",
                                "address": "E1onLBSnoQMsp9tntCcvMJ6TYEfQniJvumd5dGYQxuky",
                                "writable": false,
                                "signer": true
                              }
                            ],
                            "data": "CQ==",
                            "stack_height": 2
                          },
                          {
                            "name": "create",
                            "program_id": "ATokenGPvbdGVxr1b2hvZbsiqW5xWH25efTNsLJA8knL",
                            "program": "AssociatedTokenAccount",
                            "accounts": [
                              {
                                "name": "funding",
                                "address": "E1onLBSnoQMsp9tntCcvMJ6TYEfQniJvumd5dGYQxuky",
                                "writable": true,
                                "signer": true
                              },
                              {
                                "name": "associated_account",
                                "address": "22ZMtRbmWcrS1caUfXRQeHqx4TTpWw1vbLm3kS1jJB7g",
                                "writable": true,
                                "signer": false
                              },
                              {
                                "name": "wallet",
                                "address": "E1onLBSnoQMsp9tntCcvMJ6TYEfQniJvumd5dGYQxuky",
                                "writable": false,
                                "signer": false
                              },
                              {
                                "name": "token_mint",
                                "address": "4vSbQ5LYFQahHwzeCweRANVXjAwzDGMQvuvqwts4GEX2",
                                "writable": false,
                                "signer": false
                              },
                              {
                                "name": "system",
                                "address": "11111111111111111111111111111111",
                                "writable": false,
                                "signer": false
                              },
                              {
                                "name": "token_program",
                                "address": "TokenkegQfeZyiNwAJbNbGKPFXCWuBvf9Ss623VQ5DA",
                                "writable": false,
                                "signer": false
                              }
                            ],
                            "data": "AA==",
                            "stack_height": 2
                          },
                          {
                            "name": "get_account_data_size",
                            "program_id": "TokenkegQfeZyiNwAJbNbGKPFXCWuBvf9Ss623VQ5DA",
                            "program": "Token",
                            "accounts": [
                              {
                                "name": "mint",
                                "address": "4vSbQ5LYFQahHwzeCweRANVXjAwzDGMQvuvqwts4GEX2",
                                "writable": false,
                                "signer": false
                              }
                            ],
                            "data": "FQcA",
                            "stack_height": 3
                          },
                          {
                            "name": "create_account",
                            "program_id": "11111111111111111111111111111111",
                            "program": "System",
                            "accounts": [
                              {
                                "name": "from_address",
                                "address": "E1onLBSnoQMsp9tntCcvMJ6TYEfQniJvumd5dGYQxuky",
                                "writable": true,
                                "signer": true
                              },
                              {
                                "name": "to_address",
                                "address": "22ZMtRbmWcrS1caUfXRQeHqx4TTpWw1vbLm3kS1jJB7g",
                                "writable": true,
                                "signer": true
                              }
                            ],
                            "data": "AAAAAPAdHwAAAAAApQAAAAAAAAAG3fbh12Whk9nL4UbO63msHLSF7V9bN5E6jPWFfv8AqQ==",
                            "data_parsed": {
                              "lamports": 2039280,
                              "owner": "TokenkegQfeZyiNwAJbNbGKPFXCWuBvf9Ss623VQ5DA",
                              "space": 165
                            },
                            "stack_height": 3
                          },
                          {
                            "name": "initialize_immutable_owner",
                            "program_id": "TokenkegQfeZyiNwAJbNbGKPFXCWuBvf9Ss623VQ5DA",
                            "program": "Token",
                            "accounts": [
                              {
                                "name": "account",
                                "address": "22ZMtRbmWcrS1caUfXRQeHqx4TTpWw1vbLm3kS1jJB7g",
                                "writable": true,
                                "signer": false
                              }
                            ],
                            "data": "Fg==",
                            "stack_height": 3
                          },
                          {
                            "name": "initialize_account3",
                            "program_id": "TokenkegQfeZyiNwAJbNbGKPFXCWuBvf9Ss623VQ5DA",
                            "program": "Token",
                            "accounts": [
                              {
                                "name": "account",
                                "address": "22ZMtRbmWcrS1caUfXRQeHqx4TTpWw1vbLm3kS1jJB7g",
                                "writable": true,
                                "signer": false
                              },
                              {
                                "name": "mint",
                                "address": "4vSbQ5LYFQahHwzeCweRANVXjAwzDGMQvuvqwts4GEX2",
                                "writable": false,
                                "signer": false
                              }
                            ],
                            "data": "EsFc03zxTQHvWQjBGVnQqcPRrKQwMfc+WcCih3OE42Ju",
                            "data_parsed": {
                              "owner": "E1onLBSnoQMsp9tntCcvMJ6TYEfQniJvumd5dGYQxuky"
                            },
                            "stack_height": 3
                          },
                          {
                            "name": "swap",
                            "program_id": "dbcij3LWUppWqq96dh6gJWwBifmcGfLSB5D4DuSMaqN",
                            "program": "dynamic_bonding_curve",
                            "accounts": [
                              {
                                "name": "pool_authority",
                                "address": "FhVo3mqL8PW5pH5U2CN4XE33DokiyZnUwuGpH2hmHLuM",
                                "writable": false,
                                "signer": false
                              },
                              {
                                "name": "config",
                                "address": "E7b1VeWWnMWLLdcVYgwxnDdmBDknKDAXJC5yNdoeRLDz",
                                "writable": false,
                                "signer": false
                              },
                              {
                                "name": "pool",
                                "address": "BsnXWR2bsoaFDm2JoArdT56WkeMT8ovMtAmjoZ1zGDJD",
                                "writable": true,
                                "signer": false
                              },
                              {
                                "name": "input_token_account",
                                "address": "cqhdYZqwH9t1EXRTN4qEF4fPPnwNMk78eV3x5kZUb2M",
                                "writable": true,
                                "signer": false
                              },
                              {
                                "name": "output_token_account",
                                "address": "22ZMtRbmWcrS1caUfXRQeHqx4TTpWw1vbLm3kS1jJB7g",
                                "writable": true,
                                "signer": false
                              },
                              {
                                "name": "base_vault",
                                "address": "GLiLYXNjQVVcdTMjX28jkrs4RdtPmwue9zjz7GP2i8hm",
                                "writable": true,
                                "signer": false
                              },
                              {
                                "name": "quote_vault",
                                "address": "972ivFHdp1ZZ1Gq5JjW85R7eZJ1hiy9VuBn1CbRPjchR",
                                "writable": true,
                                "signer": false
                              },
                              {
                                "name": "base_mint",
                                "address": "4vSbQ5LYFQahHwzeCweRANVXjAwzDGMQvuvqwts4GEX2",
                                "writable": false,
                                "signer": false
                              },
                              {
                                "name": "quote_mint",
                                "address": "EPjFWdd5AufqSSqeM2qN1xzybapC8G4wEGGkZwyTDt1v",
                                "writable": false,
                                "signer": false
                              },
                              {
                                "name": "payer",
                                "address": "E1onLBSnoQMsp9tntCcvMJ6TYEfQniJvumd5dGYQxuky",
                                "writable": false,
                                "signer": true
                              },
                              {
                                "name": "token_base_program",
                                "address": "TokenkegQfeZyiNwAJbNbGKPFXCWuBvf9Ss623VQ5DA",
                                "writable": false,
                                "signer": false
                              },
                              {
                                "name": "token_quote_program",
                                "address": "TokenkegQfeZyiNwAJbNbGKPFXCWuBvf9Ss623VQ5DA",
                                "writable": false,
                                "signer": false
                              },
                              {
                                "name": "referral_token_account",
                                "address": "dbcij3LWUppWqq96dh6gJWwBifmcGfLSB5D4DuSMaqN",
                                "writable": true,
                                "signer": false
                              },
                              {
                                "name": "event_authority",
                                "address": "8Ks12pbrD6PXxfty1hVQiE9sc289zgU1zHkvXhrSdriF",
                                "writable": false,
                                "signer": false
                              },
                              {
                                "name": "program",
                                "address": "dbcij3LWUppWqq96dh6gJWwBifmcGfLSB5D4DuSMaqN",
                                "writable": false,
                                "signer": false
                              }
                            ],
                            "data": "+MaekeF1h8gEWQAAAAAAAAAAAAAAAAAA",
                            "data_parsed": {
                              "params": {
                                "amount_in": 22788,
                                "minimum_amount_out": 0
                              }
                            },
                            "stack_height": 2
                          },
                          {
                            "name": "transfer_checked",
                            "program_id": "TokenkegQfeZyiNwAJbNbGKPFXCWuBvf9Ss623VQ5DA",
                            "program": "Token",
                            "accounts": [
                              {
                                "name": "source",
                                "address": "cqhdYZqwH9t1EXRTN4qEF4fPPnwNMk78eV3x5kZUb2M",
                                "writable": true,
                                "signer": false
                              },
                              {
                                "name": "mint",
                                "address": "EPjFWdd5AufqSSqeM2qN1xzybapC8G4wEGGkZwyTDt1v",
                                "writable": false,
                                "signer": false
                              },
                              {
                                "name": "destination",
                                "address": "972ivFHdp1ZZ1Gq5JjW85R7eZJ1hiy9VuBn1CbRPjchR",
                                "writable": true,
                                "signer": false
                              },
                              {
                                "name": "authority",
                                "address": "E1onLBSnoQMsp9tntCcvMJ6TYEfQniJvumd5dGYQxuky",
                                "writable": false,
                                "signer": true
                              }
                            ],
                            "data": "DARZAAAAAAAABg==",
                            "data_parsed": {
                              "amount": 22788,
                              "decimals": 6
                            },
                            "stack_height": 3
                          },
                          {
                            "name": "transfer_checked",
                            "program_id": "TokenkegQfeZyiNwAJbNbGKPFXCWuBvf9Ss623VQ5DA",
                            "program": "Token",
                            "accounts": [
                              {
                                "name": "source",
                                "address": "GLiLYXNjQVVcdTMjX28jkrs4RdtPmwue9zjz7GP2i8hm",
                                "writable": true,
                                "signer": false
                              },
                              {
                                "name": "mint",
                                "address": "4vSbQ5LYFQahHwzeCweRANVXjAwzDGMQvuvqwts4GEX2",
                                "writable": false,
                                "signer": false
                              },
                              {
                                "name": "destination",
                                "address": "22ZMtRbmWcrS1caUfXRQeHqx4TTpWw1vbLm3kS1jJB7g",
                                "writable": true,
                                "signer": false
                              },
                              {
                                "name": "authority",
                                "address": "FhVo3mqL8PW5pH5U2CN4XE33DokiyZnUwuGpH2hmHLuM",
                                "writable": false,
                                "signer": true
                              }
                            ],
                            "data": "DBsVBwAAAAAABg==",
                            "data_parsed": {
                              "amount": 464155,
                              "decimals": 6
                            },
                            "stack_height": 3
                          },
                          {
                            "program_id": "dbcij3LWUppWqq96dh6gJWwBifmcGfLSB5D4DuSMaqN",
                            "program": "dynamic_bonding_curve",
                            "accounts": [
                              {
                                "address": "8Ks12pbrD6PXxfty1hVQiE9sc289zgU1zHkvXhrSdriF"
                              }
                            ],
                            "data": "5EWlLlHLmh0bPBXViqq7k6GXYthLBGfC6VJceUfi2kvsc1xOyvNYEwCXIeFmQrt+wtfeUqCC7qJ0dKrA7P02u6WGcW42ZvQM2KQCMZlox+0BAARZAAAAAAAAAAAAAAAAAADLWAAAAAAAABsVBwAAAAAAa+EP8579pjgAAAAAAAAAAC4AAAAAAAAACwAAAAAAAAAAAAAAAAAAAARZAAAAAAAA4kBUagAAAAA=",
                            "stack_height": 3,
                            "decode_error": "unknown instruction discriminator: [228, 69, 165, 46, 81, 203, 154, 29]"
                          },
                          {
                            "program_id": "dbcij3LWUppWqq96dh6gJWwBifmcGfLSB5D4DuSMaqN",
                            "program": "dynamic_bonding_curve",
                            "accounts": [
                              {
                                "address": "8Ks12pbrD6PXxfty1hVQiE9sc289zgU1zHkvXhrSdriF"
                              }
                            ],
                            "data": "5EWlLlHLmh29QjOoJlB1maGXYthLBGfC6VJceUfi2kvsc1xOyvNYEwCXIeFmQrt+wtfeUqCC7qJ0dKrA7P02u6WGcW42ZvQM2KQCMZlox+0BAARZAAAAAAAAAAAAAAAAAAAABFkAAAAAAADLWAAAAAAAAAAAAAAAAAAAGxUHAAAAAABr4Q/znv2mOAAAAAAAAAAALgAAAAAAAAALAAAAAAAAAAAAAAAAAAAAMFlejQQAAABOhHajKwAAAOJAVGoAAAAA",
                            "stack_height": 3,
                            "decode_error": "unknown instruction discriminator: [228, 69, 165, 46, 81, 203, 154, 29]"
                          },
                          {
                            "program_id": "DF1ow4tspfHX9JwWJsAb9epbkA8hmpSEAtxXy1V27QBH",
                            "program": "swap_orchestrator",
                            "accounts": [
                              {
                                "address": "8xeaWCsJYxRoudEZGJWURdfrtFhLYZz9b4iHJnW5tb3d"
                              }
                            ],
                            "data": "5EWlLlHLmh1Axs3oJghx4glgDKUk97G31syxw5c6oDMNGQPaYBzJtd7jxmK0ytFJxvp6877brTo9ZfNqq8l0MbG75MLS9uDkfKYCA0UvXWEEWQAAAAAAADpDyCYo2dp/bFdmqoXUg4V3v5t9rLu7bWUJsZmRsSopGxUHAAAAAAA=",
                            "stack_height": 2,
                            "decode_error": "unknown instruction discriminator: [228, 69, 165, 46, 81, 203, 154, 29]"
                          }
                        ]
                      },
                      {
                        "program_id": "ATokenGPvbdGVxr1b2hvZbsiqW5xWH25efTNsLJA8knL",
                        "program": "AssociatedTokenAccount",
                        "accounts": [
                          {
                            "address": "E1onLBSnoQMsp9tntCcvMJ6TYEfQniJvumd5dGYQxuky"
                          },
                          {
                            "address": "AufkKeddmSVSkMidBdY7Lto69xPWvGARFVopwGL3ifJx"
                          },
                          {
                            "address": "HbBHuvgWoChfztoqz2izLRF5mSoLKQXfU68kueBmhcmL"
                          },
                          {
                            "address": "4vSbQ5LYFQahHwzeCweRANVXjAwzDGMQvuvqwts4GEX2"
                          },
                          {
                            "address": "11111111111111111111111111111111"
                          },
                          {
                            "address": "TokenkegQfeZyiNwAJbNbGKPFXCWuBvf9Ss623VQ5DA"
                          }
                        ],
                        "data": "",
                        "inner_instructions": [
                          {
                            "name": "get_account_data_size",
                            "program_id": "TokenkegQfeZyiNwAJbNbGKPFXCWuBvf9Ss623VQ5DA",
                            "program": "Token",
                            "accounts": [
                              {
                                "name": "mint",
                                "address": "4vSbQ5LYFQahHwzeCweRANVXjAwzDGMQvuvqwts4GEX2",
                                "writable": false,
                                "signer": false
                              }
                            ],
                            "data": "FQcA",
                            "stack_height": 2
                          },
                          {
                            "name": "create_account",
                            "program_id": "11111111111111111111111111111111",
                            "program": "System",
                            "accounts": [
                              {
                                "name": "from_address",
                                "address": "E1onLBSnoQMsp9tntCcvMJ6TYEfQniJvumd5dGYQxuky",
                                "writable": true,
                                "signer": true
                              },
                              {
                                "name": "to_address",
                                "address": "AufkKeddmSVSkMidBdY7Lto69xPWvGARFVopwGL3ifJx",
                                "writable": true,
                                "signer": true
                              }
                            ],
                            "data": "AAAAAPAdHwAAAAAApQAAAAAAAAAG3fbh12Whk9nL4UbO63msHLSF7V9bN5E6jPWFfv8AqQ==",
                            "data_parsed": {
                              "lamports": 2039280,
                              "owner": "TokenkegQfeZyiNwAJbNbGKPFXCWuBvf9Ss623VQ5DA",
                              "space": 165
                            },
                            "stack_height": 2
                          },
                          {
                            "name": "initialize_immutable_owner",
                            "program_id": "TokenkegQfeZyiNwAJbNbGKPFXCWuBvf9Ss623VQ5DA",
                            "program": "Token",
                            "accounts": [
                              {
                                "name": "account",
                                "address": "AufkKeddmSVSkMidBdY7Lto69xPWvGARFVopwGL3ifJx",
                                "writable": true,
                                "signer": false
                              }
                            ],
                            "data": "Fg==",
                            "stack_height": 2
                          },
                          {
                            "name": "initialize_account3",
                            "program_id": "TokenkegQfeZyiNwAJbNbGKPFXCWuBvf9Ss623VQ5DA",
                            "program": "Token",
                            "accounts": [
                              {
                                "name": "account",
                                "address": "AufkKeddmSVSkMidBdY7Lto69xPWvGARFVopwGL3ifJx",
                                "writable": true,
                                "signer": false
                              },
                              {
                                "name": "mint",
                                "address": "4vSbQ5LYFQahHwzeCweRANVXjAwzDGMQvuvqwts4GEX2",
                                "writable": false,
                                "signer": false
                              }
                            ],
                            "data": "EvZ8YATVKgIBJd8hNW9cxjzu94nfZNYqk2NPVV6knZl3",
                            "data_parsed": {
                              "owner": "HbBHuvgWoChfztoqz2izLRF5mSoLKQXfU68kueBmhcmL"
                            },
                            "stack_height": 2
                          }
                        ],
                        "decode_error": "Unexpected length of input"
                      },
                      {
                        "name": "transfer",
                        "program_id": "TokenkegQfeZyiNwAJbNbGKPFXCWuBvf9Ss623VQ5DA",
                        "program": "Token",
                        "accounts": [
                          {
                            "name": "source",
                            "address": "22ZMtRbmWcrS1caUfXRQeHqx4TTpWw1vbLm3kS1jJB7g",
                            "writable": true,
                            "signer": false
                          },
                          {
                            "name": "destination",
                            "address": "AufkKeddmSVSkMidBdY7Lto69xPWvGARFVopwGL3ifJx",
                            "writable": true,
                            "signer": false
                          },
                          {
                            "name": "authority",
                            "address": "E1onLBSnoQMsp9tntCcvMJ6TYEfQniJvumd5dGYQxuky",
                            "writable": false,
                            "signer": true
                          }
                        ],
                        "data": "A90PAAAAAAAA",
                        "data_parsed": {
                          "amount": 4061
                        }
                      }
                    ],
                    "log_messages": [
                      "Program ComputeBudget111111111111111111111111111111 invoke [1]",
                      "Program ComputeBudget111111111111111111111111111111 success",
                      "Program ComputeBudget111111111111111111111111111111 invoke [1]",
                      "Program ComputeBudget111111111111111111111111111111 success",
                      "Program 3i5JeuZuUxeKtVysUnwQNGerJP2bSMX9fTFfS4Nxe3Br invoke [1]",
                      "Program log: LI.FI TX: 0xFF20DABB92B54E00",
                      "Program 3i5JeuZuUxeKtVysUnwQNGerJP2bSMX9fTFfS4Nxe3Br consumed 4537 of 438452 compute units",
                      "Program 3i5JeuZuUxeKtVysUnwQNGerJP2bSMX9fTFfS4Nxe3Br success",
                      "Program DF1ow4tspfHX9JwWJsAb9epbkA8hmpSEAtxXy1V27QBH invoke [1]",
                      "Program log: Instruction: Swap",
                      "Program ATokenGPvbdGVxr1b2hvZbsiqW5xWH25efTNsLJA8knL invoke [2]",
                      "Program log: Create",
                      "Program TokenkegQfeZyiNwAJbNbGKPFXCWuBvf9Ss623VQ5DA invoke [3]",
                      "Program TokenkegQfeZyiNwAJbNbGKPFXCWuBvf9Ss623VQ5DA consumed 179 of 371193 compute units",
                      "Program return: TokenkegQfeZyiNwAJbNbGKPFXCWuBvf9Ss623VQ5DA pQAAAAAAAAA=",
                      "Program TokenkegQfeZyiNwAJbNbGKPFXCWuBvf9Ss623VQ5DA success",
                      "Program 11111111111111111111111111111111 invoke [3]",
                      "Program 11111111111111111111111111111111 success",
                      "Program log: Initialize the associated token account",
                      "Program TokenkegQfeZyiNwAJbNbGKPFXCWuBvf9Ss623VQ5DA invoke [3]",
                      "Program TokenkegQfeZyiNwAJbNbGKPFXCWuBvf9Ss623VQ5DA consumed 37 of 366104 compute units",
                      "Program TokenkegQfeZyiNwAJbNbGKPFXCWuBvf9Ss623VQ5DA success",
                      "Program TokenkegQfeZyiNwAJbNbGKPFXCWuBvf9Ss623VQ5DA invoke [3]",
                      "Program TokenkegQfeZyiNwAJbNbGKPFXCWuBvf9Ss623VQ5DA consumed 229 of 363643 compute units",
                      "Program TokenkegQfeZyiNwAJbNbGKPFXCWuBvf9Ss623VQ5DA success",
                      "Program ATokenGPvbdGVxr1b2hvZbsiqW5xWH25efTNsLJA8knL consumed 16405 of 379536 compute units",
                      "Program ATokenGPvbdGVxr1b2hvZbsiqW5xWH25efTNsLJA8knL success",
                      "Program pAMMBay6oceH9fJKBRHGP5D4bD4sWpmSwMn52FMfXEA invoke [2]",
                      "Program log: Instruction: Sell",
                      "Program pfeeUxB6jkeY1Hxd7CsFCAjcbHA9rWtchMGdZ6VojVZ invoke [3]",
                      "Program log: Instruction: GetFees",
                      "Program pfeeUxB6jkeY1Hxd7CsFCAjcbHA9rWtchMGdZ6VojVZ consumed 6038 of 307159 compute units",
                      "Program return: pfeeUxB6jkeY1Hxd7CsFCAjcbHA9rWtchMGdZ6VojVZ AgAAAAAAAABdAAAAAAAAAB4AAAAAAAAA",
                      "Program pfeeUxB6jkeY1Hxd7CsFCAjcbHA9rWtchMGdZ6VojVZ success",
                      "Program TokenzQdBNbLqP5VEhdkAS6EPFLC1PHnBqCXEpPxuEb invoke [3]",
                      "Program log: Instruction: TransferChecked",
                      "Program TokenzQdBNbLqP5VEhdkAS6EPFLC1PHnBqCXEpPxuEb consumed 2562 of 297130 compute units",
                      "Program TokenzQdBNbLqP5VEhdkAS6EPFLC1PHnBqCXEpPxuEb success",
                      "Program TokenkegQfeZyiNwAJbNbGKPFXCWuBvf9Ss623VQ5DA invoke [3]",
                      "Program TokenkegQfeZyiNwAJbNbGKPFXCWuBvf9Ss623VQ5DA consumed 112 of 291747 compute units",
                      "Program TokenkegQfeZyiNwAJbNbGKPFXCWuBvf9Ss623VQ5DA success",
                      "Program TokenkegQfeZyiNwAJbNbGKPFXCWuBvf9Ss623VQ5DA invoke [3]",
                      "Program TokenkegQfeZyiNwAJbNbGKPFXCWuBvf9Ss623VQ5DA consumed 112 of 288530 compute units",
                      "Program TokenkegQfeZyiNwAJbNbGKPFXCWuBvf9Ss623VQ5DA success",
                      "Program TokenkegQfeZyiNwAJbNbGKPFXCWuBvf9Ss623VQ5DA invoke [3]",
                      "Program TokenkegQfeZyiNwAJbNbGKPFXCWuBvf9Ss623VQ5DA consumed 112 of 274335 compute units",
                      "Program TokenkegQfeZyiNwAJbNbGKPFXCWuBvf9Ss623VQ5DA success",
                      "Program TokenkegQfeZyiNwAJbNbGKPFXCWuBvf9Ss623VQ5DA invoke [3]",
                      "Program TokenkegQfeZyiNwAJbNbGKPFXCWuBvf9Ss623VQ5DA consumed 112 of 262633 compute units",
                      "Program TokenkegQfeZyiNwAJbNbGKPFXCWuBvf9Ss623VQ5DA success",
                      "Program data: Pi83CqUD3CriQFRqAAAAAD2KKDcCAAAAAAAAAAAAAAA9iig3AgAAAAAAAAAAAAAA+/Oost0fAwBr1oBxBgAAAJiRBAAAAAAAAgAAAAAAAAA8AAAAAAAAAF0AAAAAAAAA4QoAAAAAAABckQQAAAAAAPiCBAAAAAAAUIrmf9cNZCrxuwHK2p/1Nmtt3CquJw5Ubs1o9ae4E3TBXNN88U0B71kIwRlZ0KnD0aykMDH3PlnAoodzhONibhYMhIAIbnXK/Q33JlLfMicqkZuen2o+4XbOwKsIsq97JilTexMNsRRKC0P+Kr4UcIW0KkEAHnqp6MydKtrC8Mf/g4OBi6j6KMPNO21ek/n6uPCXm8NyFazFskaHe6jDybnwRqOiz07iErT6kv2dAPpPsLP8/TYeQK5TkflgNepjUE5vV8EuK68h2MG0Zw8a7LVspp6oyxS2aRBpKHvII80AAAAAAAAAAAAAAAAAAAAAHgAAAAAAAACDAwAAAAAAAIgTAAAAAAAAcAUAAAAAAAA=",
                      "Program pAMMBay6oceH9fJKBRHGP5D4bD4sWpmSwMn52FMfXEA invoke [3]",
                      "Program pAMMBay6oceH9fJKBRHGP5D4bD4sWpmSwMn52FMfXEA consumed 2054 of 255708 compute units",
                      "Program pAMMBay6oceH9fJKBRHGP5D4bD4sWpmSwMn52FMfXEA success",
                      "Program pAMMBay6oceH9fJKBRHGP5D4bD4sWpmSwMn52FMfXEA consumed 100926 of 353184 compute units",
                      "Program pAMMBay6oceH9fJKBRHGP5D4bD4sWpmSwMn52FMfXEA success",
                      "Program pAMMBay6oceH9fJKBRHGP5D4bD4sWpmSwMn52FMfXEA invoke [2]",
                      "Program log: Instruction: ClaimCashback",
                      "Program TokenkegQfeZyiNwAJbNbGKPFXCWuBvf9Ss623VQ5DA invoke [3]",
                      "Program TokenkegQfeZyiNwAJbNbGKPFXCWuBvf9Ss623VQ5DA consumed 112 of 221192 compute units",
                      "Program TokenkegQfeZyiNwAJbNbGKPFXCWuBvf9Ss623VQ5DA success",
                      "Program data: 4tb2IQfyk+XBXNN88U0B71kIwRlZ0KnD0aykMDH3PlnAoodzhONibummAQAAAAAA4kBUagAAAADppgEAAAAAAOmmAQAAAAAA",
                      "Program pAMMBay6oceH9fJKBRHGP5D4bD4sWpmSwMn52FMfXEA invoke [3]",
                      "Program pAMMBay6oceH9fJKBRHGP5D4bD4sWpmSwMn52FMfXEA consumed 2054 of 218029 compute units",
                      "Program pAMMBay6oceH9fJKBRHGP5D4bD4sWpmSwMn52FMfXEA success",
                      "Program pAMMBay6oceH9fJKBRHGP5D4bD4sWpmSwMn52FMfXEA consumed 32586 of 247696 compute units",
                      "Program pAMMBay6oceH9fJKBRHGP5D4bD4sWpmSwMn52FMfXEA success",
                      "Program TokenkegQfeZyiNwAJbNbGKPFXCWuBvf9Ss623VQ5DA invoke [2]",
                      "Program TokenkegQfeZyiNwAJbNbGKPFXCWuBvf9Ss623VQ5DA consumed 83 of 212954 compute units",
                      "Program TokenkegQfeZyiNwAJbNbGKPFXCWuBvf9Ss623VQ5DA success",
                      "Program DF1ow4tspfHX9JwWJsAb9epbkA8hmpSEAtxXy1V27QBH invoke [2]",
                      "Program DF1ow4tspfHX9JwWJsAb9epbkA8hmpSEAtxXy1V27QBH consumed 2024 of 209268 compute units",
                      "Program DF1ow4tspfHX9JwWJsAb9epbkA8hmpSEAtxXy1V27QBH success",
                      "Program SSwapUtytfBdBn1b9NUGG6foMVPtcWgpRU32HToDUZr invoke [2]",
                      "Program log: Instruction: Swap",
                      "Program TokenkegQfeZyiNwAJbNbGKPFXCWuBvf9Ss623VQ5DA invoke [3]",
                      "Program TokenkegQfeZyiNwAJbNbGKPFXCWuBvf9Ss623VQ5DA consumed 83 of 187358 compute units",
                      "Program TokenkegQfeZyiNwAJbNbGKPFXCWuBvf9Ss623VQ5DA success",
                      "Program TokenkegQfeZyiNwAJbNbGKPFXCWuBvf9Ss623VQ5DA invoke [3]",
                      "Program TokenkegQfeZyiNwAJbNbGKPFXCWuBvf9Ss623VQ5DA consumed 120 of 163020 compute units",
                      "Program TokenkegQfeZyiNwAJbNbGKPFXCWuBvf9Ss623VQ5DA success",
                      "Program TokenkegQfeZyiNwAJbNbGKPFXCWuBvf9Ss623VQ5DA invoke [3]",
                      "Program TokenkegQfeZyiNwAJbNbGKPFXCWuBvf9Ss623VQ5DA consumed 76 of 159985 compute units",
                      "Program TokenkegQfeZyiNwAJbNbGKPFXCWuBvf9Ss623VQ5DA success",
                      "Program SSwapUtytfBdBn1b9NUGG6foMVPtcWgpRU32HToDUZr consumed 42938 of 202284 compute units",
                      "Program SSwapUtytfBdBn1b9NUGG6foMVPtcWgpRU32HToDUZr success",
                      "Program DF1ow4tspfHX9JwWJsAb9epbkA8hmpSEAtxXy1V27QBH invoke [2]",
                      "Program DF1ow4tspfHX9JwWJsAb9epbkA8hmpSEAtxXy1V27QBH consumed 2024 of 155744 compute units",
                      "Program DF1ow4tspfHX9JwWJsAb9epbkA8hmpSEAtxXy1V27QBH success",
                      "Program TokenkegQfeZyiNwAJbNbGKPFXCWuBvf9Ss623VQ5DA invoke [2]",
                      "Program TokenkegQfeZyiNwAJbNbGKPFXCWuBvf9Ss623VQ5DA consumed 118 of 151690 compute units",
                      "Program TokenkegQfeZyiNwAJbNbGKPFXCWuBvf9Ss623VQ5DA success",
                      "Program ATokenGPvbdGVxr1b2hvZbsiqW5xWH25efTNsLJA8knL invoke [2]",
                      "Program log: Create",
                      "Program TokenkegQfeZyiNwAJbNbGKPFXCWuBvf9Ss623VQ5DA invoke [3]",
                      "Program TokenkegQfeZyiNwAJbNbGKPFXCWuBvf9Ss623VQ5DA consumed 179 of 139038 compute units",
                      "Program return: TokenkegQfeZyiNwAJbNbGKPFXCWuBvf9Ss623VQ5DA pQAAAAAAAAA=",
                      "Program TokenkegQfeZyiNwAJbNbGKPFXCWuBvf9Ss623VQ5DA success",
                      "Program 11111111111111111111111111111111 invoke [3]",
                      "Program 11111111111111111111111111111111 success",
                      "Program log: Initialize the associated token account",
                      "Program TokenkegQfeZyiNwAJbNbGKPFXCWuBvf9Ss623VQ5DA invoke [3]",
                      "Program TokenkegQfeZyiNwAJbNbGKPFXCWuBvf9Ss623VQ5DA consumed 37 of 133949 compute units",
                      "Program TokenkegQfeZyiNwAJbNbGKPFXCWuBvf9Ss623VQ5DA success",
                      "Program TokenkegQfeZyiNwAJbNbGKPFXCWuBvf9Ss623VQ5DA invoke [3]",
                      "Program TokenkegQfeZyiNwAJbNbGKPFXCWuBvf9Ss623VQ5DA consumed 233 of 131488 compute units",
                      "Program TokenkegQfeZyiNwAJbNbGKPFXCWuBvf9Ss623VQ5DA success",
                      "Program ATokenGPvbdGVxr1b2hvZbsiqW5xWH25efTNsLJA8knL consumed 16409 of 147381 compute units",
                      "Program ATokenGPvbdGVxr1b2hvZbsiqW5xWH25efTNsLJA8knL success",
                      "Program dbcij3LWUppWqq96dh6gJWwBifmcGfLSB5D4DuSMaqN invoke [2]",
                      "Program log: Instruction: Swap",
                      "Program TokenkegQfeZyiNwAJbNbGKPFXCWuBvf9Ss623VQ5DA invoke [3]",
                      "Program TokenkegQfeZyiNwAJbNbGKPFXCWuBvf9Ss623VQ5DA consumed 105 of 106322 compute units",
                      "Program TokenkegQfeZyiNwAJbNbGKPFXCWuBvf9Ss623VQ5DA success",
                      "Program TokenkegQfeZyiNwAJbNbGKPFXCWuBvf9Ss623VQ5DA invoke [3]",
                      "Program TokenkegQfeZyiNwAJbNbGKPFXCWuBvf9Ss623VQ5DA consumed 105 of 104178 compute units",
                      "Program TokenkegQfeZyiNwAJbNbGKPFXCWuBvf9Ss623VQ5DA success",
                      "Program dbcij3LWUppWqq96dh6gJWwBifmcGfLSB5D4DuSMaqN invoke [3]",
                      "Program dbcij3LWUppWqq96dh6gJWwBifmcGfLSB5D4DuSMaqN consumed 643 of 101217 compute units",
                      "Program dbcij3LWUppWqq96dh6gJWwBifmcGfLSB5D4DuSMaqN success",
                      "Program dbcij3LWUppWqq96dh6gJWwBifmcGfLSB5D4DuSMaqN invoke [3]",
                      "Program dbcij3LWUppWqq96dh6gJWwBifmcGfLSB5D4DuSMaqN consumed 643 of 97556 compute units",
                      "Program dbcij3LWUppWqq96dh6gJWwBifmcGfLSB5D4DuSMaqN success",
                      "Program dbcij3LWUppWqq96dh6gJWwBifmcGfLSB5D4DuSMaqN consumed 29783 of 126020 compute units",
                      "Program dbcij3LWUppWqq96dh6gJWwBifmcGfLSB5D4DuSMaqN success",
                      "Program DF1ow4tspfHX9JwWJsAb9epbkA8hmpSEAtxXy1V27QBH invoke [2]",
                      "Program DF1ow4tspfHX9JwWJsAb9epbkA8hmpSEAtxXy1V27QBH consumed 2024 of 92859 compute units",
                      "Program DF1ow4tspfHX9JwWJsAb9epbkA8hmpSEAtxXy1V27QBH success",
                      "Program DF1ow4tspfHX9JwWJsAb9epbkA8hmpSEAtxXy1V27QBH consumed 345884 of 433915 compute units",
                      "Program DF1ow4tspfHX9JwWJsAb9epbkA8hmpSEAtxXy1V27QBH success",
                      "Program ATokenGPvbdGVxr1b2hvZbsiqW5xWH25efTNsLJA8knL invoke [1]",
                      "Program log: Create",
                      "Program TokenkegQfeZyiNwAJbNbGKPFXCWuBvf9Ss623VQ5DA invoke [2]",
                      "Program TokenkegQfeZyiNwAJbNbGKPFXCWuBvf9Ss623VQ5DA consumed 179 of 81140 compute units",
                      "Program return: TokenkegQfeZyiNwAJbNbGKPFXCWuBvf9Ss623VQ5DA pQAAAAAAAAA=",
                      "Program TokenkegQfeZyiNwAJbNbGKPFXCWuBvf9Ss623VQ5DA success",
                      "Program 11111111111111111111111111111111 invoke [2]",
                      "Program 11111111111111111111111111111111 success",
                      "Program log: Initialize the associated token account",
                      "Program TokenkegQfeZyiNwAJbNbGKPFXCWuBvf9Ss623VQ5DA invoke [2]",
                      "Program TokenkegQfeZyiNwAJbNbGKPFXCWuBvf9Ss623VQ5DA consumed 37 of 76051 compute units",
                      "Program TokenkegQfeZyiNwAJbNbGKPFXCWuBvf9Ss623VQ5DA success",
                      "Program TokenkegQfeZyiNwAJbNbGKPFXCWuBvf9Ss623VQ5DA invoke [2]",
                      "Program TokenkegQfeZyiNwAJbNbGKPFXCWuBvf9Ss623VQ5DA consumed 233 of 73588 compute units",
                      "Log truncated"
                    ],
                    "events": [
                      {
                        "program_id": "3i5JeuZuUxeKtVysUnwQNGerJP2bSMX9fTFfS4Nxe3Br",
                        "message": "LI.FI TX: 0xFF20DABB92B54E00"
                      },
                      {
                        "program_id": "DF1ow4tspfHX9JwWJsAb9epbkA8hmpSEAtxXy1V27QBH",
                        "program": "swap_orchestrator",
                        "message": "Instruction: Swap"
                      },
                      {
                        "program_id": "ATokenGPvbdGVxr1b2hvZbsiqW5xWH25efTNsLJA8knL",
                        "program": "AssociatedTokenAccount",
                        "message": "Create"
                      },
                      {
                        "program_id": "ATokenGPvbdGVxr1b2hvZbsiqW5xWH25efTNsLJA8knL",
                        "program": "AssociatedTokenAccount",
                        "message": "Initialize the associated token account"
                      },
                      {
                        "program_id": "pAMMBay6oceH9fJKBRHGP5D4bD4sWpmSwMn52FMfXEA",
                        "program": "pump_amm",
                        "message": "Instruction: Sell"
                      },
                      {
                        "program_id": "pfeeUxB6jkeY1Hxd7CsFCAjcbHA9rWtchMGdZ6VojVZ",
                        "program": "pump_fees",
                        "message": "Instruction: GetFees"
                      },
                      {
                        "program_id": "TokenzQdBNbLqP5VEhdkAS6EPFLC1PHnBqCXEpPxuEb",
                        "program": "Token2022",
                        "message": "Instruction: TransferChecked"
                      },
                      {
                        "name": "SellEvent",
                        "program_id": "pAMMBay6oceH9fJKBRHGP5D4bD4sWpmSwMn52FMfXEA",
                        "program": "pump_amm",
                        "data": "Pi83CqUD3CriQFRqAAAAAD2KKDcCAAAAAAAAAAAAAAA9iig3AgAAAAAAAAAAAAAA+/Oost0fAwBr1oBxBgAAAJiRBAAAAAAAAgAAAAAAAAA8AAAAAAAAAF0AAAAAAAAA4QoAAAAAAABckQQAAAAAAPiCBAAAAAAAUIrmf9cNZCrxuwHK2p/1Nmtt3CquJw5Ubs1o9ae4E3TBXNN88U0B71kIwRlZ0KnD0aykMDH3PlnAoodzhONibhYMhIAIbnXK/Q33JlLfMicqkZuen2o+4XbOwKsIsq97JilTexMNsRRKC0P+Kr4UcIW0KkEAHnqp6MydKtrC8Mf/g4OBi6j6KMPNO21ek/n6uPCXm8NyFazFskaHe6jDybnwRqOiz07iErT6kv2dAPpPsLP8/TYeQK5TkflgNepjUE5vV8EuK68h2MG0Zw8a7LVspp6oyxS2aRBpKHvII80AAAAAAAAAAAAAAAAAAAAAHgAAAAAAAACDAwAAAAAAAIgTAAAAAAAAcAUAAAAAAAA=",
                        "data_parsed": {
                          "base_amount_in": 9515338301,
                          "buyback_fee": 1392,
                          "buyback_fee_basis_points": 5000,
                          "cashback": 899,
                          "cashback_fee_basis_points": 30,
                          "coin_creator": "6QUz5RTvBUWQkQDYR67LE6aE981h8W4yQLkGeMrLxcqS",
                          "coin_creator_fee": 0,
                          "coin_creator_fee_basis_points": 0,
                          "lp_fee": 60,
                          "lp_fee_basis_points": 2,
                          "min_quote_amount_out": 0,
                          "pool": "6RQTgY3yHCWARVAnPVrCGbWavoo4RRHWWbBs2snawNSw",
                          "pool_base_token_reserves": 879461975782395,
                          "pool_quote_token_reserves": 27674072683,
                          "protocol_fee": 2785,
                          "protocol_fee_basis_points": 93,
                          "protocol_fee_recipient": "JCRGumoE9Qi5BBgULTgdgTLjSgkCMSbF62ZZfGs84JeU",
                          "protocol_fee_recipient_token_account": "DWpvfqzGWuVy9jVSKSShdM2733nrEsnnhsUStYbkj6Nn",
                          "quote_amount_out": 299416,
                          "quote_amount_out_without_lp_fee": 299356,
                          "timestamp": 1783906530,
                          "user": "E1onLBSnoQMsp9tntCcvMJ6TYEfQniJvumd5dGYQxuky",
                          "user_base_token_account": "2V53KRpaVGWfGWHRaZ6hLoUR8jL82ZGC49RmiKmNCRaS",
                          "user_base_token_reserves": 9515338301,
                          "user_quote_amount_out": 295672,
                          "user_quote_token_account": "3Zy3QguGdwe3ibsb1sgHXrYhizdbEkawCihVdgjogkN2",
                          "user_quote_token_reserves": 0
                        }
                      },
                      {
                        "program_id": "pAMMBay6oceH9fJKBRHGP5D4bD4sWpmSwMn52FMfXEA",
                        "program": "pump_amm",
                        "message": "Instruction: ClaimCashback"
                      },
                      {
                        "name": "ClaimCashbackEvent",
                        "program_id": "pAMMBay6oceH9fJKBRHGP5D4bD4sWpmSwMn52FMfXEA",
                        "program": "pump_amm",
                        "data": "4tb2IQfyk+XBXNN88U0B71kIwRlZ0KnD0aykMDH3PlnAoodzhONibummAQAAAAAA4kBUagAAAADppgEAAAAAAOmmAQAAAAAA",
                        "data_parsed": {
                          "amount": 108265,
                          "timestamp": 1783906530,
                          "total_cashback_earned": 108265,
                          "total_claimed": 108265,
                          "user": "E1onLBSnoQMsp9tntCcvMJ6TYEfQniJvumd5dGYQxuky"
                        }
                      },
                      {
                        "program_id": "SSwapUtytfBdBn1b9NUGG6foMVPtcWgpRU32HToDUZr",
                        "message": "Instruction: Swap"
                      },
                      {
                        "program_id": "ATokenGPvbdGVxr1b2hvZbsiqW5xWH25efTNsLJA8knL",
                        "program": "AssociatedTokenAccount",
                        "message": "Create"
                      },
                      {
                        "program_id": "ATokenGPvbdGVxr1b2hvZbsiqW5xWH25efTNsLJA8knL",
                        "program": "AssociatedTokenAccount",
                        "message": "Initialize the associated token account"
                      },
                      {
                        "program_id": "dbcij3LWUppWqq96dh6gJWwBifmcGfLSB5D4DuSMaqN",
                        "program": "dynamic_bonding_curve",
                        "message": "Instruction: Swap"
                      },
                      {
                        "program_id": "ATokenGPvbdGVxr1b2hvZbsiqW5xWH25efTNsLJA8knL",
                        "program": "AssociatedTokenAccount",
                        "message": "Create"
                      },
                      {
                        "program_id": "ATokenGPvbdGVxr1b2hvZbsiqW5xWH25efTNsLJA8knL",
                        "program": "AssociatedTokenAccount",
                        "message": "Initialize the associated token account"
                      },
                      {
                        "program_id": "pAMMBay6oceH9fJKBRHGP5D4bD4sWpmSwMn52FMfXEA",
                        "program": "pump_amm",
                        "data": "5EWlLlHLmh0+LzcKpQPcKuJAVGoAAAAAPYooNwIAAAAAAAAAAAAAAD2KKDcCAAAAAAAAAAAAAAD786iy3R8DAGvWgHEGAAAAmJEEAAAAAAACAAAAAAAAADwAAAAAAAAAXQAAAAAAAADhCgAAAAAAAFyRBAAAAAAA+IIEAAAAAABQiuZ/1w1kKvG7Acran/U2a23cKq4nDlRuzWj1p7gTdMFc03zxTQHvWQjBGVnQqcPRrKQwMfc+WcCih3OE42JuFgyEgAhudcr9DfcmUt8yJyqRm56faj7hds7Aqwiyr3smKVN7Ew2xFEoLQ/4qvhRwhbQqQQAeeqnozJ0q2sLwx/+Dg4GLqPoow807bV6T+fq48Jebw3IVrMWyRod7qMPJufBGo6LPTuIStPqS/Z0A+k+ws/z9Nh5ArlOR+WA16mNQTm9XwS4rryHYwbRnDxrstWymnqjLFLZpEGkoe8gjzQAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAIMDAAAAAAAAiBMAAAAAAABwBQAAAAAAAA==",
                        "decode_error": "unknown event discriminator: [228, 69, 165, 46, 81, 203, 154, 29]"
                      },
                      {
                        "program_id": "pAMMBay6oceH9fJKBRHGP5D4bD4sWpmSwMn52FMfXEA",
                        "program": "pump_amm",
                        "data": "5EWlLlHLmh3i1vYhB/KT5cFc03zxTQHvWQjBGVnQqcPRrKQwMfc+WcCih3OE42Ju6aYBAAAAAADiQFRqAAAAAOmmAQAAAAAA6aYBAAAAAAA=",
                        "decode_error": "unknown event discriminator: [228, 69, 165, 46, 81, 203, 154, 29]"
                      },
                      {
                        "program_id": "DF1ow4tspfHX9JwWJsAb9epbkA8hmpSEAtxXy1V27QBH",
                        "program": "swap_orchestrator",
                        "data": "5EWlLlHLmh1Axs3oJghx4gwU3vyCXsZ2lCUIGLtlQGX0KY0xVtVxtNT4CQwY6ahjpJEuPrVkgQE+lM15Qj13oFb1BHwNz+P+Lp6Q6yES+G89iig3AgAAAAabiFf+q4GE+2h/Y0YYwDXaxDncGus7VZig8AAAAAABe4YEAAAAAAA=",
                        "decode_error": "unknown event discriminator: [228, 69, 165, 46, 81, 203, 154, 29]"
                      },
                      {
                        "program_id": "DF1ow4tspfHX9JwWJsAb9epbkA8hmpSEAtxXy1V27QBH",
                        "program": "swap_orchestrator",
                        "data": "5EWlLlHLmh1Axs3oJghx4gaE2hamicLDiWqEEXFb6UMu7BynGhziCHKGxnZ3z2W9BpuIV/6rgYT7aH9jRhjANdrEOdwa6ztVmKDwAAAAAAFvhgQAAAAAAMb6evO+2606PWXzaqvJdDGxu+TC0vbg5HymAgNFL11hBFkAAAAAAAA=",
                        "decode_error": "unknown event discriminator: [228, 69, 165, 46, 81, 203, 154, 29]"
                      },
                      {
                        "program_id": "dbcij3LWUppWqq96dh6gJWwBifmcGfLSB5D4DuSMaqN",
                        "program": "dynamic_bonding_curve",
                        "data": "5EWlLlHLmh0bPBXViqq7k6GXYthLBGfC6VJceUfi2kvsc1xOyvNYEwCXIeFmQrt+wtfeUqCC7qJ0dKrA7P02u6WGcW42ZvQM2KQCMZlox+0BAARZAAAAAAAAAAAAAAAAAADLWAAAAAAAABsVBwAAAAAAa+EP8579pjgAAAAAAAAAAC4AAAAAAAAACwAAAAAAAAAAAAAAAAAAAARZAAAAAAAA4kBUagAAAAA=",
                        "decode_error": "unknown event discriminator: [228, 69, 165, 46, 81, 203, 154, 29]"
                      },
                      {
                        "program_id": "dbcij3LWUppWqq96dh6gJWwBifmcGfLSB5D4DuSMaqN",
                        "program": "dynamic_bonding_curve",
                        "data": "5EWlLlHLmh29QjOoJlB1maGXYthLBGfC6VJceUfi2kvsc1xOyvNYEwCXIeFmQrt+wtfeUqCC7qJ0dKrA7P02u6WGcW42ZvQM2KQCMZlox+0BAARZAAAAAAAAAAAAAAAAAAAABFkAAAAAAADLWAAAAAAAAAAAAAAAAAAAGxUHAAAAAABr4Q/znv2mOAAAAAAAAAAALgAAAAAAAAALAAAAAAAAAAAAAAAAAAAAMFlejQQAAABOhHajKwAAAOJAVGoAAAAA",
                        "decode_error": "unknown event discriminator: [228, 69, 165, 46, 81, 203, 154, 29]"
                      },
                      {
                        "program_id": "DF1ow4tspfHX9JwWJsAb9epbkA8hmpSEAtxXy1V27QBH",
                        "program": "swap_orchestrator",
                        "data": "5EWlLlHLmh1Axs3oJghx4glgDKUk97G31syxw5c6oDMNGQPaYBzJtd7jxmK0ytFJxvp6877brTo9ZfNqq8l0MbG75MLS9uDkfKYCA0UvXWEEWQAAAAAAADpDyCYo2dp/bFdmqoXUg4V3v5t9rLu7bWUJsZmRsSopGxUHAAAAAAA=",
                        "decode_error": "unknown event discriminator: [228, 69, 165, 46, 81, 203, 154, 29]"
                      }
                    ],
                    "recent_blockhash": "95PzpoYk49WzDqWK7ieKHN7Lupbe4NpoB4hPS5odpvMN",
                    "version": 0
                  }
                }
              }
            }
          }
        }
      },
      "marketHistoryResponse": {
        "description": "JSON object containing market metrics of a specified chain.",
        "content": {
          "application/json": {
            "schema": {
              "$ref": "#/components/schemas/MarketHistoryResponseType"
            },
            "examples": {
              "Solana": {
                "value": {
                  "success": true,
                  "data": {
                    "items": [
                      {
                        "unix_time": 1784505600,
                        "volume_usd": 6830233087.9298725,
                        "trade_count": 28959937,
                        "active_trading_tokens": 70410,
                        "stable_coin_market_cap": 14836981086.24842
                      },
                      {
                        "unix_time": 1784505600,
                        "volume_usd": 843958590.8503149,
                        "trade_count": 3335919,
                        "active_trading_tokens": 13823,
                        "stable_coin_market_cap": 14760991987.594704
                      }
                    ],
                    "has_more": true
                  }
                }
              }
            }
          }
        }
      },
      "identitySingleResponse": {
        "description": "Successful response",
        "content": {
          "application/json": {
            "schema": {
              "$ref": "#/components/schemas/IdentitySingleResponse"
            },
            "examples": {
              "Example": {
                "value": {
                  "success": true,
                  "data": {
                    "address": "DaP44wF8mKmYki1M5zguvXYAW5XF6sLQEzvdmvcizRqD",
                    "type": "wallet",
                    "label": "dap4.sol",
                    "category": "Wallet",
                    "tags": [],
                    "domains": [
                      "dap4.sol",
                      "uapx.sol",
                      "ufox.sol",
                      "blxme.sol",
                      "bruca.sol"
                    ],
                    "domains_total": 2192
                  }
                }
              }
            }
          }
        }
      },
      "identityMultipleResponse": {
        "description": "Successful response",
        "content": {
          "application/json": {
            "schema": {
              "$ref": "#/components/schemas/IdentityMultipleResponse"
            },
            "examples": {
              "Example": {
                "value": {
                  "success": true,
                  "data": {
                    "DaP44wF8mKmYki1M5zguvXYAW5XF6sLQEzvdmvcizRqD": {
                      "address": "DaP44wF8mKmYki1M5zguvXYAW5XF6sLQEzvdmvcizRqD",
                      "type": "wallet",
                      "label": "dap4.sol",
                      "category": "Wallet",
                      "tags": [],
                      "domains": [
                        "dap4.sol",
                        "uapx.sol",
                        "ufox.sol",
                        "blxme.sol",
                        "bruca.sol"
                      ],
                      "domains_total": 2192
                    },
                    "5tzFkiKscXHK5ZXCGbXZxdw7gTjjD1mBwuoFbhUvuAi9": {
                      "address": "5tzFkiKscXHK5ZXCGbXZxdw7gTjjD1mBwuoFbhUvuAi9",
                      "type": "exchange",
                      "entity": "Binance",
                      "label": "Binance",
                      "category": "Exchange",
                      "tags": [
                        "Binance"
                      ]
                    }
                  }
                }
              }
            }
          }
        }
      },
      "identityDomainsResponse": {
        "description": "Successful response",
        "content": {
          "application/json": {
            "schema": {
              "$ref": "#/components/schemas/IdentityDomainsResponse"
            },
            "examples": {
              "Example": {
                "value": {
                  "success": true,
                  "data": {
                    "address": "DaP44wF8mKmYki1M5zguvXYAW5XF6sLQEzvdmvcizRqD",
                    "total": 2192,
                    "offset": 0,
                    "limit": 100,
                    "domains": [
                      "dap4.sol",
                      "uapx.sol",
                      "ufox.sol",
                      "blxme.sol",
                      "bruca.sol",
                      "draes.sol",
                      "jjust.sol",
                      "mufon.sol",
                      "tpusa.sol",
                      "uapac.sol"
                    ]
                  }
                }
              }
            }
          }
        }
      }
    },
    "parameters": {
      "xChainParam": {
        "name": "x-chain",
        "description": "A chain name listed in supported networks.",
        "in": "header",
        "required": false,
        "schema": {
          "type": "string",
          "enum": [
            "solana",
            "ethereum",
            "bsc",
            "base",
            "robinhood",
            "arc",
            "sui",
            "mantle",
            "hyperevm",
            "arbitrum",
            "avalanche",
            "optimism",
            "polygon",
            "zksync",
            "monad",
            "aptos",
            "fogo",
            "megaeth"
          ],
          "default": "solana"
        }
      },
      "xSolanaAndBaseChainParam": {
        "name": "x-chain",
        "description": "Solana and base.",
        "in": "header",
        "required": false,
        "schema": {
          "type": "string",
          "enum": [
            "solana",
            "base"
          ],
          "default": "solana"
        }
      },
      "xPNLChainParam": {
        "name": "x-chain",
        "description": "The chain support PNL data.",
        "in": "header",
        "required": false,
        "schema": {
          "type": "string",
          "enum": [
            "solana",
            "ethereum",
            "arbitrum",
            "avalanche",
            "bsc",
            "optimism",
            "polygon",
            "base",
            "zksync",
            "monad",
            "hyperevm",
            "mantle",
            "megaeth",
            "robinhood"
          ],
          "default": "solana"
        }
      },
      "xSolanaChainParam": {
        "name": "x-chain",
        "description": "Solana network only.",
        "in": "header",
        "required": false,
        "schema": {
          "type": "string",
          "enum": [
            "solana"
          ],
          "default": "solana"
        }
      },
      "xSVMChainParam": {
        "name": "x-chain",
        "description": "SVM networks only.",
        "in": "header",
        "required": false,
        "schema": {
          "type": "string",
          "enum": [
            "solana",
            "fogo"
          ],
          "default": "solana"
        }
      },
      "xNonSuiChainParam": {
        "name": "x-chain",
        "description": "A chain name listed in supported networks except Sui.",
        "in": "header",
        "required": false,
        "schema": {
          "type": "string",
          "enum": [
            "solana",
            "ethereum",
            "bsc",
            "base",
            "robinhood",
            "arc",
            "mantle",
            "hyperevm",
            "arbitrum",
            "avalanche",
            "optimism",
            "polygon",
            "zksync",
            "monad",
            "aptos",
            "fogo",
            "megaeth"
          ],
          "default": "solana"
        }
      },
      "xBaseChainParam": {
        "name": "x-chain",
        "description": "Base network only.",
        "in": "header",
        "required": false,
        "schema": {
          "type": "string",
          "enum": [
            "base"
          ],
          "default": "base"
        }
      },
      "xMemeChainParam": {
        "name": "x-chain",
        "description": "Meme networks support.",
        "in": "header",
        "required": false,
        "schema": {
          "type": "string",
          "enum": [
            "solana",
            "bsc",
            "monad"
          ],
          "default": "solana"
        }
      },
      "ohlcvTypeParam": {
        "name": "type",
        "description": "OHLCV time frame.",
        "in": "query",
        "required": true,
        "schema": {
          "type": "string",
          "enum": [
            "1m",
            "3m",
            "5m",
            "15m",
            "30m",
            "1H",
            "2H",
            "4H",
            "6H",
            "8H",
            "12H",
            "1D",
            "3D",
            "1W",
            "1M"
          ]
        },
        "example": "15m"
      },
      "ohlcvV3TypeParam": {
        "name": "type",
        "description": "OHLCV V3 time frame.",
        "in": "query",
        "required": true,
        "schema": {
          "type": "string",
          "enum": [
            "1s",
            "15s",
            "30s",
            "1m",
            "3m",
            "5m",
            "15m",
            "30m",
            "1H",
            "2H",
            "4H",
            "6H",
            "8H",
            "12H",
            "1D",
            "3D",
            "1W",
            "1M"
          ]
        },
        "example": "15m"
      },
      "ohlcvCurrencyParam": {
        "name": "currency",
        "description": "Currency in which OHLCV data is presented. Choose between usd or native token.",
        "in": "query",
        "required": false,
        "schema": {
          "type": "string",
          "default": "usd",
          "enum": [
            "usd",
            "native"
          ]
        }
      },
      "priceVolumeTypeParam": {
        "name": "type",
        "description": "Time frame/interval.",
        "in": "query",
        "required": true,
        "schema": {
          "type": "string",
          "default": "24h",
          "enum": [
            "1h",
            "2h",
            "4h",
            "8h",
            "24h"
          ]
        }
      },
      "tokenAddressParam": {
        "name": "address",
        "description": "The address of the token contract.",
        "in": "query",
        "required": true,
        "schema": {
          "type": "string"
        },
        "examples": {
          "wsol": {
            "value": "So11111111111111111111111111111111111111112"
          },
          "solana": {
            "value": "DezXAZ8z7PnrnRJjz3wXBoRgixCa6xjnB7YaB1pPB263"
          },
          "ethereum": {
            "value": "0x95ad61b0a150d79219dcf64e1e6cc01f0b64c4ce"
          },
          "solana_scaled_ui": {
            "value": "Xsc9qvGR1efVDFGLrVsmkzv3qi45LTBjeUKSPmx9qEh"
          }
        }
      },
      "topTradersTokenAddressParam": {
        "name": "address",
        "description": "The address of the token contract.",
        "in": "query",
        "required": true,
        "schema": {
          "type": "string"
        },
        "examples": {
          "solana": {
            "value": "3xF8fgj5maAgFwprsEs26bJNmaPDS24zT1VTtELspump"
          },
          "ethereum": {
            "value": "0x95ad61b0a150d79219dcf64e1e6cc01f0b64c4ce"
          }
        }
      },
      "tokenAddressFeeParam": {
        "name": "address",
        "description": "The address of the token contract.",
        "in": "query",
        "required": true,
        "schema": {
          "type": "string"
        },
        "examples": {
          "solana": {
            "value": "7c23msBoMSmCAcTkFJd4vksE2XfrPmG9U2xffi86pump"
          }
        }
      },
      "ownerAddressParam": {
        "name": "owner",
        "description": "The address of the wallet.",
        "in": "query",
        "required": false,
        "schema": {
          "type": "string"
        },
        "examples": {
          "solana": {
            "value": "ob2htHLoCu2P6tX7RrNVtiG1mYTas8NGJEVLaFEUngk"
          },
          "ethereum": {
            "value": "0x95ad61b0a150d79219dcf64e1e6cc01f0b64c4ce"
          }
        }
      },
      "tokenHolderDistributionTokenAddressParam": {
        "name": "token_address",
        "description": "Token contract address.",
        "in": "query",
        "required": true,
        "schema": {
          "type": "string"
        },
        "examples": {
          "solana": {
            "value": "11111Zxp8hv4GVzZTWcgcFTcFCfPzW8YmbwvGahTBP"
          }
        }
      },
      "tokenHolderTagChartTokenAddressParam": {
        "name": "token_address",
        "description": "Token contract address.",
        "in": "query",
        "required": true,
        "schema": {
          "type": "string"
        },
        "examples": {
          "solana": {
            "value": "J3Dhvhga7QwgLWUGn43caDJtaoUTkDLmiMGqstS2Dw8A"
          }
        }
      },
      "tokenHolderDistributionAddressTypeParam": {
        "name": "address_type",
        "description": "Return holder distribution by wallet or token account address.",
        "in": "query",
        "required": false,
        "schema": {
          "type": "string",
          "default": "wallet",
          "enum": [
            "wallet",
            "token_account"
          ]
        }
      },
      "tokenHolderDistributionModeParam": {
        "name": "mode",
        "description": "Holder filter mode (percent = by supply % range, top = top holders by supply %).",
        "in": "query",
        "required": false,
        "schema": {
          "type": "string",
          "default": "top",
          "enum": [
            "percent",
            "top"
          ]
        }
      },
      "tokenHolderDistributionTopParam": {
        "name": "top_n",
        "description": "Number of top holders to return (used only when mode = top).",
        "in": "query",
        "required": false,
        "schema": {
          "type": "integer",
          "default": 10,
          "minimum": 1,
          "maximum": 10000
        }
      },
      "tokenHolderDistributionMinPercentParam": {
        "name": "min_percent",
        "description": "Minimum % of total supply a holder must have (used only when mode = percent).",
        "in": "query",
        "required": false,
        "schema": {
          "type": "number",
          "minimum": 0,
          "maximum": 100
        }
      },
      "tokenHolderDistributionMaxPercentParam": {
        "name": "max_percent",
        "description": "Maximum % of total supply a holder can have (used only when mode = percent).",
        "in": "query",
        "required": false,
        "schema": {
          "type": "number",
          "minimum": 0,
          "maximum": 100
        }
      },
      "tokenHolderDistributionIncludeListParam": {
        "name": "include_list",
        "description": "Return holder list (true / false).",
        "in": "query",
        "required": false,
        "schema": {
          "type": "boolean",
          "default": true
        }
      },
      "poolIdAddressParam": {
        "name": "pool_id",
        "description": "The address of the liquidity pool.",
        "in": "query",
        "required": false,
        "schema": {
          "type": "string"
        },
        "examples": {
          "solana": {
            "value": "3nMFwZXwY1s1M5s8vYAHqd4wGs4iSxXE4LRoUMMYqEgF"
          },
          "ethereum": {
            "value": "0x95ad61b0a150d79219dcf64e1e6cc01f0b64c4ce"
          }
        }
      },
      "liquiditySourceParam": {
        "name": "source",
        "description": "Source of the liquidity (AMMs). Only support solana.",
        "in": "query",
        "required": false,
        "schema": {
          "type": "string",
          "enum": [
            "raydium",
            "raydium_clamm",
            "raydium_cp",
            "orca",
            "lifinity",
            "fluxbeam",
            "saber",
            "phoenix",
            "bonkswap",
            "meteora_dlmm",
            "pump_amm",
            "humidifi",
            "bisonfi",
            "solfi_v2",
            "alphaq",
            "aquifer",
            "solfi",
            "whirlpool",
            "goonfi",
            "goonfi_v2",
            "tesserav",
            "jupiterz",
            "vertigo",
            "pump_dot_fun",
            "raydium_launchlab",
            "meteora_virtual_curve",
            "meteora_dynamic_bonding_curve"
          ]
        },
        "examples": {
          "solana": {
            "value": "raydium"
          }
        }
      },
      "tokenTxsV3SortByParam": {
        "name": "sort_by",
        "in": "query",
        "required": false,
        "schema": {
          "type": "string",
          "default": "block_unix_time",
          "enum": [
            "block_unix_time",
            "block_number"
          ]
        }
      },
      "tokenAddressCreationParam": {
        "name": "address",
        "description": "The address of the token contract.",
        "in": "query",
        "required": true,
        "schema": {
          "type": "string"
        },
        "examples": {
          "solana": {
            "value": "D7rcV8SPxbv94s3kJETkrfMrWqHFs6qrmtbiu6saaany"
          }
        }
      },
      "baseAddressParam": {
        "name": "base_address",
        "description": "The address of the base token.",
        "in": "query",
        "required": true,
        "schema": {
          "type": "string"
        },
        "examples": {
          "wsol": {
            "value": "So11111111111111111111111111111111111111112"
          },
          "solana": {
            "value": "DezXAZ8z7PnrnRJjz3wXBoRgixCa6xjnB7YaB1pPB263"
          },
          "ethereum": {
            "value": "0x95ad61b0a150d79219dcf64e1e6cc01f0b64c4ce"
          },
          "solana_scaled_ui": {
            "value": "Xsc9qvGR1efVDFGLrVsmkzv3qi45LTBjeUKSPmx9qEh"
          }
        }
      },
      "quoteAddressParam": {
        "name": "quote_address",
        "description": "The address of the quote token.",
        "in": "query",
        "required": true,
        "schema": {
          "type": "string"
        },
        "examples": {
          "solana": {
            "value": "EPjFWdd5AufqSSqeM2qN1xzybapC8G4wEGGkZwyTDt1v"
          },
          "ethereum": {
            "value": "0xc02aaa39b223fe8d0a0e5c4f27ead9083c756cc2"
          },
          "solana_scaled_ui": {
            "value": "Xsc9qvGR1efVDFGLrVsmkzv3qi45LTBjeUKSPmx9qEh"
          }
        }
      },
      "traderAddressParam": {
        "name": "address",
        "description": "The address of a trader.",
        "in": "query",
        "required": true,
        "schema": {
          "type": "string"
        },
        "examples": {
          "solana": {
            "value": "GBJ4MZe8fqpA6UVgjh19BwJPMb79KDfMv78XnFVxgH2Q"
          },
          "ethereum": {
            "value": "0xE76aDA2ADE5585859789b3500DDE494e5479fb75"
          }
        }
      },
      "walletApiTokenAddressParam": {
        "name": "token_address",
        "description": "Token mint address.",
        "in": "query",
        "required": true,
        "schema": {
          "type": "string"
        },
        "examples": {
          "wsol": {
            "value": "So11111111111111111111111111111111111111112"
          },
          "solana": {
            "value": "EPjFWdd5AufqSSqeM2qN1xzybapC8G4wEGGkZwyTDt1v"
          },
          "ethereum": {
            "value": "0x95ad61b0a150d79219dcf64e1e6cc01f0b64c4ce"
          },
          "solana_scaled_ui": {
            "value": "Xsc9qvGR1efVDFGLrVsmkzv3qi45LTBjeUKSPmx9qEh"
          }
        }
      },
      "walletApiWalletParam": {
        "name": "wallet",
        "description": "The address of a wallet.",
        "in": "query",
        "required": true,
        "schema": {
          "type": "string"
        },
        "examples": {
          "solana": {
            "value": "Gt4RRcMg2mzEN9SDtSUjEjezC9b1nXjEGDQyEVbrc7Sk"
          },
          "ethereum": {
            "value": "0xE76aDA2ADE5585859789b3500DDE494e5479fb75"
          }
        }
      },
      "walletApiXChainParam": {
        "name": "x-chain",
        "description": "A chain name listed in supported networks.",
        "in": "header",
        "required": true,
        "schema": {
          "type": "string",
          "enum": [
            "solana"
          ],
          "default": "solana"
        }
      },
      "pairAddressParam": {
        "name": "address",
        "description": "The address of a pair contract",
        "in": "query",
        "required": true,
        "schema": {
          "type": "string"
        },
        "examples": {
          "solana": {
            "value": "4DoNfFBfF7UokCC2FQzriy7yHK6DY6NVdYpuekQ5pRgg"
          },
          "ethereum": {
            "value": "0x88e6A0c2dDD26FEEb64F039a2c41296FcB3f5640"
          }
        }
      },
      "listPairAddressParam": {
        "name": "list_address",
        "description": "A list of pair contract addresses in string separated by commas (,)",
        "in": "query",
        "required": true,
        "schema": {
          "type": "string"
        },
        "examples": {
          "solana": {
            "value": "4DoNfFBfF7UokCC2FQzriy7yHK6DY6NVdYpuekQ5pRgg,D3gZwng2MgZGjktYcKpbR8Bz8653i4qCgzHCf5E4TcZb"
          },
          "ethereum": {
            "value": "0x88e6A0c2dDD26FEEb64F039a2c41296FcB3f5640,0x4f493B7dE8aAC7d55F71853688b1F7C8F0243C85"
          }
        }
      },
      "listAddressParam": {
        "name": "list_address",
        "description": "A list of token addresses in string separated by commas (,)",
        "in": "query",
        "required": true,
        "schema": {
          "type": "string"
        },
        "examples": {
          "solana": {
            "value": "So11111111111111111111111111111111111111112,mSoLzYCxHdYgdzU16g5QSh3i5K3z3KZK7ytfqcJm7So,EPjFWdd5AufqSSqeM2qN1xzybapC8G4wEGGkZwyTDt1v"
          },
          "ethereum": {
            "value": "0x95ad61b0a150d79219dcf64e1e6cc01f0b64c4ce,0xA0b86991c6218b36c1d19D4a2e9Eb0cE3606eB48"
          },
          "solana_scaled_ui": {
            "value": "Xsc9qvGR1efVDFGLrVsmkzv3qi45LTBjeUKSPmx9qEh,Xs3eBt7uRfJX8QUs4suhyU8p2M6DoUDrJyWBa8LLZsg,XsbEhLAtcf6HdfpFZ5xEMdqW8nfAvcsP5bdudRLJzJp"
          }
        }
      },
      "listAddressFeeParam": {
        "name": "list_address",
        "description": "A list of token addresses in string separated by commas (,)",
        "in": "query",
        "required": true,
        "schema": {
          "type": "string"
        },
        "examples": {
          "solana": {
            "value": "7c23msBoMSmCAcTkFJd4vksE2XfrPmG9U2xffi86pump,AG98yS95WVxnz7ZpkaNuznnA1wZs9nyWCghMNjZEpump"
          }
        }
      },
      "minLiquidityParam": {
        "name": "min_liquidity",
        "description": "Specify the lower bound of liquidity. Filter for records with liquidity greater than the minimum liquidity value, excluding those with liquidity equal to the minimum.",
        "in": "query",
        "required": false,
        "schema": {
          "type": "number",
          "default": 100,
          "minimum": 0
        }
      },
      "tokenListV1MaxLiquidityParam": {
        "name": "max_liquidity",
        "description": "Specify the upper bound of liquidity. Filter for records with liquidity less than the maximum liquidity value, excluding those with liquidity equal to the maximum.",
        "in": "query",
        "required": false,
        "schema": {
          "type": "number",
          "exclusiveMinimum": 0
        }
      },
      "checkLiquidityParam": {
        "name": "check_liquidity",
        "description": "Specify the liquidity value to check.",
        "in": "query",
        "required": false,
        "schema": {
          "type": "number"
        },
        "example": 100
      },
      "includeLiquidityParam": {
        "name": "include_liquidity",
        "description": "Specify whether to include liquidity in the response.",
        "in": "query",
        "required": false,
        "schema": {
          "type": "boolean",
          "enum": [
            true,
            false
          ]
        }
      },
      "sortTypeParam": {
        "name": "sort_type",
        "description": "Specify the sort order.",
        "in": "query",
        "required": true,
        "schema": {
          "type": "string",
          "enum": [
            "desc",
            "asc"
          ],
          "default": "desc"
        }
      },
      "sortTypeDescParam": {
        "name": "sort_type",
        "description": "Specify the sort order.",
        "in": "query",
        "schema": {
          "type": "string",
          "enum": [
            "desc",
            "asc"
          ],
          "default": "desc"
        }
      },
      "sortTypeAscParam": {
        "name": "sort_type",
        "description": "Specify the sort order.",
        "in": "query",
        "required": true,
        "schema": {
          "type": "string",
          "enum": [
            "asc",
            "desc"
          ],
          "default": "asc"
        }
      },
      "sortTypeDescOnlyParam": {
        "name": "sort_type",
        "description": "Specify the sort order.",
        "in": "query",
        "required": false,
        "schema": {
          "type": "string",
          "enum": [
            "desc"
          ],
          "default": "desc"
        }
      },
      "sortByMarketsParam": {
        "name": "sort_by",
        "description": "Specify the sort field.",
        "in": "query",
        "required": true,
        "schema": {
          "type": "string",
          "enum": [
            "liquidity",
            "volume24h"
          ],
          "default": "liquidity"
        }
      },
      "sortByTopTradersParam": {
        "name": "sort_by",
        "description": "Specify the sort field.",
        "in": "query",
        "required": true,
        "schema": {
          "type": "string",
          "enum": [
            "volume",
            "trade",
            "total_pnl",
            "unrealized_pnl",
            "realized_pnl",
            "volume_usd",
            "hold_volume"
          ],
          "default": "volume"
        }
      },
      "sortByTokenListParam": {
        "name": "sort_by",
        "description": "Specify the sort field.",
        "in": "query",
        "required": true,
        "schema": {
          "type": "string",
          "enum": [
            "mc",
            "v24hUSD",
            "v24hChangePercent",
            "liquidity"
          ],
          "default": "v24hUSD"
        }
      },
      "sortByTokenTrendingParam": {
        "name": "sort_by",
        "description": "Specify the sort field.",
        "in": "query",
        "required": true,
        "schema": {
          "type": "string",
          "enum": [
            "rank",
            "volumeUSD",
            "liquidity"
          ],
          "default": "rank"
        }
      },
      "intervalTrendingParam": {
        "name": "interval",
        "description": "Specify the interval of trending.",
        "in": "query",
        "required": false,
        "schema": {
          "type": "string",
          "enum": [
            "1h",
            "4h",
            "24h"
          ],
          "default": "24h"
        }
      },
      "sortByTopGainerLoserParam": {
        "name": "sort_by",
        "description": "Specify the sort field. Use `trader_score` to rank traders by an overall 0–100 score based on profitability, consistency, trading quality, and activity relative to other eligible traders. Higher scores indicate stronger overall trading performance.",
        "in": "query",
        "required": true,
        "schema": {
          "type": "string",
          "enum": [
            "PnL",
            "realized_pnl",
            "unrealized_pnl",
            "trader_score"
          ],
          "default": "PnL"
        }
      },
      "sortBySearchParam": {
        "name": "sort_by",
        "description": "Specify the sort field.",
        "in": "query",
        "required": true,
        "schema": {
          "type": "string",
          "enum": [
            "fdv",
            "marketcap",
            "liquidity",
            "price",
            "price_change_24h_percent",
            "trade_24h",
            "trade_24h_change_percent",
            "buy_24h",
            "buy_24h_change_percent",
            "sell_24h",
            "sell_24h_change_percent",
            "unique_wallet_24h",
            "unique_view_24h_change_percent",
            "last_trade_unix_time",
            "volume_24h_usd",
            "volume_24h_change_percent"
          ],
          "default": "volume_24h_usd"
        }
      },
      "chainBySearchParam": {
        "name": "chain",
        "description": "Specify the chain.",
        "in": "query",
        "schema": {
          "type": "string",
          "enum": [
            "all",
            "solana",
            "ethereum",
            "bsc",
            "base",
            "robinhood",
            "arc",
            "sui",
            "mantle",
            "hyperevm",
            "arbitrum",
            "avalanche",
            "optimism",
            "polygon",
            "zksync",
            "monad",
            "aptos",
            "fogo",
            "megaeth"
          ],
          "default": "all"
        }
      },
      "tokenListV3SortByParam": {
        "name": "sort_by",
        "description": "Specify the sort field.",
        "in": "query",
        "required": true,
        "schema": {
          "type": "string",
          "enum": [
            "liquidity",
            "market_cap",
            "fdv",
            "recent_listing_time",
            "last_trade_unix_time",
            "holder",
            "volume_1m_usd",
            "volume_5m_usd",
            "volume_30m_usd",
            "volume_1h_usd",
            "volume_2h_usd",
            "volume_4h_usd",
            "volume_8h_usd",
            "volume_24h_usd",
            "volume_7d_usd",
            "volume_30d_usd",
            "volume_1m_change_percent",
            "volume_5m_change_percent",
            "volume_30m_change_percent",
            "volume_1h_change_percent",
            "volume_2h_change_percent",
            "volume_4h_change_percent",
            "volume_8h_change_percent",
            "volume_24h_change_percent",
            "volume_7d_change_percent",
            "volume_30d_change_percent",
            "price_change_1m_percent",
            "price_change_5m_percent",
            "price_change_30m_percent",
            "price_change_1h_percent",
            "price_change_2h_percent",
            "price_change_4h_percent",
            "price_change_8h_percent",
            "price_change_24h_percent",
            "price_change_7d_percent",
            "price_change_30d_percent",
            "trade_1m_count",
            "trade_5m_count",
            "trade_30m_count",
            "trade_1h_count",
            "trade_2h_count",
            "trade_4h_count",
            "trade_8h_count",
            "trade_24h_count",
            "trade_7d_count",
            "trade_30d_count",
            "global_fees_paid"
          ],
          "default": "liquidity"
        }
      },
      "tokenListV3MinLiquidityParam": {
        "name": "min_liquidity",
        "description": "Specify the lower bound of liquidity. Filter for records with liquidity greater than the minimum liquidity value, including those with liquidity equal to the minimum.",
        "in": "query",
        "required": false,
        "schema": {
          "type": "number"
        }
      },
      "tokenListV3MaxLiquidityParam": {
        "name": "max_liquidity",
        "description": "Specify the upper bound of liquidity. Filter for records with liquidity less than the maximum liquidity value, including those with liquidity equal to the maximum.",
        "in": "query",
        "required": false,
        "schema": {
          "type": "number"
        }
      },
      "tokenListV3MinMarketcapParam": {
        "name": "min_market_cap",
        "description": "Specify the lower bound of market cap. Filter for records with market cap greater than the minimum market cap value, including those with market cap equal to the minimum.",
        "in": "query",
        "required": false,
        "schema": {
          "type": "number"
        }
      },
      "tokenListV3MaxMarketcapParam": {
        "name": "max_market_cap",
        "description": "Specify the upper bound of market cap. Filter for records with market cap less than the maximum market cap value, including those with market cap equal to the maximum.",
        "in": "query",
        "required": false,
        "schema": {
          "type": "number"
        }
      },
      "tokenListV3MinFdvParam": {
        "name": "min_fdv",
        "description": "Specify the lower bound of FDV. Filter for records with FDV greater than the minimum FDV value, including those with FDV equal to the minimum.",
        "in": "query",
        "required": false,
        "schema": {
          "type": "number"
        }
      },
      "tokenListV3MaxFdvParam": {
        "name": "max_fdv",
        "description": "Specify the upper bound of FDV. Filter for records with FDV less than the maximum FDV value, including those with FDV equal to the maximum.",
        "in": "query",
        "required": false,
        "schema": {
          "type": "number"
        }
      },
      "tokenListV3MinRecentListingTimeParam": {
        "name": "min_recent_listing_time",
        "description": "Specify the lower bound of recent listing time. Filter for records with recent listing time greater than the minimum recent listing time value, including those with recent listing time equal to the minimum.",
        "in": "query",
        "required": false,
        "schema": {
          "type": "integer",
          "minimum": 1,
          "maximum": 10000000000
        }
      },
      "tokenListV3MaxRecentListingTimeParam": {
        "name": "max_recent_listing_time",
        "description": "Specify the upper bound of recent listing time. Filter for records with recent listing time less than the maximum recent listing time value, including those with recent listing time equal to the maximum.",
        "in": "query",
        "required": false,
        "schema": {
          "type": "integer",
          "minimum": 1,
          "maximum": 10000000000
        }
      },
      "tokenListV3MinLastTradeUnixTimeParam": {
        "name": "min_last_trade_unix_time",
        "description": "Specify the lower bound of last trade time. Filter for records with last trade time greater than the minimum last trade time value, including those with last trade time equal to the minimum.",
        "in": "query",
        "required": false,
        "schema": {
          "type": "integer",
          "minimum": 1,
          "maximum": 10000000000
        }
      },
      "tokenListV3MaxLastTradeUnixTimeParam": {
        "name": "max_last_trade_unix_time",
        "description": "Specify the upper bound of last trade time. Filter for records with last trade time less than the maximum last trade time value, including those with last trade time equal to the maximum.",
        "in": "query",
        "required": false,
        "schema": {
          "type": "integer",
          "minimum": 1,
          "maximum": 10000000000
        }
      },
      "tokenListV3MinTrade1mCountParam": {
        "name": "min_trade_1m_count",
        "description": "Specify the minimum number of trades in the last minute. Filter for records with trade count greater than the minimum trade count value, including those with trade count equal to the minimum.",
        "in": "query",
        "required": false,
        "schema": {
          "type": "integer"
        }
      },
      "tokenListV3MinTrade5mCountParam": {
        "name": "min_trade_5m_count",
        "description": "Specify the minimum number of trades in the 5 minutes. Filter for records with trade count greater than the minimum trade count value, including those with trade count equal to the minimum.",
        "in": "query",
        "required": false,
        "schema": {
          "type": "integer"
        }
      },
      "tokenListV3MinTrade30mCountParam": {
        "name": "min_trade_30m_count",
        "description": "Specify the minimum number of trades in the last 30 minutes. Filter for records with trade count greater than the minimum trade count value, including those with trade count equal to the minimum.",
        "in": "query",
        "required": false,
        "schema": {
          "type": "integer"
        }
      },
      "tokenListV3MinTrade1hCountParam": {
        "name": "min_trade_1h_count",
        "description": "Specify the minimum number of trades in the last hour. Filter for records with trade count greater than the minimum trade count value, including those with trade count equal to the minimum.",
        "in": "query",
        "required": false,
        "schema": {
          "type": "integer"
        }
      },
      "tokenListV3MinTrade2hCountParam": {
        "name": "min_trade_2h_count",
        "description": "Specify the minimum number of trades in the last two hours. Filter for records with trade count greater than the minimum trade count value, including those with trade count equal to the minimum.",
        "in": "query",
        "required": false,
        "schema": {
          "type": "integer"
        }
      },
      "tokenListV3MinTrade4hCountParam": {
        "name": "min_trade_4h_count",
        "description": "Specify the minimum number of trades in the last four hours. Filter for records with trade count greater than the minimum trade count value, including those with trade count equal to the minimum.",
        "in": "query",
        "required": false,
        "schema": {
          "type": "integer"
        }
      },
      "tokenListV3MinTrade8hCountParam": {
        "name": "min_trade_8h_count",
        "description": "Specify the minimum number of trades in the last eight hours. Filter for records with trade count greater than the minimum trade count value, including those with trade count equal to the minimum.",
        "in": "query",
        "required": false,
        "schema": {
          "type": "integer"
        }
      },
      "tokenListV3MinTrade24hCountParam": {
        "name": "min_trade_24h_count",
        "description": "Specify the minimum number of trades in the last 24 hours. Filter for records with trade count greater than the minimum trade count value, including those with trade count equal to the minimum.",
        "in": "query",
        "required": false,
        "schema": {
          "type": "integer"
        }
      },
      "tokenListV3MinTrade7dCountParam": {
        "name": "min_trade_7d_count",
        "description": "Specify the minimum number of trades in the last 7 days. Filter for records with trade count greater than the minimum trade count value, including those with trade count equal to the minimum.",
        "in": "query",
        "required": false,
        "schema": {
          "type": "integer"
        }
      },
      "tokenListV3MinTrade30dCountParam": {
        "name": "min_trade_30d_count",
        "description": "Specify the minimum number of trades in the last 30 days. Filter for records with trade count greater than the minimum trade count value, including those with trade count equal to the minimum.",
        "in": "query",
        "required": false,
        "schema": {
          "type": "integer"
        }
      },
      "tokenListV3MinHolderParam": {
        "name": "min_holder",
        "description": "Specify the minimum number of holders. Filter for records with holder count greater than the minimum holder count value, including those with holder count equal to the minimum.",
        "in": "query",
        "required": false,
        "schema": {
          "type": "integer"
        }
      },
      "tokenListV3MinVolume1mUsdParam": {
        "name": "min_volume_1m_usd",
        "description": "Specify the minimum volume in the last minute. Filter for records with volume greater than the minimum volume value, including those with volume equal to the minimum.",
        "in": "query",
        "required": false,
        "schema": {
          "type": "number"
        }
      },
      "tokenListV3MinVolume1mChangePercentageParam": {
        "name": "min_volume_1m_change_percent",
        "description": "Specify the minimum volume change percentage in the last minute. Filter for records with volume change percentage greater than the minimum volume change percentage value, including those with volume change percentage equal to the minimum.",
        "in": "query",
        "required": false,
        "schema": {
          "type": "number"
        }
      },
      "tokenListV3MinVolume5mUsdParam": {
        "name": "min_volume_5m_usd",
        "description": "Specify the minimum volume in the last 5 minutes. Filter for records with volume greater than the minimum volume value, including those with volume equal to the minimum.",
        "in": "query",
        "required": false,
        "schema": {
          "type": "number"
        }
      },
      "tokenListV3MinVolume5mChangePercentageParam": {
        "name": "min_volume_5m_change_percent",
        "description": "Specify the minimum volume change percentage in the last 5 minutes. Filter for records with volume change percentage greater than the minimum volume change percentage value, including those with volume change percentage equal to the minimum.",
        "in": "query",
        "required": false,
        "schema": {
          "type": "number"
        }
      },
      "tokenListV3MinVolume30mUsdParam": {
        "name": "min_volume_30m_usd",
        "description": "Specify the minimum volume in the last 30 minutes. Filter for records with volume greater than the minimum volume value, including those with volume equal to the minimum.",
        "in": "query",
        "required": false,
        "schema": {
          "type": "number"
        }
      },
      "tokenListV3MinVolume30mChangePercentageParam": {
        "name": "min_volume_30m_change_percent",
        "description": "Specify the minimum volume change percentage in the last 30 minutes. Filter for records with volume change percentage greater than the minimum volume change percentage value, including those with volume change percentage equal to the minimum.",
        "in": "query",
        "required": false,
        "schema": {
          "type": "number"
        }
      },
      "tokenListV3MinVolume1hUsdParam": {
        "name": "min_volume_1h_usd",
        "description": "Specify the minimum volume in the last hour. Filter for records with volume greater than the minimum volume value, including those with volume equal to the minimum.",
        "in": "query",
        "required": false,
        "schema": {
          "type": "number"
        }
      },
      "tokenListV3MinVolume1hChangePercentageParam": {
        "name": "min_volume_1h_change_percent",
        "description": "Specify the minimum volume change percentage in the last hour. Filter for records with volume change percentage greater than the minimum volume change percentage value, including those with volume change percentage equal to the minimum.",
        "in": "query",
        "required": false,
        "schema": {
          "type": "number"
        }
      },
      "tokenListV3MinPriceChange1hPercentageParam": {
        "name": "min_price_change_1h_percent",
        "description": "Specify the minimum price change percentage in the last hour. Filter for records with price change percentage greater than the minimum price change percentage value, including those with price change percentage equal to the minimum.",
        "in": "query",
        "required": false,
        "schema": {
          "type": "number"
        }
      },
      "tokenListV3MinVolume2hUsdParam": {
        "name": "min_volume_2h_usd",
        "description": "Specify the minimum volume in the last two hours. Filter for records with volume greater than the minimum volume value, including those with volume equal to the minimum.",
        "in": "query",
        "required": false,
        "schema": {
          "type": "number"
        }
      },
      "tokenListV3MinVolume2hChangePercentageParam": {
        "name": "min_volume_2h_change_percent",
        "description": "Specify the minimum volume change percentage in the last two hours. Filter for records with volume change percentage greater than the minimum volume change percentage value, including those with volume change percentage equal to the minimum.",
        "in": "query",
        "required": false,
        "schema": {
          "type": "number"
        }
      },
      "tokenListV3MinPriceChange2hPercentageParam": {
        "name": "min_price_change_2h_percent",
        "description": "Specify the minimum price change percentage in the last two hours. Filter for records with price change percentage greater than the minimum price change percentage value, including those with price change percentage equal to the minimum.",
        "in": "query",
        "required": false,
        "schema": {
          "type": "number"
        }
      },
      "tokenListV3MinVolume4hUsdParam": {
        "name": "min_volume_4h_usd",
        "description": "Specify the minimum volume in the last four hours. Filter for records with volume greater than the minimum volume value, including those with volume equal to the minimum.",
        "in": "query",
        "required": false,
        "schema": {
          "type": "number"
        }
      },
      "tokenListV3MinVolume4hChangePercentageParam": {
        "name": "min_volume_4h_change_percent",
        "description": "Specify the minimum volume change percentage in the last four hours. Filter for records with volume change percentage greater than the minimum volume change percentage value, including those with volume change percentage equal to the minimum.",
        "in": "query",
        "required": false,
        "schema": {
          "type": "number"
        }
      },
      "tokenListV3MinPriceChange4hPercentageParam": {
        "name": "min_price_change_4h_percent",
        "description": "Specify the minimum price change percentage in the last four hours. Filter for records with price change percentage greater than the minimum price change percentage value, including those with price change percentage equal to the minimum.",
        "in": "query",
        "required": false,
        "schema": {
          "type": "number"
        }
      },
      "tokenListV3MinVolume8hUsdParam": {
        "name": "min_volume_8h_usd",
        "description": "Specify the minimum volume in the last eight hours. Filter for records with volume greater than the minimum volume value, including those with volume equal to the minimum.",
        "in": "query",
        "required": false,
        "schema": {
          "type": "number"
        }
      },
      "tokenListV3MinVolume8hChangePercentageParam": {
        "name": "min_volume_8h_change_percent",
        "description": "Specify the minimum volume change percentage in the last eight hours. Filter for records with volume change percentage greater than the minimum volume change percentage value, including those with volume change percentage equal to the minimum.",
        "in": "query",
        "required": false,
        "schema": {
          "type": "number"
        }
      },
      "tokenListV3MinPriceChange8hPercentageParam": {
        "name": "min_price_change_8h_percent",
        "description": "Specify the minimum price change percentage in the last eight hours. Filter for records with price change percentage greater than the minimum price change percentage value, including those with price change percentage equal to the minimum.",
        "in": "query",
        "required": false,
        "schema": {
          "type": "number"
        }
      },
      "tokenListV3MinVolume24hUsdParam": {
        "name": "min_volume_24h_usd",
        "description": "Specify the minimum volume in the last 24 hours. Filter for records with volume greater than the minimum volume value, including those with volume equal to the minimum.",
        "in": "query",
        "required": false,
        "schema": {
          "type": "number"
        }
      },
      "tokenListV3MinVolume24hChangePercentageParam": {
        "name": "min_volume_24h_change_percent",
        "description": "Specify the minimum volume change percentage in the last 24 hours. Filter for records with volume change percentage greater than the minimum volume change percentage value, including those with volume change percentage equal to the minimum.",
        "in": "query",
        "required": false,
        "schema": {
          "type": "number"
        }
      },
      "tokenListV3MinVolume7dUsdParam": {
        "name": "min_volume_7d_usd",
        "description": "Specify the minimum volume in the last 7 days. Filter for records with volume greater than the minimum volume value, including those with volume equal to the minimum.",
        "in": "query",
        "required": false,
        "schema": {
          "type": "number"
        }
      },
      "tokenListV3MinVolume7dChangePercentageParam": {
        "name": "min_volume_7d_change_percent",
        "description": "Specify the minimum volume change percentage in the last 7 days. Filter for records with volume change percentage greater than the minimum volume change percentage value, including those with volume change percentage equal to the minimum.",
        "in": "query",
        "required": false,
        "schema": {
          "type": "number"
        }
      },
      "tokenListV3MinVolume30dUsdParam": {
        "name": "min_volume_30d_usd",
        "description": "Specify the minimum volume in the last 30 days. Filter for records with volume greater than the minimum volume value, including those with volume equal to the minimum.",
        "in": "query",
        "required": false,
        "schema": {
          "type": "number"
        }
      },
      "tokenListV3MinVolume30dChangePercentageParam": {
        "name": "min_volume_30d_change_percent",
        "description": "Specify the minimum volume change percentage in the last 30 days. Filter for records with volume change percentage greater than the minimum volume change percentage value, including those with volume change percentage equal to the minimum.",
        "in": "query",
        "required": false,
        "schema": {
          "type": "number"
        }
      },
      "tokenListV3MinPriceChange1mPercentageParam": {
        "name": "min_price_change_1m_percent",
        "description": "Specify the minimum price change percentage in the last  minute. Filter for records with price change percentage greater than the minimum price change percentage value, including those with price change percentage equal to the minimum.",
        "in": "query",
        "required": false,
        "schema": {
          "type": "number"
        }
      },
      "tokenListV3MinPriceChange5mPercentageParam": {
        "name": "min_price_change_5m_percent",
        "description": "Specify the minimum price change percentage in the last 5 minutes. Filter for records with price change percentage greater than the minimum price change percentage value, including those with price change percentage equal to the minimum.",
        "in": "query",
        "required": false,
        "schema": {
          "type": "number"
        }
      },
      "tokenListV3MinPriceChange30mPercentageParam": {
        "name": "min_price_change_30m_percent",
        "description": "Specify the minimum price change percentage in the last 30 minutes. Filter for records with price change percentage greater than the minimum price change percentage value, including those with price change percentage equal to the minimum.",
        "in": "query",
        "required": false,
        "schema": {
          "type": "number"
        }
      },
      "tokenListV3MinPriceChange24hPercentageParam": {
        "name": "min_price_change_24h_percent",
        "description": "Specify the minimum price change percentage in the last 24 hours. Filter for records with price change percentage greater than the minimum price change percentage value, including those with price change percentage equal to the minimum.",
        "in": "query",
        "required": false,
        "schema": {
          "type": "number"
        }
      },
      "tokenListV3MinPriceChange7dPercentageParam": {
        "name": "min_price_change_7d_percent",
        "description": "Specify the minimum price change percentage in the last 7 days. Filter for records with price change percentage greater than the minimum price change percentage value, including those with price change percentage equal to the minimum.",
        "in": "query",
        "required": false,
        "schema": {
          "type": "number"
        }
      },
      "tokenListV3MinPriceChange30dPercentageParam": {
        "name": "min_price_change_30d_percent",
        "description": "Specify the minimum price change percentage in the last 30 days. Filter for records with price change percentage greater than the minimum price change percentage value, including those with price change percentage equal to the minimum.",
        "in": "query",
        "required": false,
        "schema": {
          "type": "number"
        }
      },
      "offsetParam": {
        "name": "offset",
        "description": "Specify the offset for pagination. Filter for records with offset greater than the specified offset value, including those with offset equal to the specified offset.",
        "in": "query",
        "required": false,
        "schema": {
          "type": "integer",
          "default": 0
        }
      },
      "typeTopGainerLoserParam": {
        "name": "type",
        "description": "Specify the type of top gainers/losers. Filter for records with type equal to the specified type.",
        "in": "query",
        "required": true,
        "schema": {
          "type": "string",
          "enum": [
            "yesterday",
            "today",
            "1W",
            "30d",
            "90d"
          ],
          "default": "1W"
        }
      },
      "gainerLoserOptionalMinTradeParam": {
        "name": "min_trade",
        "description": "Minimum number of trades. Must be greater than or equal to 0.",
        "in": "query",
        "required": false,
        "schema": {
          "type": "integer",
          "format": "uint64",
          "minimum": 0
        },
        "example": 10
      },
      "gainerLoserOptionalMaxTradeParam": {
        "name": "max_trade",
        "description": "Maximum number of trades. Must be greater than or equal to min_trade.",
        "in": "query",
        "required": false,
        "schema": {
          "type": "integer",
          "format": "uint64",
          "minimum": 0
        },
        "example": 1000
      },
      "gainerLoserOptionalMinVolumeParam": {
        "name": "min_volume_usd",
        "description": "Minimum trading volume in USD. Must be greater than or equal to 0.",
        "in": "query",
        "required": false,
        "schema": {
          "type": "number",
          "format": "float",
          "minimum": 0
        },
        "example": 10000
      },
      "gainerLoserOptionalMaxVolumeParam": {
        "name": "max_volume_usd",
        "description": "Maximum trading volume in USD. Must be greater than or equal to min_volume_usd.",
        "in": "query",
        "required": false,
        "schema": {
          "type": "number",
          "format": "float",
          "minimum": 0
        },
        "example": 1000000
      },
      "gainerLoserOptionalMinRealizedPnlParam": {
        "name": "min_realized_pnl",
        "description": "Minimum realized PnL in USD. Must be greater than or equal to 1000. Defaults to 1000 when sort_by=realized_pnl and this parameter is not provided.",
        "in": "query",
        "required": false,
        "schema": {
          "type": "number",
          "format": "float"
        },
        "example": -10000
      },
      "gainerLoserOptionalMaxRealizedPnlParam": {
        "name": "max_realized_pnl",
        "description": "Maximum realized PnL in USD. Must be greater than or equal to min_realized_pnl.",
        "in": "query",
        "required": false,
        "schema": {
          "type": "number",
          "format": "float"
        },
        "example": 100000
      },
      "gainerLoserOptionalMinUnrealizedPnlParam": {
        "name": "min_unrealized_pnl",
        "description": "Minimum unrealized PnL in USD. Must be greater than or equal to 1000. Defaults to 1000 when sort_by=unrealized_pnl and this parameter is not provided..",
        "in": "query",
        "required": false,
        "schema": {
          "type": "number",
          "format": "float"
        },
        "example": -10000
      },
      "gainerLoserOptionalMaxUnrealizedPnlParam": {
        "name": "max_unrealized_pnl",
        "description": "Maximum unrealized PnL in USD. Must be greater than or equal to min_unrealized_pnl.",
        "in": "query",
        "required": false,
        "schema": {
          "type": "number",
          "format": "float"
        },
        "example": 100000
      },
      "gainerLoserOptionalMinPnlParam": {
        "name": "min_pnl",
        "description": "Minimum PnL in USD. Must be greater than or equal to 1000. Defaults to 1000 when sort_by=PnL and this parameter is not provided.",
        "in": "query",
        "required": false,
        "schema": {
          "type": "number",
          "format": "float"
        },
        "example": -10000
      },
      "gainerLoserOptionalMaxPnlParam": {
        "name": "max_pnl",
        "description": "Maximum PnL in USD. Must be greater than or equal to min_pnl.",
        "in": "query",
        "required": false,
        "schema": {
          "type": "number",
          "format": "float"
        },
        "example": 100000
      },
      "typeMintBurnTxsParam": {
        "name": "type",
        "description": "Specify the type of mint/burn transactions. Filter for records with type equal to the specified type.",
        "in": "query",
        "required": true,
        "schema": {
          "type": "string",
          "enum": [
            "all",
            "mint",
            "burn"
          ],
          "default": "all"
        }
      },
      "afterTimeMintBurnTxsParam": {
        "name": "after_time",
        "description": "Specify the lower bound of time. Filter for records with time greater than the specified after time value, excluding those with time equal to the specified after time.",
        "in": "query",
        "required": false,
        "schema": {
          "type": "integer"
        }
      },
      "beforeTimeMintBurnTxsParam": {
        "name": "before_time",
        "description": "Specify the upper bound of time. Filter for records with time less than the specified before time value, excluding those with time equal to the specified before time.",
        "in": "query",
        "required": false,
        "schema": {
          "type": "integer"
        }
      },
      "sortByMintBurnTxsParam": {
        "name": "sort_by",
        "description": "Specify the sort order for mint/burn transactions. Filter for records with sort order equal to the specified sort order.",
        "in": "query",
        "required": true,
        "schema": {
          "type": "string",
          "enum": [
            "block_time"
          ],
          "default": "block_time"
        }
      },
      "offset10kParam": {
        "name": "offset",
        "description": "Pagination start position. offset + limit <= 10000",
        "in": "query",
        "required": false,
        "schema": {
          "type": "integer",
          "default": 0,
          "minimum": 0,
          "maximum": 10000
        }
      },
      "offset9999Param": {
        "name": "offset",
        "description": "Make sure offset + limit <= 10000",
        "in": "query",
        "required": false,
        "schema": {
          "type": "integer",
          "default": 0,
          "minimum": 0,
          "maximum": 9999
        }
      },
      "offset50kParam": {
        "name": "offset",
        "description": "Make sure offset + limit <= 50000",
        "in": "query",
        "required": false,
        "schema": {
          "type": "integer",
          "default": 0,
          "minimum": 0,
          "maximum": 50000
        }
      },
      "limitParam": {
        "name": "limit",
        "description": "Number of items per page.",
        "in": "query",
        "required": false,
        "schema": {
          "type": "integer",
          "default": 50,
          "minimum": 1,
          "maximum": 50
        }
      },
      "limit10Param": {
        "name": "limit",
        "description": "Number of items per page.",
        "in": "query",
        "required": false,
        "schema": {
          "type": "integer",
          "default": 10,
          "minimum": 1,
          "maximum": 10
        }
      },
      "limit20Param": {
        "name": "limit",
        "description": "Number of items per page.",
        "in": "query",
        "required": false,
        "schema": {
          "type": "integer",
          "default": 20,
          "minimum": 1,
          "maximum": 20
        }
      },
      "limit20Default10Param": {
        "name": "limit",
        "description": "Number of items per page.",
        "in": "query",
        "required": false,
        "schema": {
          "type": "integer",
          "default": 10,
          "minimum": 1,
          "maximum": 20
        }
      },
      "limit50Default10Param": {
        "name": "limit",
        "description": "Number of items per page.",
        "in": "query",
        "required": false,
        "schema": {
          "type": "integer",
          "default": 10,
          "minimum": 1,
          "maximum": 50
        }
      },
      "limit100Param": {
        "name": "limit",
        "description": "Number of items per page.",
        "in": "query",
        "required": false,
        "schema": {
          "type": "integer",
          "default": 100,
          "minimum": 1,
          "maximum": 100
        }
      },
      "offset1000Param": {
        "name": "offset",
        "description": "Pagination start position. Make sure offset + limit <= 1000.",
        "in": "query",
        "required": false,
        "schema": {
          "type": "integer",
          "default": 0,
          "minimum": 0,
          "maximum": 1000
        }
      },
      "limit100Default70Param": {
        "name": "limit",
        "description": "Number of items per page. Make sure offset + limit <= 1000.",
        "in": "query",
        "required": false,
        "schema": {
          "type": "integer",
          "default": 70,
          "minimum": 1,
          "maximum": 100
        }
      },
      "limit500Param": {
        "name": "limit",
        "description": "Number of items per page.",
        "in": "query",
        "required": false,
        "schema": {
          "type": "integer",
          "default": 100,
          "minimum": 1,
          "maximum": 500
        }
      },
      "limit5000Param": {
        "name": "limit",
        "description": "Number of items per page.",
        "in": "query",
        "required": false,
        "schema": {
          "type": "integer",
          "default": 5000,
          "minimum": 1,
          "maximum": 5000
        }
      },
      "scrollIdParam": {
        "name": "scroll_id",
        "description": "Assign scroll_id to continue fetching data from previous scroll request",
        "in": "query",
        "required": false,
        "schema": {
          "type": "string"
        }
      },
      "timeFromParam": {
        "name": "time_from",
        "description": "Specify the start time using unix timestamps in seconds",
        "in": "query",
        "required": true,
        "schema": {
          "type": "integer",
          "minimum": 0,
          "maximum": 10000000000
        },
        "example": 1726700000
      },
      "timeToParam": {
        "name": "time_to",
        "description": "Specify the end time using unix timestamps in seconds",
        "in": "query",
        "required": true,
        "schema": {
          "type": "integer",
          "minimum": 0,
          "maximum": 10000000000
        },
        "example": 1726704000
      },
      "timeToOptionalParam": {
        "name": "time_to",
        "description": "Specify the end time using unix timestamps in seconds",
        "in": "query",
        "required": false,
        "schema": {
          "type": "integer",
          "minimum": 1,
          "maximum": 10000000000
        },
        "example": 1726704000
      },
      "beforeTimeParam": {
        "name": "before_time",
        "description": "Specify the time seeked before using unix timestamps in seconds",
        "in": "query",
        "required": false,
        "schema": {
          "type": "integer",
          "minimum": 1,
          "maximum": 10000000000
        },
        "example": 1741531133
      },
      "afterTimeParam": {
        "name": "after_time",
        "description": "Specify the time seeked after using unix timestamps in seconds",
        "in": "query",
        "required": false,
        "schema": {
          "type": "integer",
          "minimum": 1,
          "maximum": 10000000000
        },
        "example": 1741444733
      },
      "beforeBlockNumberParam": {
        "name": "before_block_number",
        "description": "Specify the upper bound of block_number for the filter range, excluding values equal to before_block_number.",
        "in": "query",
        "required": false,
        "schema": {
          "type": "integer",
          "minimum": 1,
          "maximum": 9007199254740991
        },
        "example": 1000000
      },
      "afterBlockNumberParam": {
        "name": "after_block_number",
        "description": "Specify the lower bound of block_number for the filter range, excluding values equal to after_block_number.",
        "in": "query",
        "required": false,
        "schema": {
          "type": "integer",
          "minimum": 1,
          "maximum": 9007199254740991
        },
        "example": 1000000
      },
      "txTypeParam": {
        "name": "tx_type",
        "in": "query",
        "required": false,
        "schema": {
          "type": "string",
          "enum": [
            "swap",
            "add",
            "remove",
            "all"
          ],
          "default": "swap"
        }
      },
      "txTypeDefaultAllParam": {
        "name": "tx_type",
        "in": "query",
        "required": false,
        "schema": {
          "type": "string",
          "enum": [
            "swap",
            "add",
            "remove",
            "all"
          ]
        }
      },
      "tokenTxsV3TxTypeParam": {
        "name": "tx_type",
        "in": "query",
        "required": false,
        "schema": {
          "type": "string",
          "enum": [
            "swap",
            "buy",
            "sell",
            "add",
            "remove",
            "all"
          ],
          "default": "swap"
        }
      },
      "walletApiLimitParam": {
        "name": "limit",
        "description": "Limit the number of records returned.",
        "in": "query",
        "required": false,
        "schema": {
          "type": "integer",
          "default": 100,
          "minimum": 1,
          "maximum": 100
        }
      },
      "walletApiBeforeParam": {
        "name": "before",
        "description": "A transaction hash to traverse starting from. Only works with Solana.",
        "in": "query",
        "required": false,
        "schema": {
          "type": "string"
        }
      },
      "timeFrameParam": {
        "name": "time_frame",
        "in": "query",
        "required": true,
        "schema": {
          "type": "string",
          "enum": [
            "30m",
            "1h",
            "2h",
            "4h",
            "6h",
            "8h",
            "12h",
            "24h",
            "2d",
            "3d",
            "7d",
            "14d",
            "30d",
            "60d",
            "90d",
            "all_time"
          ],
          "default": "24h"
        }
      },
      "topTradersWalletTagsParam": {
        "name": "wallet_tags",
        "description": "Filter Solana traders by wallet tags. Supports comma-separated values.",
        "in": "query",
        "required": false,
        "schema": {
          "type": "array",
          "items": {
            "type": "string",
            "enum": [
              "dev",
              "bundler",
              "sniper",
              "insider",
              "smart_trader"
            ]
          }
        },
        "style": "form",
        "explode": false,
        "example": [
          "dev",
          "smart_trader"
        ]
      },
      "topTradersHolderInfosParam": {
        "name": "get_holders_networth",
        "description": "Solana only. When true, the response includes netWorth, solBalance, and funding for each trader. This may make the response slightly slower than when disabled.",
        "in": "query",
        "required": false,
        "schema": {
          "type": "boolean",
          "default": false
        }
      },
      "topTradersMinTradeParam": {
        "name": "min_trade",
        "description": "Filter top traders with trade count greater than or equal to this value. Not supported when sort_by=hold_volume.",
        "in": "query",
        "required": false,
        "schema": {
          "type": "number"
        }
      },
      "topTradersMaxTradeParam": {
        "name": "max_trade",
        "description": "Filter top traders with trade count less than or equal to this value. Not supported when sort_by=hold_volume.",
        "in": "query",
        "required": false,
        "schema": {
          "type": "number"
        }
      },
      "topTradersMinVolumeParam": {
        "name": "min_volume",
        "description": "Filter top traders with token volume greater than or equal to this value. On Solana with ui_amount_mode=scaled, this value uses scaled UI amount. Not supported when sort_by=hold_volume.",
        "in": "query",
        "required": false,
        "schema": {
          "type": "number"
        }
      },
      "topTradersMaxVolumeParam": {
        "name": "max_volume",
        "description": "Filter top traders with token volume less than or equal to this value. On Solana with ui_amount_mode=scaled, this value uses scaled UI amount. Not supported when sort_by=hold_volume.",
        "in": "query",
        "required": false,
        "schema": {
          "type": "number"
        }
      },
      "topTradersMinVolumeUsdParam": {
        "name": "min_volume_usd",
        "description": "Filter top traders with USD volume greater than or equal to this value. Not supported when sort_by=hold_volume.",
        "in": "query",
        "required": false,
        "schema": {
          "type": "number"
        }
      },
      "topTradersMaxVolumeUsdParam": {
        "name": "max_volume_usd",
        "description": "Filter top traders with USD volume less than or equal to this value. Not supported when sort_by=hold_volume.",
        "in": "query",
        "required": false,
        "schema": {
          "type": "number"
        }
      },
      "topTradersMinRealizedPnlParam": {
        "name": "min_realized_pnl",
        "description": "Filter top traders with realized PnL greater than or equal to this value. Not supported when sort_by=hold_volume.",
        "in": "query",
        "required": false,
        "schema": {
          "type": "number"
        }
      },
      "topTradersMaxRealizedPnlParam": {
        "name": "max_realized_pnl",
        "description": "Filter top traders with realized PnL less than or equal to this value. Not supported when sort_by=hold_volume.",
        "in": "query",
        "required": false,
        "schema": {
          "type": "number"
        }
      },
      "topTradersMinUnrealizedPnlParam": {
        "name": "min_unrealized_pnl",
        "description": "Filter top traders with unrealized PnL greater than or equal to this value. Not supported when sort_by=hold_volume.",
        "in": "query",
        "required": false,
        "schema": {
          "type": "number"
        }
      },
      "topTradersMaxUnrealizedPnlParam": {
        "name": "max_unrealized_pnl",
        "description": "Filter top traders with unrealized PnL less than or equal to this value. Not supported when sort_by=hold_volume.",
        "in": "query",
        "required": false,
        "schema": {
          "type": "number"
        }
      },
      "tokenHolderModeParam": {
        "name": "mode",
        "description": "Solana only. `token_account` returns one item per token account and keeps the legacy response. `wallet` groups token accounts by owner wallet and returns wallet-level holder stats.",
        "in": "query",
        "required": false,
        "schema": {
          "type": "string",
          "enum": [
            "token_account",
            "wallet"
          ],
          "default": "token_account"
        }
      },
      "tokenHolderInfosParam": {
        "name": "get_holder_infos",
        "description": "Solana only. Only available when mode=wallet. When true, the response includes netWorth, solBalance, and funding for each holder. This may make the response slightly slower than when disabled.",
        "in": "query",
        "required": false,
        "schema": {
          "type": "boolean",
          "default": false
        }
      },
      "addressTypeParam": {
        "name": "address_type",
        "in": "query",
        "required": true,
        "schema": {
          "type": "string",
          "enum": [
            "token",
            "pair"
          ]
        }
      },
      "unixtimeParam": {
        "name": "unixtime",
        "in": "query",
        "required": false,
        "schema": {
          "type": "integer",
          "minimum": 0,
          "maximum": 10000000000
        },
        "example": 1726700000
      },
      "memePlatformEnabledParam": {
        "name": "meme_platform_enabled",
        "description": "Enable to receive token new listing from meme platforms (eg: pump.fun). This filter only supports Solana.",
        "in": "query",
        "required": false,
        "schema": {
          "type": "boolean",
          "enum": [
            true,
            false
          ],
          "default": false
        }
      },
      "keywordSearchParam": {
        "name": "keyword",
        "in": "query",
        "schema": {
          "type": "string"
        },
        "example": "sol"
      },
      "jupStrictFilterSearchParam": {
        "name": "verify_token",
        "description": "A filter to retrieve tokens based on their verification status (supported on Solana).",
        "in": "query",
        "schema": {
          "type": "boolean",
          "enum": [
            true,
            false
          ]
        },
        "example": true
      },
      "sourceFilterSearchParam": {
        "name": "markets",
        "description": "A comma-separated list of market sources to filter results (supported on Solana). Available options: ['Raydium', 'Raydium CP', 'Raydium Clamm', 'Meteora', 'Meteora DLMM', 'Fluxbeam', 'Pump.fun', 'OpenBook', 'OpenBook V2', 'Orca'].",
        "in": "query",
        "schema": {
          "type": "string"
        },
        "example": "Raydium, Pump.fun"
      },
      "targetSearchParam": {
        "name": "target",
        "description": "An option to search tokens based on their expected results as token, market, or both.",
        "in": "query",
        "schema": {
          "type": "string",
          "enum": [
            "all",
            "token",
            "market"
          ],
          "default": "all"
        }
      },
      "searchModeSearchParam": {
        "name": "search_mode",
        "description": "An option to search tokens with exact match or partially match.",
        "in": "query",
        "schema": {
          "type": "string",
          "enum": [
            "exact",
            "fuzzy"
          ],
          "default": "exact"
        }
      },
      "searchBySearchParam": {
        "name": "search_by",
        "description": "An option to search tokens by symbol, name, or both.",
        "in": "query",
        "schema": {
          "type": "string",
          "enum": [
            "combination",
            "address",
            "name",
            "symbol"
          ],
          "default": "symbol"
        }
      },
      "timeframeDurationAlltimeTrades": {
        "name": "time_frame",
        "description": "Time interval (Example: '24h')",
        "in": "query",
        "required": true,
        "schema": {
          "type": "string",
          "enum": [
            "1m",
            "5m",
            "30m",
            "1h",
            "2h",
            "4h",
            "8h",
            "24h",
            "3d",
            "7d",
            "14d",
            "30d",
            "90d",
            "180d",
            "1y",
            "alltime"
          ],
          "default": "24h"
        }
      },
      "listTimeFrameParam": {
        "name": "frames",
        "description": "A list of time frames seprated by comma (,). List of supported time frames: 1m, 5m, 30m, 1h, 2h, 4h, 8h, 24h. Only support Solana, Base.",
        "in": "query",
        "required": false,
        "schema": {
          "type": "string"
        },
        "examples": {
          "single": {
            "value": "1m"
          },
          "double": {
            "value": "1m,5m"
          },
          "multiple": {
            "value": "1m,30m,24h"
          }
        }
      },
      "listTimeFrameDynamicParam": {
        "name": "frames",
        "description": "A list of custom time intervals separated by comma (,). Users can pass up to 8 intervals.\nRules:\n- Minute intervals: from 1m up to 1440m (e.g. 1m,15m,16m,17m,89m,90m,92m,1440m ...).\n- Second intervals: must be multiples of 5s, from 5s up to 3600s (e.g. 5s,10s,15s,90s,3600s   ...).\n- Hours intervals: only support (1h 2h 4h 8h 24h)\n",
        "in": "query",
        "required": false,
        "schema": {
          "type": "string"
        },
        "examples": {
          "minute_intervals": {
            "value": "1m,15m,30m,90m,1000m,1440m"
          },
          "second_intervals": {
            "value": "5s,15s,30s,1000s,3600s"
          },
          "mixed": {
            "value": "5s,300s,30m,90m,1440m"
          }
        }
      },
      "listTimeFramePriceStatsParam": {
        "name": "list_timeframe",
        "description": "A list of time frames seprated by comma (,). List of supported time frames: 1m, 5m, 30m, 1h, 2h, 4h, 8h, 24h, 2d, 3d, 7d",
        "in": "query",
        "required": false,
        "schema": {
          "type": "string"
        },
        "examples": {
          "single": {
            "value": "1m"
          },
          "double": {
            "value": "1m,5m"
          },
          "multiple": {
            "value": "1m,30m,24h"
          }
        }
      },
      "listTimeFrameGlobalFeesPaidParam": {
        "name": "interval",
        "description": "A list of intervals separated by comma (,). Supported values: alltime, 24h, 8h, 4h, 2h, 1h, 30m, 15m, 5m, 1m. Maximum 3 timeframes per request.",
        "in": "query",
        "required": false,
        "schema": {
          "type": "string"
        },
        "examples": {
          "single": {
            "value": "alltime"
          },
          "double": {
            "value": "5m,alltime"
          },
          "triple": {
            "value": "15m,24h,alltime"
          }
        }
      },
      "walletBalanceTokenTypeParam": {
        "name": "type",
        "in": "query",
        "schema": {
          "type": "string",
          "enum": [
            "SOL",
            "SPL"
          ]
        }
      },
      "walletBalanceChangeTypeParam": {
        "name": "change_type",
        "in": "query",
        "schema": {
          "type": "string",
          "enum": [
            "increase",
            "decrease"
          ]
        }
      },
      "limit100Default20Param": {
        "name": "limit",
        "in": "query",
        "required": false,
        "schema": {
          "type": "integer",
          "default": 20,
          "minimum": 1,
          "maximum": 100
        }
      },
      "limit100Default10Param": {
        "name": "limit",
        "in": "query",
        "required": false,
        "schema": {
          "type": "integer",
          "default": 10,
          "minimum": 1,
          "maximum": 100
        }
      },
      "limit20Default20Param": {
        "name": "limit",
        "in": "query",
        "required": false,
        "schema": {
          "type": "integer",
          "default": 20,
          "minimum": 1,
          "maximum": 20
        }
      },
      "walletCurrentNetWorthFilterValueParam": {
        "name": "filter_value",
        "description": "Minimum value threshold; returns tokens with value ≥ this (optional, no default).",
        "in": "query",
        "schema": {
          "type": "number"
        },
        "example": "12.5"
      },
      "walletCurrentNetWorthIntervalParam": {
        "name": "interval",
        "in": "query",
        "schema": {
          "type": "string",
          "enum": [
            "1h",
            "6h",
            "24h",
            "2d",
            "3d",
            "7d"
          ]
        }
      },
      "accountAddressParam": {
        "name": "address",
        "description": "The address of the account.",
        "in": "query",
        "required": true,
        "schema": {
          "type": "string"
        },
        "examples": {
          "solana": {
            "value": "eJpBLoF3bgXpzjxqJRAvMchjEo4EqdAmiQh3ASmEtZT"
          }
        }
      },
      "walletAddressParam": {
        "name": "wallet",
        "description": "The wallet of the account.",
        "in": "query",
        "required": true,
        "schema": {
          "type": "string"
        },
        "examples": {
          "solana": {
            "value": "eJpBLoF3bgXpzjxqJRAvMchjEo4EqdAmiQh3ASmEtZT"
          }
        }
      },
      "optionalTokenAddressParam": {
        "name": "token_address",
        "description": "The address of the token contract.",
        "in": "query",
        "schema": {
          "type": "string"
        },
        "examples": {
          "wsol": {
            "value": "So11111111111111111111111111111111111111112"
          },
          "solana": {
            "value": "DezXAZ8z7PnrnRJjz3wXBoRgixCa6xjnB7YaB1pPB263"
          },
          "ethereum": {
            "value": "0x95ad61b0a150d79219dcf64e1e6cc01f0b64c4ce"
          },
          "solana_scaled_ui": {
            "value": "Xsc9qvGR1efVDFGLrVsmkzv3qi45LTBjeUKSPmx9qEh"
          }
        }
      },
      "optionalTimeFromParam": {
        "name": "time_from",
        "description": "Specify the start time using unix timestamps in seconds",
        "in": "query",
        "required": false,
        "schema": {
          "type": "integer",
          "minimum": 0,
          "maximum": 10000000000
        },
        "example": 1726700000
      },
      "optionalTimeToParam": {
        "name": "time_to",
        "description": "Specify the end time using unix timestamps in seconds",
        "in": "query",
        "required": false,
        "schema": {
          "type": "integer",
          "minimum": 0,
          "maximum": 10000000000
        },
        "example": 1726704000
      },
      "currentNetworkSortByParam": {
        "name": "sort_by",
        "description": "Specify the sort field.",
        "in": "query",
        "required": false,
        "schema": {
          "type": "string",
          "enum": [
            "value"
          ],
          "default": "value"
        }
      },
      "currentNetworkFlagsParam": {
        "name": "flags",
        "in": "query",
        "description": "Modifiers that change result behavior (default: empty; excludes low-liquidity tokens < $100, use include_low_liquidity to include them).",
        "required": false,
        "style": "form",
        "explode": true,
        "schema": {
          "type": "array",
          "items": {
            "type": "string",
            "enum": [
              "include_low_liquidity"
            ]
          },
          "example": [
            "include_low_liquidity"
          ]
        }
      },
      "onlyOffset10kParam": {
        "name": "offset",
        "description": "Make sure offset <= 10000",
        "in": "query",
        "required": false,
        "schema": {
          "type": "integer",
          "default": 0,
          "minimum": 0,
          "maximum": 10000
        }
      },
      "uiAmountModeParam": {
        "name": "ui_amount_mode",
        "description": "Indicate whether to use the scaled amount for scaled ui amount tokens. Only support solana",
        "in": "query",
        "required": false,
        "schema": {
          "type": "string",
          "enum": [
            "raw",
            "scaled",
            "both"
          ],
          "default": "raw"
        }
      },
      "uiAmountModeSplitParam": {
        "name": "ui_amount_mode",
        "description": "Indicate whether to use the scaled amount for scaled ui amount tokens. Only support solana",
        "in": "query",
        "required": false,
        "schema": {
          "type": "string",
          "enum": [
            "raw",
            "scaled"
          ],
          "default": "scaled"
        }
      },
      "ohlcvModeParam": {
        "name": "mode",
        "description": "Select either range (time range) or count (number of candles). If mode is count, time_from and time_to params must exist but not both. Default: range",
        "in": "query",
        "required": false,
        "schema": {
          "type": "string",
          "enum": [
            "range",
            "count"
          ]
        }
      },
      "ohlcvDisplayModeParam": {
        "name": "chart_type",
        "description": "Display OHLC as token price or market cap. mcap mode only applies to token OHLCV on Solana and falls back to price if supply is unavailable. Default: price",
        "in": "query",
        "required": false,
        "schema": {
          "type": "string",
          "enum": [
            "price",
            "mcap"
          ],
          "default": "price"
        }
      },
      "ohlcvCountLimitParam": {
        "name": "count_limit",
        "description": "Specify the maximum candles returned. Only used with mode \"count\". Default: 5000",
        "in": "query",
        "required": false,
        "schema": {
          "type": "integer",
          "minimum": 0,
          "maximum": 5000
        }
      },
      "ohlcvPaddingParam": {
        "name": "padding",
        "description": "Indicate whether to use padding on empty candles. Default: false",
        "in": "query",
        "required": false,
        "schema": {
          "type": "boolean",
          "enum": [
            true,
            false
          ]
        }
      },
      "ohlcvOutlierParam": {
        "name": "outlier",
        "description": "Indicate whether to allow outliers exist in the results. Default: true",
        "in": "query",
        "required": false,
        "schema": {
          "type": "boolean",
          "enum": [
            true,
            false
          ]
        }
      },
      "ohlcvInversionParam": {
        "name": "inversion",
        "description": "Indicate whether to invert the base/quote on pair. Default: false",
        "in": "query",
        "required": false,
        "schema": {
          "type": "boolean",
          "enum": [
            true,
            false
          ]
        }
      },
      "memeListSourceParam": {
        "name": "source",
        "description": "Source name of the meme token. Default to all",
        "in": "query",
        "required": false,
        "schema": {
          "type": "string",
          "enum": [
            "all",
            "pump_dot_fun",
            "moonshot",
            "raydium_launchlab",
            "meteora_dynamic_bonding_curve",
            "four.meme",
            "nad.fun",
            "flap",
            "something",
            "lfj_token_mill"
          ],
          "default": "all"
        }
      },
      "memeCreatorParam": {
        "name": "creator",
        "description": "Creator of the meme token",
        "in": "query",
        "required": false,
        "schema": {
          "type": "string"
        },
        "examples": {
          "creator": {
            "value": "F2Q7h7KSmHqE4bW2xCU1Qmeicge1UZdjZAJZnU1736wU"
          }
        }
      },
      "memeListPlatformIdParam": {
        "name": "platform_id",
        "description": "The program address of the meme platform.",
        "in": "query",
        "required": false,
        "schema": {
          "type": "string"
        },
        "examples": {
          "solana_pump_fun": {
            "value": "6EF8rrecthR5Dkzon8Nwu78hRvfCKubJ14M5uBEwF6P"
          }
        }
      },
      "memeListMinProgressPercentParam": {
        "name": "min_progress_percent",
        "in": "query",
        "required": false,
        "schema": {
          "type": "number",
          "minimum": 0,
          "exclusiveMinimum": true,
          "maximum": 100
        }
      },
      "memeListMaxProgressPercentParam": {
        "name": "max_progress_percent",
        "in": "query",
        "required": false,
        "schema": {
          "type": "number",
          "minimum": 0,
          "exclusiveMinimum": true,
          "maximum": 100,
          "exclusiveMaximum": true
        }
      },
      "memeListMinGraduatedTimeParam": {
        "name": "min_graduated_time",
        "in": "query",
        "required": false,
        "schema": {
          "type": "number",
          "minimum": 0,
          "exclusiveMinimum": true,
          "maximum": 10000000000
        }
      },
      "memeListMaxGraduatedTimeParam": {
        "name": "max_graduated_time",
        "in": "query",
        "required": false,
        "schema": {
          "type": "number",
          "minimum": 0,
          "exclusiveMinimum": true,
          "maximum": 10000000000
        }
      },
      "memeListMinCreationTimeParam": {
        "name": "min_creation_time",
        "in": "query",
        "required": false,
        "schema": {
          "type": "number",
          "minimum": 0,
          "exclusiveMinimum": true,
          "maximum": 10000000000
        }
      },
      "memeListMaxCreationTimeParam": {
        "name": "max_creation_time",
        "in": "query",
        "required": false,
        "schema": {
          "type": "number",
          "minimum": 0,
          "exclusiveMinimum": true,
          "maximum": 10000000000
        }
      },
      "memeListGraduatedParam": {
        "name": "graduated",
        "description": "Filter meme tokens which already graduated",
        "in": "query",
        "required": false,
        "schema": {
          "type": "boolean"
        }
      },
      "memeListSortByParam": {
        "name": "sort_by",
        "in": "query",
        "required": true,
        "schema": {
          "type": "string",
          "enum": [
            "progress_percent",
            "graduated_time",
            "creation_time",
            "liquidity",
            "market_cap",
            "fdv",
            "recent_listing_time",
            "last_trade_unix_time",
            "holder",
            "volume_1m_usd",
            "volume_5m_usd",
            "volume_30m_usd",
            "volume_1h_usd",
            "volume_2h_usd",
            "volume_4h_usd",
            "volume_8h_usd",
            "volume_24h_usd",
            "volume_7d_usd",
            "volume_30d_usd",
            "volume_1m_change_percent",
            "volume_5m_change_percent",
            "volume_30m_change_percent",
            "volume_1h_change_percent",
            "volume_2h_change_percent",
            "volume_4h_change_percent",
            "volume_8h_change_percent",
            "volume_24h_change_percent",
            "volume_7d_change_percent",
            "volume_30d_change_percent",
            "price_change_1m_percent",
            "price_change_5m_percent",
            "price_change_30m_percent",
            "price_change_1h_percent",
            "price_change_2h_percent",
            "price_change_4h_percent",
            "price_change_8h_percent",
            "price_change_24h_percent",
            "price_change_7d_percent",
            "price_change_30d_percent",
            "trade_1m_count",
            "trade_5m_count",
            "trade_30m_count",
            "trade_1h_count",
            "trade_2h_count",
            "trade_4h_count",
            "trade_8h_count",
            "trade_24h_count",
            "trade_7d_count",
            "trade_30d_count",
            "global_fees_paid"
          ],
          "default": "progress_percent"
        }
      },
      "memeTokenAddressParam": {
        "name": "address",
        "description": "Address of a meme token",
        "in": "query",
        "required": true,
        "schema": {
          "type": "string",
          "default": "HHuLN58RAJoyNxwYte8NdEyV7dhQzDCLXDmTraHspump"
        },
        "examples": {
          "solana": {
            "value": "HHuLN58RAJoyNxwYte8NdEyV7dhQzDCLXDmTraHspump"
          }
        }
      },
      "tokenListV3MinGlobalFeesPaidParam": {
        "name": "min_global_fees_paid",
        "description": "Specify the minimum all-time global fee paid amount in SOL.",
        "in": "query",
        "required": false,
        "schema": {
          "type": "number"
        }
      },
      "netWorthCount90Default7Param": {
        "name": "count",
        "in": "query",
        "required": false,
        "schema": {
          "type": "integer",
          "default": 7,
          "minimum": 1,
          "maximum": 90
        }
      },
      "networthDirection": {
        "name": "direction",
        "in": "query",
        "required": false,
        "schema": {
          "type": "string",
          "enum": [
            "back",
            "forward"
          ],
          "default": "back"
        }
      },
      "networthType": {
        "name": "type",
        "in": "query",
        "required": false,
        "description": "Time granularity used to group the returned net worth data. Use `1d` for daily data with full historical coverage, or `1h` for hourly data limited to the last 7 days.",
        "schema": {
          "type": "string",
          "enum": [
            "1h",
            "1d"
          ],
          "default": "1d"
        }
      },
      "networthTimeOptional": {
        "name": "time",
        "description": "Time get net worth. Default is current time.",
        "in": "query",
        "required": false,
        "schema": {
          "type": "string"
        },
        "example": "2025-07-30 02:00:00"
      },
      "liquidityOhlcTimeParam": {
        "name": "time",
        "description": "Unix timestamp in seconds used as the anchor time for the liquidity candle window. Defaults to the latest available candle.",
        "in": "query",
        "required": false,
        "schema": {
          "type": "integer",
          "minimum": 0,
          "maximum": 10000000000
        },
        "example": 1750950840
      },
      "liquidityOhlcDirectionParam": {
        "name": "direction",
        "description": "Direction to query candles from the anchor time. Use back for older candles and forward for newer candles.",
        "in": "query",
        "required": false,
        "schema": {
          "type": "string",
          "enum": [
            "back",
            "forward"
          ],
          "default": "back"
        },
        "example": "back"
      },
      "liquidityOhlcCountParam": {
        "name": "count",
        "description": "Maximum number of liquidity candles returned. Defaults to 100 and is capped at 100.",
        "in": "query",
        "required": false,
        "schema": {
          "type": "integer",
          "default": 100,
          "minimum": 1,
          "maximum": 100
        },
        "example": 100
      },
      "liquidityOhlcResolutionParam": {
        "name": "resolution",
        "description": "Liquidity candle resolution.",
        "in": "query",
        "required": false,
        "schema": {
          "type": "string",
          "enum": [
            "1m",
            "4h",
            "1D"
          ],
          "default": "1m"
        }
      },
      "tokenAddressesParam": {
        "name": "token_addresses",
        "description": "List of token address.",
        "in": "query",
        "required": true,
        "schema": {
          "type": "string"
        },
        "examples": {
          "solana": {
            "value": "pumpsAkNcb1nZs89Uees3DyRzUGxjqThuzF3A8LVVfn,So11111111111111111111111111111111111111112"
          }
        }
      },
      "tokenAddressV2Param": {
        "name": "token_address",
        "description": "The address of the token contract.",
        "in": "query",
        "required": true,
        "schema": {
          "type": "string"
        },
        "examples": {
          "solana": {
            "value": "DezXAZ8z7PnrnRJjz3wXBoRgixCa6xjnB7YaB1pPB263"
          },
          "ethereum": {
            "value": "0x95ad61b0a150d79219dcf64e1e6cc01f0b64c4ce"
          },
          "solana_scaled_ui": {
            "value": "Xsc9qvGR1efVDFGLrVsmkzv3qi45LTBjeUKSPmx9qEh"
          }
        }
      },
      "transferFromWalletParam": {
        "name": "from_wallet",
        "description": "The address of the wallet",
        "in": "query",
        "required": false,
        "schema": {
          "type": "string"
        },
        "examples": {
          "solana": {
            "value": "eJpBLoF3bgXpzjxqJRAvMchjEo4EqdAmiQh3ASmEtZT"
          }
        }
      },
      "transferToWalletParam": {
        "name": "to_wallet",
        "description": "The address of the wallet",
        "in": "query",
        "required": false,
        "schema": {
          "type": "string"
        },
        "examples": {
          "solana": {
            "value": "eJpBLoF3bgXpzjxqJRAvMchjEo4EqdAmiQh3ASmEtZT"
          }
        }
      },
      "transferFlowParam": {
        "name": "flow",
        "description": "A list transfer flow: in, out",
        "in": "query",
        "required": false,
        "schema": {
          "type": "string"
        },
        "example": "in"
      },
      "transferActionParam": {
        "name": "action",
        "description": "A list transfer action: transfer, set_authority, mint, burn",
        "in": "query",
        "required": false,
        "schema": {
          "type": "string"
        },
        "example": "transfer"
      },
      "optionalFromAmountParam": {
        "name": "from_amount",
        "description": "Minimum amount filter, support up to 3 decimals",
        "in": "query",
        "required": false,
        "schema": {
          "type": "number"
        },
        "example": 13.111
      },
      "optionalToAmountParam": {
        "name": "to_amount",
        "description": "Minimum amount filter, support up to 3 decimals",
        "in": "query",
        "required": false,
        "schema": {
          "type": "number"
        },
        "example": 13.111
      },
      "optionalFromValueParam": {
        "name": "from_value",
        "description": "Minimum value filter, support up to 3 decimals",
        "in": "query",
        "required": false,
        "schema": {
          "type": "number"
        },
        "example": 13.111
      },
      "optionalToValueParam": {
        "name": "to_value",
        "description": "Minimum value filter, support up to 3 decimals",
        "in": "query",
        "required": false,
        "schema": {
          "type": "number"
        },
        "example": 13.111
      },
      "walletsParam": {
        "name": "wallets",
        "description": "List of wallet.",
        "in": "query",
        "required": true,
        "schema": {
          "type": "string"
        },
        "examples": {
          "solana": {
            "value": "4mwReoK1x668B6KuuSAbGm2tUQULSTHGgTpCa2jUMXtD,3aLF8VXyUbEPSFyqSoQrsq6TdgKXgLmwJprE2yTfdNA2"
          }
        }
      },
      "minVolumeParam": {
        "name": "min_volume",
        "in": "query",
        "description": "Minimum volume value, support up to 3 decimals",
        "required": false,
        "schema": {
          "type": "number"
        },
        "example": 12.111
      },
      "maxVolumeParam": {
        "name": "max_volume",
        "in": "query",
        "description": "Maximum volume value, support up to 3 decimals",
        "required": false,
        "schema": {
          "type": "number"
        },
        "example": 13.111
      },
      "volumeTypeRequiredParam": {
        "name": "volume_type",
        "in": "query",
        "description": "Volume type value to be filtered",
        "required": true,
        "schema": {
          "type": "string",
          "enum": [
            "usd",
            "amount"
          ]
        },
        "example": "usd"
      },
      "walletPnlDurationParam": {
        "name": "duration",
        "description": "Time period used to aggregate wallet transactions and calculate PnL statistics.",
        "in": "query",
        "required": false,
        "schema": {
          "type": "string",
          "enum": [
            "all",
            "90d",
            "30d",
            "7d",
            "24h"
          ],
          "default": "all"
        }
      },
      "smartMoneyTokenIntervalParam": {
        "name": "interval",
        "in": "query",
        "schema": {
          "type": "string",
          "enum": [
            "1d",
            "7d",
            "30d"
          ],
          "default": "1d"
        }
      },
      "smartMoneyTokenTraderStyleParam": {
        "name": "trader_style",
        "in": "query",
        "schema": {
          "type": "string",
          "enum": [
            "all",
            "risk_averse",
            "risk_balancers",
            "trenchers"
          ],
          "default": "all"
        }
      },
      "smartMoneyTokenSortByParam": {
        "name": "sort_by",
        "in": "query",
        "schema": {
          "type": "string",
          "enum": [
            "net_flow",
            "smart_traders_no",
            "market_cap"
          ],
          "default": "smart_traders_no"
        }
      },
      "optionalChartHolderType": {
        "name": "chart_type",
        "description": "Holder-count chart interval. Supported values: 1d, 1h, 1m, 1s. Note: 1s chart type only supports data within the last 3 days.",
        "in": "query",
        "required": false,
        "schema": {
          "type": "string",
          "enum": [
            "1d",
            "1h",
            "1m",
            "1s"
          ],
          "default": "1h"
        }
      },
      "optionalChartHolderMode": {
        "name": "mode",
        "description": "Controls how chart data is handled. padding fills missing timestamps to maintain continuity; no_fill returns only timestamps where values change.",
        "in": "query",
        "required": false,
        "schema": {
          "type": "string",
          "enum": [
            "no_fill",
            "padding"
          ],
          "default": "padding"
        }
      },
      "optionalChartHolderPercentMode": {
        "name": "percent_mode",
        "description": "Defines how holder-count percentage change is calculated. beginning compares each point with the first record; previous compares each point with the previous record.",
        "in": "query",
        "required": false,
        "schema": {
          "type": "string",
          "enum": [
            "beginning",
            "previous"
          ],
          "default": "beginning"
        }
      },
      "optionalChartHolderCount": {
        "name": "count",
        "description": "Maximum number of chart points to return.",
        "in": "query",
        "required": false,
        "schema": {
          "type": "integer",
          "default": 20,
          "minimum": 1,
          "maximum": 100
        }
      },
      "optionalChartHolderFrom": {
        "name": "from",
        "description": "Start time for the chart as a unix timestamp in seconds.",
        "in": "query",
        "required": false,
        "schema": {
          "type": "integer",
          "minimum": 1,
          "maximum": 10000000000
        }
      },
      "optionalChartHolderTo": {
        "name": "to",
        "description": "End time for the chart as a unix timestamp in seconds.",
        "in": "query",
        "required": false,
        "schema": {
          "type": "integer",
          "minimum": 1,
          "maximum": 10000000000
        }
      },
      "optionalChartTagHolderType": {
        "name": "chart_type",
        "description": "Chart interval: 1d, 1h, 1m.",
        "in": "query",
        "required": false,
        "schema": {
          "type": "string",
          "enum": [
            "1d",
            "1h",
            "1m"
          ],
          "default": "1d"
        }
      },
      "optionalHolderTagType": {
        "name": "tag_type",
        "description": "Comma-separated holder tag types. Omit to return all supported tag types.",
        "in": "query",
        "required": false,
        "style": "form",
        "explode": false,
        "schema": {
          "type": "array",
          "items": {
            "type": "string",
            "enum": [
              "bundler",
              "sniper"
            ]
          },
          "default": [
            "bundler",
            "sniper"
          ],
          "example": [
            "bundler",
            "sniper"
          ]
        }
      },
      "optionalChartTagHolderTimeFrom": {
        "name": "time_from",
        "description": "Start time using unix timestamp in seconds. Defaults to 3 months before the current time.",
        "in": "query",
        "required": false,
        "schema": {
          "type": "integer",
          "minimum": 1,
          "maximum": 10000000000
        }
      },
      "optionalChartTagHolderTimeTo": {
        "name": "time_to",
        "description": "End time using unix timestamp in seconds. Defaults to the current time.",
        "in": "query",
        "required": false,
        "schema": {
          "type": "integer",
          "minimum": 1,
          "maximum": 10000000000
        }
      },
      "xPerpParam": {
        "name": "x-perp",
        "description": "Specify the perpetuals exchange. Currently supports hyperliquid.",
        "in": "header",
        "required": false,
        "schema": {
          "type": "string",
          "enum": [
            "hyperliquid"
          ],
          "default": "hyperliquid"
        }
      },
      "perpTokenListTimeFrameParam": {
        "name": "time_frame",
        "in": "query",
        "required": false,
        "schema": {
          "type": "string",
          "enum": [
            "4h",
            "1d",
            "7d",
            "30d",
            "all"
          ],
          "default": "all"
        }
      },
      "perpTokenListSortByParam": {
        "name": "sort_by",
        "in": "query",
        "required": false,
        "schema": {
          "type": "string",
          "enum": [
            "long_io",
            "short_io",
            "open_interest"
          ],
          "default": "open_interest"
        }
      },
      "perpTokenParam": {
        "name": "token",
        "description": "The symbol of a coin/token (e.g: BTC, SOL, ETH).",
        "in": "query",
        "required": true,
        "schema": {
          "type": "string"
        },
        "examples": {
          "btc": {
            "value": "BTC"
          },
          "sol": {
            "value": "SOL"
          },
          "eth": {
            "value": "ETH"
          }
        }
      },
      "perpTokenOpenPositionsSortByParam": {
        "name": "sort_by",
        "in": "query",
        "required": false,
        "schema": {
          "type": "string",
          "enum": [
            "position_value",
            "open_time"
          ],
          "default": "open_time"
        }
      },
      "perpWalletListLastTradeDurationParam": {
        "name": "last_trade_duration",
        "in": "query",
        "required": false,
        "schema": {
          "type": "string",
          "enum": [
            "1d",
            "7d",
            "30d",
            "90d",
            "all"
          ],
          "default": "all"
        }
      },
      "perpWalletListSortByParam": {
        "name": "sort_by",
        "in": "query",
        "required": false,
        "schema": {
          "type": "string",
          "enum": [
            "perp_equity",
            "long_value",
            "short_value",
            "unrealized_pnl",
            "order_count",
            "order_count_90d",
            "win",
            "win_90d",
            "loss",
            "loss_90d",
            "volume_usd",
            "volume_90d_usd",
            "open_volume_usd",
            "open_volume_90d_usd",
            "realized_pnl",
            "realized_pnl_90d",
            "funding_fee",
            "funding_fee_90d",
            "first_trade",
            "last_trade",
            "win_rate",
            "win_rate_90d",
            "open_value",
            "total_pnl",
            "total_pnl_90d",
            "roe",
            "roi",
            "roi_90d",
            "bias",
            "leverage"
          ],
          "default": "total_pnl"
        }
      },
      "perpWalletParam": {
        "name": "wallet",
        "description": "The address of the wallet.",
        "in": "query",
        "required": true,
        "schema": {
          "type": "string"
        },
        "examples": {
          "hyperliquid": {
            "value": "0xa822a9ceb6d6cb5b565bd10098abcfa9cf18d748"
          }
        }
      },
      "leaderboardOptionalFromValueParam": {
        "name": "from_value",
        "description": "Minimum total value filter. Defaults to 100,000 and must be greater than or equal to 100,000.",
        "in": "query",
        "required": false,
        "schema": {
          "type": "number",
          "format": "float",
          "minimum": 100000,
          "default": 100000
        },
        "example": 110000
      },
      "leaderboardOptionalToValueParam": {
        "name": "to_value",
        "description": "Maximum total value filter. Must be greater than or equal to 100,000 and greater than from_value.",
        "in": "query",
        "required": false,
        "schema": {
          "type": "number",
          "format": "float",
          "minimum": 100000
        },
        "example": 200000
      },
      "leaderboardSortByParam": {
        "name": "sort_by",
        "description": "\n            Field used to sort leaderboard results.\n            Supported values:\n            - total_value: Total wallet value in USD.\n            - trade_count: Total number of trades.\n            - volume_usd: Total trading volume in USD.\n            - realized_pnl: Realized profit and loss in USD.\n            - unrealized_pnl: Unrealized profit and loss in USD.\n        ",
        "in": "query",
        "required": false,
        "schema": {
          "type": "string",
          "enum": [
            "total_value",
            "trade_count",
            "volume_usd",
            "realized_pnl",
            "unrealized_pnl"
          ],
          "default": "total_value"
        },
        "example": "realized_pnl"
      },
      "leaderboardIntervalByParam": {
        "name": "interval",
        "description": "Time interval used to calculate leaderboard metrics.",
        "in": "query",
        "required": false,
        "schema": {
          "type": "string",
          "enum": [
            "30m",
            "1h",
            "2h",
            "4h",
            "6h",
            "8h",
            "12h",
            "24h",
            "2d",
            "3d",
            "7d",
            "14d",
            "30d",
            "60d",
            "90d",
            "all_time"
          ],
          "default": "7d"
        },
        "example": "7d"
      },
      "leaderboardOptionalMinTradeParam": {
        "name": "min_trade",
        "description": "Minimum number of trades. Must be greater than or equal to 0.",
        "in": "query",
        "required": false,
        "schema": {
          "type": "integer",
          "format": "uint64",
          "minimum": 0
        },
        "example": 10
      },
      "leaderboardOptionalMaxTradeParam": {
        "name": "max_trade",
        "description": "Maximum number of trades. Must be greater than or equal to min_trade.",
        "in": "query",
        "required": false,
        "schema": {
          "type": "integer",
          "format": "uint64",
          "minimum": 0
        },
        "example": 1000
      },
      "leaderboardOptionalMinVolumeParam": {
        "name": "min_volume_usd",
        "description": "Minimum trading volume in USD. Must be greater than or equal to 0.",
        "in": "query",
        "required": false,
        "schema": {
          "type": "number",
          "format": "float",
          "minimum": 0
        },
        "example": 10000
      },
      "leaderboardOptionalMaxVolumeParam": {
        "name": "max_volume_usd",
        "description": "Maximum trading volume in USD. Must be greater than or equal to min_volume_usd.",
        "in": "query",
        "required": false,
        "schema": {
          "type": "number",
          "format": "float",
          "minimum": 0
        },
        "example": 1000000
      },
      "leaderboardOptionalMinRealizedPnlParam": {
        "name": "min_realized_pnl",
        "description": "Minimum realized PnL in USD. Can be negative.",
        "in": "query",
        "required": false,
        "schema": {
          "type": "number",
          "format": "float"
        },
        "example": -10000
      },
      "leaderboardOptionalMaxRealizedPnlParam": {
        "name": "max_realized_pnl",
        "description": "Maximum realized PnL in USD. Must be greater than or equal to min_realized_pnl.",
        "in": "query",
        "required": false,
        "schema": {
          "type": "number",
          "format": "float"
        },
        "example": 100000
      },
      "leaderboardOptionalMinUnrealizedPnlParam": {
        "name": "min_unrealized_pnl",
        "description": "Minimum unrealized PnL in USD. Can be negative.",
        "in": "query",
        "required": false,
        "schema": {
          "type": "number",
          "format": "float"
        },
        "example": -10000
      },
      "leaderboardOptionalMaxUnrealizedPnlParam": {
        "name": "max_unrealized_pnl",
        "description": "Maximum unrealized PnL in USD. Must be greater than or equal to min_unrealized_pnl.",
        "in": "query",
        "required": false,
        "schema": {
          "type": "number",
          "format": "float"
        },
        "example": 100000
      },
      "pnlChartOptionalTimeFromParam": {
        "name": "time_from",
        "description": "Specify the start time in `YYYY-MM-DD HH:mm:ss` format. Defaults to 100 days before the current time. The time range between time_from and time_to must not exceed 100 days.",
        "in": "query",
        "required": false,
        "schema": {
          "type": "string"
        },
        "example": "2025-01-01 00:00:00"
      },
      "pnlChartOptionalTimeToParam": {
        "name": "time_to",
        "description": "Specify the start time in `YYYY-MM-DD HH:mm:ss` format. Defaults to the current time.",
        "in": "query",
        "required": false,
        "schema": {
          "type": "string"
        },
        "example": "2025-03-01 00:00:00"
      },
      "optionalPositionScopeParam": {
        "name": "position_scope",
        "description": "Calculation mode for PnL. duration_only calculates PnL only for each selected time bucket. cumulative calculates realized_pnl cumulatively from the start time, while unrealized_pnl is based on the all-time open position. Defaults to duration_only.",
        "in": "query",
        "required": false,
        "schema": {
          "type": "string",
          "enum": [
            "duration_only",
            "cumulative"
          ],
          "default": "duration_only"
        }
      },
      "marketHistoryTimeFrameParam": {
        "name": "time_frame",
        "description": "The aggregation interval for the returned data.",
        "in": "query",
        "required": false,
        "schema": {
          "type": "string",
          "enum": [
            "1D"
          ],
          "default": "1D"
        }
      },
      "referenceTimestampParam": {
        "name": "time",
        "description": "The reference unix timestamp in seconds to start retrieving data. Defaults to the current time.",
        "in": "query",
        "required": false,
        "schema": {
          "type": "integer",
          "minimum": 0,
          "maximum": 10000000000
        },
        "example": 1750950840
      },
      "timeDirectionParam": {
        "name": "direction",
        "description": "The retrieval direction relative to the reference time.",
        "in": "query",
        "required": false,
        "schema": {
          "type": "string",
          "enum": [
            "backward",
            "forward"
          ],
          "default": "backward"
        }
      },
      "countLimit10Param": {
        "name": "count",
        "description": "Limit the number of data records returned.",
        "in": "query",
        "required": false,
        "schema": {
          "type": "integer",
          "default": 10,
          "minimum": 1,
          "maximum": 10
        }
      },
      "optionalPnlMethod": {
        "name": "pnl_method",
        "description": "PNL calculation method. `wac` (Weighted Average Cost): calculates PNL for each sell against the average cost of the position held at the time of the sell. Buys only re-average the cost of the remaining inventory, and previously realized sell PNL is not affected by later trades. `netcash` (Net Cash): calculates PNL across the full trade history using the spread between cumulative average sell price and cumulative average buy price. The buy average includes all buys and is not reduced by sells, so later buys can change the reported PNL.",
        "in": "query",
        "required": false,
        "schema": {
          "type": "string",
          "enum": [
            "wac",
            "net_cash"
          ],
          "default": "net_cash"
        },
        "example": "net_cash"
      },
      "optionalPlatformName": {
        "name": "platform_name",
        "description": "Token creation platform. Supported platforms: `pump.fun`, `mayhem`, `stonkfun`, `meteora dbc`, `moonshot`, `raydium`, `letsbonk.fun`, `jupiter studio`, `gobolt`, `bags.fm`, `possumlabs`, `trix`, `diesel`, and `meme.com platform`.",
        "in": "query",
        "required": false,
        "schema": {
          "type": "string"
        },
        "example": "pump.fun"
      }
    },
    "schemas": {
      "SupportedNetworksResponse": {
        "type": "object",
        "required": [
          "success",
          "data"
        ],
        "properties": {
          "success": {
            "type": "boolean"
          },
          "data": {
            "type": "array",
            "items": {
              "type": "string"
            }
          }
        }
      },
      "DefiPriceResponse": {
        "type": "object",
        "required": [
          "success",
          "data"
        ],
        "properties": {
          "success": {
            "type": "boolean",
            "description": "Whether the request completed successfully."
          },
          "data": {
            "$ref": "#/components/schemas/DefiPriceObject"
          }
        }
      },
      "DefiMultiPriceResponse": {
        "type": "object",
        "required": [
          "success",
          "data"
        ],
        "properties": {
          "success": {
            "type": "boolean",
            "description": "Whether the request completed successfully."
          },
          "data": {
            "type": "object",
            "description": "Map keyed by token address. Each value is the latest price object for that token, or `null` when price data is unavailable.",
            "additionalProperties": {
              "$ref": "#/components/schemas/DefiPriceObject"
            },
            "maxProperties": 10
          }
        }
      },
      "DefiHistoryPriceResponse": {
        "type": "object",
        "required": [
          "success",
          "data"
        ],
        "properties": {
          "success": {
            "type": "boolean",
            "description": "Whether the request completed successfully."
          },
          "data": {
            "type": "object",
            "required": [
              "items"
            ],
            "description": "Historical price series for the requested token or pair.",
            "properties": {
              "isScaledUiToken": {
                "type": "boolean",
                "description": "True when the token uses Solana Token-2022 scaled UI amounts."
              },
              "multiplier": {
                "type": "number",
                "description": "Scaled UI multiplier applied to historical price values for Token-2022 assets."
              },
              "items": {
                "type": "array",
                "description": "Historical price points ordered by timestamp.",
                "items": {
                  "type": "object",
                  "properties": {
                    "unixTime": {
                      "type": "integer",
                      "description": "Unix timestamp in seconds for this historical price point."
                    },
                    "value": {
                      "type": "number",
                      "description": "Token price at the requested timestamp bucket in the requested quote currency."
                    },
                    "scaledValue": {
                      "type": "number",
                      "description": "Historical price adjusted by the scaled UI multiplier. Present for scaled UI tokens."
                    }
                  }
                }
              }
            }
          }
        }
      },
      "DefiHistoryPriceUnixResponse": {
        "type": "object",
        "required": [
          "success",
          "data"
        ],
        "properties": {
          "success": {
            "type": "boolean",
            "description": "Whether the request completed successfully."
          },
          "data": {
            "type": "object",
            "required": [
              "value",
              "updateUnixTime",
              "priceChange24h"
            ],
            "description": "Historical token price resolved near the requested unix timestamp.",
            "properties": {
              "value": {
                "type": "number",
                "description": "Historical token price in the requested quote currency."
              },
              "updateUnixTime": {
                "type": "integer",
                "description": "Unix timestamp in seconds of the matched historical price record."
              },
              "priceChange24h": {
                "type": "number",
                "description": "24-hour percentage price change relative to the matched historical price point."
              },
              "isScaledUiToken": {
                "type": "boolean",
                "description": "True when the token uses Solana Token-2022 scaled UI amounts."
              },
              "scaledValue": {
                "type": "number",
                "description": "Historical price adjusted by the scaled UI multiplier. Present for scaled UI tokens."
              },
              "multiplier": {
                "type": "number",
                "description": "Scaled UI multiplier applied to raw token values for Token-2022 assets."
              }
            }
          }
        }
      },
      "DefiOhlcvPairResponse": {
        "type": "object",
        "required": [
          "success",
          "data"
        ],
        "properties": {
          "success": {
            "type": "boolean",
            "description": "Whether the request completed successfully."
          },
          "data": {
            "type": "object",
            "description": "OHLCV candle series for the requested trading pair.",
            "properties": {
              "items": {
                "type": "array",
                "description": "Pair candle list ordered by timestamp.",
                "items": {
                  "type": "object",
                  "required": [
                    "o",
                    "h",
                    "l",
                    "c",
                    "v",
                    "address",
                    "type",
                    "unixTime",
                    "currency"
                  ],
                  "properties": {
                    "o": {
                      "type": "number",
                      "description": "Open price at the start of the candle."
                    },
                    "h": {
                      "type": "number",
                      "description": "Highest traded price during the candle."
                    },
                    "l": {
                      "type": "number",
                      "description": "Lowest traded price during the candle."
                    },
                    "c": {
                      "type": "number",
                      "description": "Close price at the end of the candle."
                    },
                    "v": {
                      "type": "number",
                      "description": "Traded base-token volume during the candle."
                    },
                    "address": {
                      "type": "string",
                      "description": "Pair address the candle belongs to."
                    },
                    "type": {
                      "type": "string",
                      "description": "Candle interval such as `1m`, `1H`, or `1D`."
                    },
                    "unixTime": {
                      "type": "integer",
                      "description": "Unix timestamp in seconds for the candle open time."
                    },
                    "currency": {
                      "type": "string",
                      "description": "Quote currency used for price fields in this candle."
                    }
                  }
                }
              }
            }
          }
        }
      },
      "DefiOhlcvPairV3Response": {
        "type": "object",
        "required": [
          "success",
          "data"
        ],
        "properties": {
          "success": {
            "type": "boolean",
            "description": "Whether the request completed successfully."
          },
          "data": {
            "type": "object",
            "description": "OHLCV candle series for the requested trading pair using the V3 schema.",
            "properties": {
              "items": {
                "type": "array",
                "description": "Pair candle list ordered by timestamp.",
                "items": {
                  "type": "object",
                  "required": [
                    "o",
                    "h",
                    "l",
                    "c",
                    "v",
                    "address",
                    "type",
                    "unix_time",
                    "currency",
                    "v_usd"
                  ],
                  "properties": {
                    "o": {
                      "type": "number",
                      "description": "Open price at the start of the candle."
                    },
                    "h": {
                      "type": "number",
                      "description": "Highest traded price during the candle."
                    },
                    "l": {
                      "type": "number",
                      "description": "Lowest traded price during the candle."
                    },
                    "c": {
                      "type": "number",
                      "description": "Close price at the end of the candle."
                    },
                    "v": {
                      "type": "number",
                      "description": "Traded base-token volume during the candle."
                    },
                    "v_usd": {
                      "type": "number",
                      "description": "Traded volume converted to USD for the same candle."
                    },
                    "address": {
                      "type": "string",
                      "description": "Pair address the candle belongs to."
                    },
                    "type": {
                      "type": "string",
                      "description": "Candle interval such as `1s`, `1m`, `1H`, or `1D`."
                    },
                    "unix_time": {
                      "type": "integer",
                      "description": "Unix timestamp in seconds for the candle open time."
                    },
                    "currency": {
                      "type": "string",
                      "description": "Quote currency used for price fields in this candle."
                    }
                  }
                }
              }
            }
          }
        }
      },
      "DefiLiquidityOhlcPairResponse": {
        "type": "object",
        "required": [
          "success",
          "data"
        ],
        "properties": {
          "success": {
            "type": "boolean",
            "description": "Whether the request completed successfully."
          },
          "data": {
            "type": "object",
            "description": "Liquidity OHLC candle series for the requested trading pair.",
            "required": [
              "items",
              "direction",
              "limit",
              "next_cursor",
              "prev_cursor",
              "has_more"
            ],
            "properties": {
              "items": {
                "type": "array",
                "description": "Liquidity candles ordered by timestamp.",
                "items": {
                  "type": "object",
                  "required": [
                    "pair_address",
                    "base_mint",
                    "quote_mint",
                    "timestamp",
                    "unix_time",
                    "open_liquidity_usd",
                    "high_liquidity_usd",
                    "low_liquidity_usd",
                    "close_liquidity_usd",
                    "open_base_balance",
                    "high_base_balance",
                    "low_base_balance",
                    "close_base_balance",
                    "open_quote_balance",
                    "high_quote_balance",
                    "low_quote_balance",
                    "close_quote_balance",
                    "base_open_price",
                    "base_high_price",
                    "base_low_price",
                    "base_close_price",
                    "quote_open_price",
                    "quote_high_price",
                    "quote_low_price",
                    "quote_close_price"
                  ],
                  "properties": {
                    "pair_address": {
                      "type": "string",
                      "description": "Pair address this liquidity candle belongs to."
                    },
                    "base_mint": {
                      "type": "string",
                      "description": "Base token mint or contract address for the pair."
                    },
                    "quote_mint": {
                      "type": "string",
                      "description": "Quote token mint or contract address for the pair."
                    },
                    "timestamp": {
                      "type": "string",
                      "format": "date-time",
                      "description": "Human-readable timestamp for the candle open time."
                    },
                    "unix_time": {
                      "type": "integer",
                      "description": "Unix timestamp in seconds for the candle open time."
                    },
                    "open_liquidity_usd": {
                      "type": "number",
                      "description": "Pair liquidity in USD at the start of the candle."
                    },
                    "high_liquidity_usd": {
                      "type": "number",
                      "description": "Highest pair liquidity in USD reached during the candle."
                    },
                    "low_liquidity_usd": {
                      "type": "number",
                      "description": "Lowest pair liquidity in USD reached during the candle."
                    },
                    "close_liquidity_usd": {
                      "type": "number",
                      "description": "Pair liquidity in USD at the end of the candle."
                    },
                    "open_base_balance": {
                      "type": "number",
                      "description": "Raw base-token reserve balance at the start of the candle."
                    },
                    "high_base_balance": {
                      "type": "number",
                      "description": "Highest raw base-token reserve balance during the candle."
                    },
                    "low_base_balance": {
                      "type": "number",
                      "description": "Lowest raw base-token reserve balance during the candle."
                    },
                    "close_base_balance": {
                      "type": "number",
                      "description": "Raw base-token reserve balance at the end of the candle."
                    },
                    "open_quote_balance": {
                      "type": "number",
                      "description": "Raw quote-token reserve balance at the start of the candle."
                    },
                    "high_quote_balance": {
                      "type": "number",
                      "description": "Highest raw quote-token reserve balance during the candle."
                    },
                    "low_quote_balance": {
                      "type": "number",
                      "description": "Lowest raw quote-token reserve balance during the candle."
                    },
                    "close_quote_balance": {
                      "type": "number",
                      "description": "Raw quote-token reserve balance at the end of the candle."
                    },
                    "open_base_amount_ui": {
                      "type": "number",
                      "description": "UI-formatted base-token reserve amount at the start of the candle."
                    },
                    "high_base_amount_ui": {
                      "type": "number",
                      "description": "Highest UI-formatted base-token reserve amount during the candle."
                    },
                    "low_base_amount_ui": {
                      "type": "number",
                      "description": "Lowest UI-formatted base-token reserve amount during the candle."
                    },
                    "close_base_amount_ui": {
                      "type": "number",
                      "description": "UI-formatted base-token reserve amount at the end of the candle."
                    },
                    "open_quote_amount_ui": {
                      "type": "number",
                      "description": "UI-formatted quote-token reserve amount at the start of the candle."
                    },
                    "high_quote_amount_ui": {
                      "type": "number",
                      "description": "Highest UI-formatted quote-token reserve amount during the candle."
                    },
                    "low_quote_amount_ui": {
                      "type": "number",
                      "description": "Lowest UI-formatted quote-token reserve amount during the candle."
                    },
                    "close_quote_amount_ui": {
                      "type": "number",
                      "description": "UI-formatted quote-token reserve amount at the end of the candle."
                    },
                    "base_open_price": {
                      "type": "number",
                      "description": "Base token price in USD at the start of the candle."
                    },
                    "base_high_price": {
                      "type": "number",
                      "description": "Highest base token price in USD during the candle."
                    },
                    "base_low_price": {
                      "type": "number",
                      "description": "Lowest base token price in USD during the candle."
                    },
                    "base_close_price": {
                      "type": "number",
                      "description": "Base token price in USD at the end of the candle."
                    },
                    "quote_open_price": {
                      "type": "number",
                      "description": "Quote token price in USD at the start of the candle."
                    },
                    "quote_high_price": {
                      "type": "number",
                      "description": "Highest quote token price in USD during the candle."
                    },
                    "quote_low_price": {
                      "type": "number",
                      "description": "Lowest quote token price in USD during the candle."
                    },
                    "quote_close_price": {
                      "type": "number",
                      "description": "Quote token price in USD at the end of the candle."
                    }
                  }
                }
              },
              "direction": {
                "type": "string",
                "enum": [
                  "next",
                  "prev"
                ],
                "description": "Internal cursor direction returned for the current result window."
              },
              "limit": {
                "type": "integer",
                "description": "Number of candles requested from the upstream liquidity data service."
              },
              "next_cursor": {
                "type": "integer",
                "nullable": true,
                "description": "Unix timestamp cursor for the next page of newer candles."
              },
              "prev_cursor": {
                "type": "integer",
                "nullable": true,
                "description": "Unix timestamp cursor for the previous page of older candles."
              },
              "has_more": {
                "type": "boolean",
                "description": "Whether another page is available in the returned direction."
              }
            }
          }
        }
      },
      "DefiLiquidityOhlcTokenResponse": {
        "type": "object",
        "required": [
          "success",
          "data"
        ],
        "properties": {
          "success": {
            "type": "boolean",
            "description": "Whether the request completed successfully."
          },
          "data": {
            "type": "object",
            "description": "Liquidity OHLC candle series for the requested token.",
            "required": [
              "items",
              "direction",
              "limit",
              "next_cursor",
              "prev_cursor",
              "has_more"
            ],
            "properties": {
              "items": {
                "type": "array",
                "description": "Liquidity candles ordered by timestamp.",
                "items": {
                  "type": "object",
                  "required": [
                    "token",
                    "timestamp",
                    "unix_time",
                    "open_liquidity_usd",
                    "high_liquidity_usd",
                    "low_liquidity_usd",
                    "close_liquidity_usd",
                    "open_exit_liquidity_usd",
                    "high_exit_liquidity_usd",
                    "low_exit_liquidity_usd",
                    "close_exit_liquidity_usd",
                    "open_stable_liquidity_usd",
                    "high_stable_liquidity_usd",
                    "low_stable_liquidity_usd",
                    "close_stable_liquidity_usd",
                    "total_pairs"
                  ],
                  "properties": {
                    "token": {
                      "type": "string",
                      "description": "Token address this liquidity candle belongs to."
                    },
                    "timestamp": {
                      "type": "string",
                      "format": "date-time",
                      "description": "Human-readable timestamp for the candle open time."
                    },
                    "unix_time": {
                      "type": "integer",
                      "description": "Unix timestamp in seconds for the candle open time."
                    },
                    "open_liquidity_usd": {
                      "type": "number",
                      "description": "Token liquidity in USD at the start of the candle."
                    },
                    "high_liquidity_usd": {
                      "type": "number",
                      "description": "Highest token liquidity in USD reached during the candle."
                    },
                    "low_liquidity_usd": {
                      "type": "number",
                      "description": "Lowest token liquidity in USD reached during the candle."
                    },
                    "close_liquidity_usd": {
                      "type": "number",
                      "description": "Token liquidity in USD at the end of the candle."
                    },
                    "open_exit_liquidity_usd": {
                      "type": "number",
                      "description": "Exit liquidity in USD at the start of the candle."
                    },
                    "high_exit_liquidity_usd": {
                      "type": "number",
                      "description": "Highest exit liquidity in USD reached during the candle."
                    },
                    "low_exit_liquidity_usd": {
                      "type": "number",
                      "description": "Lowest exit liquidity in USD reached during the candle."
                    },
                    "close_exit_liquidity_usd": {
                      "type": "number",
                      "description": "Exit liquidity in USD at the end of the candle."
                    },
                    "open_stable_liquidity_usd": {
                      "type": "number",
                      "description": "Liquidity in USD at the start of the candle across pools paired with top coins, counting both sides of each pool."
                    },
                    "high_stable_liquidity_usd": {
                      "type": "number",
                      "description": "Highest liquidity in USD during the candle across pools paired with top coins, counting both sides of each pool."
                    },
                    "low_stable_liquidity_usd": {
                      "type": "number",
                      "description": "Lowest liquidity in USD during the candle across pools paired with top coins, counting both sides of each pool."
                    },
                    "close_stable_liquidity_usd": {
                      "type": "number",
                      "description": "Liquidity in USD at the end of the candle across pools paired with top coins, counting both sides of each pool."
                    },
                    "total_pairs": {
                      "type": "integer",
                      "description": "Number of token pairs contributing to the liquidity snapshot."
                    }
                  }
                }
              },
              "direction": {
                "type": "string",
                "enum": [
                  "next",
                  "prev"
                ],
                "description": "Internal cursor direction returned for the current result window."
              },
              "limit": {
                "type": "integer",
                "description": "Number of candles requested from the upstream liquidity data service."
              },
              "next_cursor": {
                "type": "integer",
                "nullable": true,
                "description": "Unix timestamp cursor for the next page of newer candles."
              },
              "prev_cursor": {
                "type": "integer",
                "nullable": true,
                "description": "Unix timestamp cursor for the previous page of older candles."
              },
              "has_more": {
                "type": "boolean",
                "description": "Whether another page is available in the returned direction."
              }
            }
          }
        }
      },
      "DefiLiquidityHistoryTokenResponse": {
        "type": "object",
        "required": [
          "success",
          "data"
        ],
        "properties": {
          "success": {
            "type": "boolean",
            "description": "Whether the request completed successfully."
          },
          "data": {
            "type": "object",
            "description": "Historical liquidity snapshots for the requested token.",
            "required": [
              "items",
              "direction",
              "limit",
              "next_cursor",
              "prev_cursor",
              "has_more"
            ],
            "properties": {
              "items": {
                "type": "array",
                "description": "Historical liquidity points ordered by timestamp.",
                "items": {
                  "type": "object",
                  "required": [
                    "unix_time",
                    "liquidity_usd",
                    "exit_liquidity_usd",
                    "stable_liquidity_usd",
                    "total_pairs"
                  ],
                  "properties": {
                    "unix_time": {
                      "type": "integer",
                      "description": "Unix timestamp in seconds for this liquidity snapshot."
                    },
                    "liquidity_usd": {
                      "type": "number",
                      "description": "Total token liquidity in USD at this timestamp."
                    },
                    "exit_liquidity_usd": {
                      "type": "number",
                      "description": "Estimated exit liquidity in USD at this timestamp."
                    },
                    "stable_liquidity_usd": {
                      "type": "number",
                      "description": "Liquidity in USD at this timestamp across pools paired with top coins, counting both sides of each pool."
                    },
                    "total_pairs": {
                      "type": "integer",
                      "description": "Number of token pairs contributing to the liquidity snapshot."
                    }
                  }
                }
              },
              "direction": {
                "type": "string",
                "enum": [
                  "next",
                  "prev"
                ],
                "description": "Internal cursor direction returned for the current result window."
              },
              "limit": {
                "type": "integer",
                "description": "Number of history points requested from the upstream liquidity data service."
              },
              "next_cursor": {
                "type": "integer",
                "nullable": true,
                "description": "Unix timestamp cursor for the next page of newer history points."
              },
              "prev_cursor": {
                "type": "integer",
                "nullable": true,
                "description": "Unix timestamp cursor for the previous page of older history points."
              },
              "has_more": {
                "type": "boolean",
                "description": "Whether another page is available in the returned direction."
              }
            }
          }
        }
      },
      "DefiLatestTokenLiquidityResponse": {
        "type": "object",
        "required": [
          "success",
          "data"
        ],
        "properties": {
          "success": {
            "type": "boolean",
            "description": "Whether the request completed successfully."
          },
          "data": {
            "type": "object",
            "description": "Latest liquidity snapshots for the requested tokens.",
            "required": [
              "items"
            ],
            "properties": {
              "items": {
                "type": "array",
                "description": "Latest liquidity items for each requested token.",
                "items": {
                  "type": "object",
                  "required": [
                    "token",
                    "liquidity_usd",
                    "exit_liquidity_usd",
                    "stable_liquidity_usd",
                    "price"
                  ],
                  "properties": {
                    "token": {
                      "type": "string",
                      "description": "Token address for this liquidity snapshot."
                    },
                    "liquidity_usd": {
                      "type": "number",
                      "description": "Current token liquidity in USD."
                    },
                    "exit_liquidity_usd": {
                      "type": "number",
                      "description": "Current estimated exit liquidity in USD."
                    },
                    "stable_liquidity_usd": {
                      "type": "number",
                      "description": "Current liquidity in USD across pools paired with top coins, counting both sides of each pool."
                    },
                    "price": {
                      "type": "number",
                      "nullable": true,
                      "description": "Latest token price used alongside the liquidity snapshot when available."
                    }
                  }
                }
              }
            }
          }
        }
      },
      "DefiOhlcvResponse": {
        "type": "object",
        "required": [
          "success",
          "data"
        ],
        "properties": {
          "success": {
            "type": "boolean",
            "description": "Whether the request completed successfully."
          },
          "data": {
            "type": "object",
            "description": "OHLCV candle series for the requested token.",
            "properties": {
              "isScaledUiToken": {
                "type": "boolean",
                "description": "True when the token uses Solana Token-2022 scaled UI amounts."
              },
              "multiplier": {
                "type": "number",
                "description": "Scaled UI multiplier applied to price and volume fields for Token-2022 assets."
              },
              "items": {
                "type": "array",
                "description": "Candle list ordered by timestamp.",
                "items": {
                  "type": "object",
                  "required": [
                    "o",
                    "h",
                    "l",
                    "c",
                    "v",
                    "vUsd",
                    "address",
                    "type",
                    "unixTime",
                    "currency"
                  ],
                  "properties": {
                    "o": {
                      "type": "number",
                      "description": "Open price at the start of the candle."
                    },
                    "h": {
                      "type": "number",
                      "description": "Highest traded price during the candle."
                    },
                    "l": {
                      "type": "number",
                      "description": "Lowest traded price during the candle."
                    },
                    "c": {
                      "type": "number",
                      "description": "Close price at the end of the candle."
                    },
                    "v": {
                      "type": "number",
                      "description": "Traded token volume during the candle."
                    },
                    "vUsd": {
                      "type": "number",
                      "description": "Traded volume converted to USD for the same candle."
                    },
                    "address": {
                      "type": "string",
                      "description": "Token address the candle belongs to."
                    },
                    "type": {
                      "type": "string",
                      "description": "Candle interval such as `1m`, `1H`, or `1D`."
                    },
                    "unixTime": {
                      "type": "integer",
                      "description": "Unix timestamp in seconds for the candle open time."
                    },
                    "currency": {
                      "type": "string",
                      "description": "Quote currency used for price fields in this candle."
                    },
                    "scaledO": {
                      "type": "number",
                      "description": "Open price adjusted by the scaled UI multiplier. Present for scaled UI tokens."
                    },
                    "scaledH": {
                      "type": "number",
                      "description": "High price adjusted by the scaled UI multiplier. Present for scaled UI tokens."
                    },
                    "scaledL": {
                      "type": "number",
                      "description": "Low price adjusted by the scaled UI multiplier. Present for scaled UI tokens."
                    },
                    "scaledC": {
                      "type": "number",
                      "description": "Close price adjusted by the scaled UI multiplier. Present for scaled UI tokens."
                    },
                    "scaledV": {
                      "type": "number",
                      "description": "Volume adjusted by the scaled UI multiplier. Present for scaled UI tokens."
                    }
                  }
                }
              }
            }
          }
        }
      },
      "DefiOhlcvV3Response": {
        "type": "object",
        "required": [
          "success",
          "data"
        ],
        "properties": {
          "success": {
            "type": "boolean",
            "description": "Whether the request completed successfully."
          },
          "data": {
            "type": "object",
            "description": "OHLCV candle series for the requested token using the V3 schema.",
            "properties": {
              "is_scaled_ui_token": {
                "type": "boolean",
                "description": "True when the token uses Solana Token-2022 scaled UI amounts."
              },
              "multiplier": {
                "type": "number",
                "description": "Scaled UI multiplier applied to price and volume fields for Token-2022 assets."
              },
              "items": {
                "type": "array",
                "description": "Candle list ordered by timestamp.",
                "items": {
                  "type": "object",
                  "required": [
                    "o",
                    "h",
                    "l",
                    "c",
                    "v",
                    "address",
                    "type",
                    "unix_time",
                    "currency",
                    "v_usd"
                  ],
                  "properties": {
                    "o": {
                      "type": "number",
                      "description": "Open price at the start of the candle."
                    },
                    "h": {
                      "type": "number",
                      "description": "Highest traded price during the candle."
                    },
                    "l": {
                      "type": "number",
                      "description": "Lowest traded price during the candle."
                    },
                    "c": {
                      "type": "number",
                      "description": "Close price at the end of the candle."
                    },
                    "v": {
                      "type": "number",
                      "description": "Traded token volume during the candle."
                    },
                    "v_usd": {
                      "type": "number",
                      "description": "Traded volume converted to USD for the same candle."
                    },
                    "address": {
                      "type": "string",
                      "description": "Token address the candle belongs to."
                    },
                    "type": {
                      "type": "string",
                      "description": "Candle interval such as `1s`, `1m`, `1H`, or `1D`."
                    },
                    "unix_time": {
                      "type": "integer",
                      "description": "Unix timestamp in seconds for the candle open time."
                    },
                    "currency": {
                      "type": "string",
                      "description": "Quote currency used for price fields in this candle."
                    },
                    "scaled_o": {
                      "type": "number",
                      "description": "Open price adjusted by the scaled UI multiplier. Present for scaled UI tokens."
                    },
                    "scaled_h": {
                      "type": "number",
                      "description": "High price adjusted by the scaled UI multiplier. Present for scaled UI tokens."
                    },
                    "scaled_l": {
                      "type": "number",
                      "description": "Low price adjusted by the scaled UI multiplier. Present for scaled UI tokens."
                    },
                    "scaled_c": {
                      "type": "number",
                      "description": "Close price adjusted by the scaled UI multiplier. Present for scaled UI tokens."
                    },
                    "scaled_v": {
                      "type": "number",
                      "description": "Volume adjusted by the scaled UI multiplier. Present for scaled UI tokens."
                    }
                  }
                }
              }
            }
          }
        }
      },
      "DefiOhlcvBaseQuoteResponse": {
        "type": "object",
        "required": [
          "success",
          "data"
        ],
        "properties": {
          "success": {
            "type": "boolean",
            "description": "Whether the request completed successfully."
          },
          "data": {
            "type": "object",
            "description": "OHLCV candle series for a base/quote market.",
            "properties": {
              "isScaledUiTokenBase": {
                "type": "boolean",
                "description": "True when the base token uses Solana Token-2022 scaled UI amounts."
              },
              "isScaledUiTokenQuote": {
                "type": "boolean",
                "description": "True when the quote token uses Solana Token-2022 scaled UI amounts."
              },
              "multiplierBase": {
                "type": "number",
                "description": "Scaled UI multiplier for the base token when it uses Token-2022 scaled UI amounts."
              },
              "multiplierQuote": {
                "type": "number",
                "description": "Scaled UI multiplier for the quote token when it uses Token-2022 scaled UI amounts."
              },
              "items": {
                "type": "array",
                "description": "Base/quote candle list ordered by timestamp.",
                "items": {
                  "type": "object",
                  "required": [
                    "o",
                    "h",
                    "l",
                    "c",
                    "v",
                    "address",
                    "type",
                    "unixTime"
                  ],
                  "properties": {
                    "o": {
                      "type": "number",
                      "description": "Open price at the start of the candle."
                    },
                    "h": {
                      "type": "number",
                      "description": "Highest traded price during the candle."
                    },
                    "l": {
                      "type": "number",
                      "description": "Lowest traded price during the candle."
                    },
                    "c": {
                      "type": "number",
                      "description": "Close price at the end of the candle."
                    },
                    "vBase": {
                      "type": "number",
                      "description": "Traded base-token volume during the candle."
                    },
                    "vQuote": {
                      "type": "number",
                      "description": "Traded quote-token volume during the candle."
                    },
                    "address": {
                      "type": "string",
                      "description": "Market or pair address the candle belongs to when available."
                    },
                    "type": {
                      "type": "string",
                      "description": "Candle interval such as `1m`, `1H`, or `1D`."
                    },
                    "unixTime": {
                      "type": "integer",
                      "description": "Unix timestamp in seconds for the candle open time."
                    },
                    "scaledO": {
                      "type": "number",
                      "description": "Open price adjusted by scaled UI rules when applicable."
                    },
                    "scaledH": {
                      "type": "number",
                      "description": "High price adjusted by scaled UI rules when applicable."
                    },
                    "scaledL": {
                      "type": "number",
                      "description": "Low price adjusted by scaled UI rules when applicable."
                    },
                    "scaledC": {
                      "type": "number",
                      "description": "Close price adjusted by scaled UI rules when applicable."
                    },
                    "scaledVBase": {
                      "type": "number",
                      "description": "Base-token volume adjusted by scaled UI rules when applicable."
                    },
                    "scaledVQuote": {
                      "type": "number",
                      "description": "Quote-token volume adjusted by scaled UI rules when applicable."
                    }
                  }
                }
              }
            }
          }
        }
      },
      "DefiPriceVolumeSingleResponse": {
        "type": "object",
        "required": [
          "success",
          "data"
        ],
        "properties": {
          "success": {
            "type": "boolean",
            "description": "Whether the request completed successfully."
          },
          "data": {
            "$ref": "#/components/schemas/DefiPriceVolumeObject"
          }
        }
      },
      "DefiPriceVolumeMultiResponse": {
        "type": "object",
        "required": [
          "success",
          "data"
        ],
        "properties": {
          "success": {
            "type": "boolean",
            "description": "Whether the request completed successfully."
          },
          "data": {
            "type": "object",
            "description": "Map keyed by token address. Each value is the latest price-volume snapshot for that token, or `null` when data is unavailable.",
            "additionalProperties": {
              "$ref": "#/components/schemas/DefiPriceVolumeObject"
            },
            "maxProperties": 10
          }
        }
      },
      "PairOverviewObject": {
        "type": "object",
        "description": "Overview metrics for one trading pair or market.",
        "properties": {
          "address": {
            "type": "string",
            "description": "Pair or market address."
          },
          "base": {
            "type": "object",
            "description": "Metadata for one side of the pair.",
            "properties": {
              "address": {
                "type": "string",
                "description": "Token mint or contract address for this side of the pair."
              },
              "decimals": {
                "type": "integer",
                "description": "Number of decimal places used by this token."
              },
              "icon": {
                "type": "string",
                "description": "Logo image URL for this token."
              },
              "symbol": {
                "type": "string",
                "description": "Ticker symbol for this token."
              },
              "is_scaled_ui_token": {
                "type": "boolean",
                "description": "True when this token uses Solana Token-2022 scaled UI amounts."
              },
              "multiplier": {
                "type": "number",
                "description": "Scaled UI multiplier for this token when scaled UI metadata is available."
              }
            },
            "additionalProperties": true
          },
          "quote": {
            "type": "object",
            "description": "Metadata for one side of the pair.",
            "properties": {
              "address": {
                "type": "string",
                "description": "Token mint or contract address for this side of the pair."
              },
              "decimals": {
                "type": "integer",
                "description": "Number of decimal places used by this token."
              },
              "icon": {
                "type": "string",
                "description": "Logo image URL for this token."
              },
              "symbol": {
                "type": "string",
                "description": "Ticker symbol for this token."
              },
              "is_scaled_ui_token": {
                "type": "boolean",
                "description": "True when this token uses Solana Token-2022 scaled UI amounts."
              },
              "multiplier": {
                "type": "number",
                "description": "Scaled UI multiplier for this token when scaled UI metadata is available."
              }
            },
            "additionalProperties": true
          },
          "created_at": {
            "type": "string",
            "format": "date-time",
            "description": "Timestamp when the pair or market was first created or indexed."
          },
          "name": {
            "type": "string",
            "description": "Display name of the pair, typically `BASE-QUOTE`."
          },
          "source": {
            "type": "string",
            "description": "DEX, AMM, or venue that powers this pair."
          },
          "liquidity": {
            "type": "number",
            "description": "Current pair liquidity in USD."
          },
          "liquidity_change_percentage_24h": {
            "type": "number",
            "nullable": true,
            "description": "Percentage change in pair liquidity versus 24 hours earlier."
          },
          "price": {
            "type": "number",
            "description": "Latest pair price, typically quoted as base priced in quote."
          },
          "trade_30m": {
            "type": "number",
            "description": "Total trade count during the latest 30m window."
          },
          "trade_history_30m": {
            "type": "number",
            "description": "Total trade count during the previous 30m window used for comparison."
          },
          "trade_30m_change_percent": {
            "type": "number",
            "nullable": true,
            "description": "Percentage change in trade count versus the previous 30m window."
          },
          "unique_wallet_30m": {
            "type": "number",
            "description": "Number of distinct wallets that traded this pair during the latest 30m window."
          },
          "unique_wallet_30m_change_percent": {
            "type": "number",
            "nullable": true,
            "description": "Percentage change in distinct trading wallets versus the previous 30m window."
          },
          "volume_30m": {
            "type": "number",
            "description": "Total traded volume in USD for the pair during the latest 30m window."
          },
          "volume_30m_base": {
            "type": "number",
            "description": "Base-token volume traded during the latest 30m window."
          },
          "volume_30m_quote": {
            "type": "number",
            "description": "Quote-token volume traded during the latest 30m window."
          },
          "trade_1h": {
            "type": "number",
            "description": "Total trade count during the latest 1h window."
          },
          "trade_history_1h": {
            "type": "number",
            "description": "Total trade count during the previous 1h window used for comparison."
          },
          "trade_1h_change_percent": {
            "type": "number",
            "nullable": true,
            "description": "Percentage change in trade count versus the previous 1h window."
          },
          "unique_wallet_1h": {
            "type": "number",
            "description": "Number of distinct wallets that traded this pair during the latest 1h window."
          },
          "unique_wallet_1h_change_percent": {
            "type": "number",
            "nullable": true,
            "description": "Percentage change in distinct trading wallets versus the previous 1h window."
          },
          "volume_1h": {
            "type": "number",
            "description": "Total traded volume in USD for the pair during the latest 1h window."
          },
          "volume_1h_base": {
            "type": "number",
            "description": "Base-token volume traded during the latest 1h window."
          },
          "volume_1h_quote": {
            "type": "number",
            "description": "Quote-token volume traded during the latest 1h window."
          },
          "trade_2h": {
            "type": "number",
            "description": "Total trade count during the latest 2h window."
          },
          "trade_history_2h": {
            "type": "number",
            "description": "Total trade count during the previous 2h window used for comparison."
          },
          "trade_2h_change_percent": {
            "type": "number",
            "nullable": true,
            "description": "Percentage change in trade count versus the previous 2h window."
          },
          "unique_wallet_2h": {
            "type": "number",
            "description": "Number of distinct wallets that traded this pair during the latest 2h window."
          },
          "unique_wallet_2h_change_percent": {
            "type": "number",
            "nullable": true,
            "description": "Percentage change in distinct trading wallets versus the previous 2h window."
          },
          "volume_2h": {
            "type": "number",
            "description": "Total traded volume in USD for the pair during the latest 2h window."
          },
          "volume_2h_base": {
            "type": "number",
            "description": "Base-token volume traded during the latest 2h window."
          },
          "volume_2h_quote": {
            "type": "number",
            "description": "Quote-token volume traded during the latest 2h window."
          },
          "trade_4h": {
            "type": "number",
            "description": "Total trade count during the latest 4h window."
          },
          "trade_history_4h": {
            "type": "number",
            "description": "Total trade count during the previous 4h window used for comparison."
          },
          "trade_4h_change_percent": {
            "type": "number",
            "nullable": true,
            "description": "Percentage change in trade count versus the previous 4h window."
          },
          "unique_wallet_4h": {
            "type": "number",
            "description": "Number of distinct wallets that traded this pair during the latest 4h window."
          },
          "unique_wallet_4h_change_percent": {
            "type": "number",
            "nullable": true,
            "description": "Percentage change in distinct trading wallets versus the previous 4h window."
          },
          "volume_4h": {
            "type": "number",
            "description": "Total traded volume in USD for the pair during the latest 4h window."
          },
          "volume_4h_base": {
            "type": "number",
            "description": "Base-token volume traded during the latest 4h window."
          },
          "volume_4h_quote": {
            "type": "number",
            "description": "Quote-token volume traded during the latest 4h window."
          },
          "trade_8h": {
            "type": "number",
            "description": "Total trade count during the latest 8h window."
          },
          "trade_history_8h": {
            "type": "number",
            "description": "Total trade count during the previous 8h window used for comparison."
          },
          "trade_8h_change_percent": {
            "type": "number",
            "nullable": true,
            "description": "Percentage change in trade count versus the previous 8h window."
          },
          "unique_wallet_8h": {
            "type": "number",
            "description": "Number of distinct wallets that traded this pair during the latest 8h window."
          },
          "unique_wallet_8h_change_percent": {
            "type": "number",
            "nullable": true,
            "description": "Percentage change in distinct trading wallets versus the previous 8h window."
          },
          "volume_8h": {
            "type": "number",
            "description": "Total traded volume in USD for the pair during the latest 8h window."
          },
          "volume_8h_base": {
            "type": "number",
            "description": "Base-token volume traded during the latest 8h window."
          },
          "volume_8h_quote": {
            "type": "number",
            "description": "Quote-token volume traded during the latest 8h window."
          },
          "trade_12h": {
            "type": "number",
            "description": "Total trade count during the latest 12h window."
          },
          "trade_history_12h": {
            "type": "number",
            "description": "Total trade count during the previous 12h window used for comparison."
          },
          "trade_12h_change_percent": {
            "type": "number",
            "nullable": true,
            "description": "Percentage change in trade count versus the previous 12h window."
          },
          "unique_wallet_12h": {
            "type": "number",
            "description": "Number of distinct wallets that traded this pair during the latest 12h window."
          },
          "unique_wallet_12h_change_percent": {
            "type": "number",
            "nullable": true,
            "description": "Percentage change in distinct trading wallets versus the previous 12h window."
          },
          "volume_12h": {
            "type": "number",
            "description": "Total traded volume in USD for the pair during the latest 12h window."
          },
          "volume_12h_base": {
            "type": "number",
            "description": "Base-token volume traded during the latest 12h window."
          },
          "volume_12h_quote": {
            "type": "number",
            "description": "Quote-token volume traded during the latest 12h window."
          },
          "trade_24h": {
            "type": "number",
            "description": "Total trade count during the latest 24h window."
          },
          "trade_history_24h": {
            "type": "number",
            "description": "Total trade count during the previous 24h window used for comparison."
          },
          "trade_24h_change_percent": {
            "type": "number",
            "nullable": true,
            "description": "Percentage change in trade count versus the previous 24h window."
          },
          "unique_wallet_24h": {
            "type": "number",
            "description": "Number of distinct wallets that traded this pair during the latest 24h window."
          },
          "unique_wallet_24h_change_percent": {
            "type": "number",
            "nullable": true,
            "description": "Percentage change in distinct trading wallets versus the previous 24h window."
          },
          "volume_24h": {
            "type": "number",
            "description": "Total traded volume in USD for the pair during the latest 24h window."
          },
          "volume_24h_base": {
            "type": "number",
            "description": "Base-token volume traded during the latest 24h window."
          },
          "volume_24h_quote": {
            "type": "number",
            "description": "Quote-token volume traded during the latest 24h window."
          },
          "volume_24h_change_percentage_24h": {
            "type": "number",
            "nullable": true,
            "description": "Percentage change in 24-hour USD volume versus the previous 24-hour window."
          }
        },
        "additionalProperties": true
      },
      "PairOverviewSingleResponse": {
        "type": "object",
        "required": [
          "success",
          "data"
        ],
        "properties": {
          "success": {
            "type": "boolean",
            "description": "Whether the request completed successfully."
          },
          "data": {
            "$ref": "#/components/schemas/PairOverviewObject"
          }
        }
      },
      "PairOverviewMultipleResponse": {
        "type": "object",
        "required": [
          "success",
          "data"
        ],
        "properties": {
          "success": {
            "type": "boolean",
            "description": "Whether the request completed successfully."
          },
          "data": {
            "type": "object",
            "description": "Map keyed by pair address. Each value is the overview object for that pair, or `null` when pair data is unavailable.",
            "additionalProperties": {
              "$ref": "#/components/schemas/PairOverviewObject"
            }
          }
        }
      },
      "DefiTokenListV1Response": {
        "type": "object",
        "required": [
          "success",
          "data"
        ],
        "properties": {
          "success": {
            "type": "boolean",
            "description": "Whether the request completed successfully."
          },
          "data": {
            "type": "object",
            "description": "Paged token-list payload with ranking metadata and token rows.",
            "properties": {
              "updateUnixTime": {
                "type": "integer",
                "description": "Unix timestamp in seconds when the token list snapshot was last refreshed."
              },
              "updateTime": {
                "type": "string",
                "description": "Human-readable timestamp when the token list snapshot was last refreshed."
              },
              "total": {
                "type": "number",
                "description": "Total number of tokens matching the request before pagination is applied."
              },
              "tokens": {
                "type": "array",
                "description": "Token rows returned for the current page.",
                "items": {
                  "type": "object",
                  "description": "One token row from the V1 token list.",
                  "properties": {
                    "address": {
                      "type": "string",
                      "description": "Token mint or contract address."
                    },
                    "decimals": {
                      "type": "integer",
                      "description": "Number of decimal places used by the token."
                    },
                    "lastTradeUnixTime": {
                      "type": "integer",
                      "description": "Unix timestamp in seconds of the latest observed trade for the token."
                    },
                    "liquidity": {
                      "type": "number",
                      "description": "Current token liquidity in USD."
                    },
                    "logoURI": {
                      "type": "string",
                      "description": "Logo image URL for the token."
                    },
                    "mc": {
                      "type": "number",
                      "description": "Current market capitalization."
                    },
                    "name": {
                      "type": "string",
                      "description": "Display name of the token."
                    },
                    "symbol": {
                      "type": "string",
                      "description": "Ticker symbol for the token."
                    },
                    "v24hChangePercent": {
                      "type": "number",
                      "description": "Percentage change in 24-hour traded token volume versus the previous 24-hour window."
                    },
                    "v24hUSD": {
                      "type": "number",
                      "description": "Total traded USD volume during the latest 24-hour window."
                    }
                  }
                }
              }
            }
          }
        }
      },
      "DefiTokenCreationInfoResponse": {
        "type": "object",
        "required": [
          "success",
          "data"
        ],
        "properties": {
          "success": {
            "type": "boolean"
          },
          "data": {
            "type": "object",
            "properties": {
              "txHash": {
                "type": "string"
              },
              "slot": {
                "type": "integer"
              },
              "tokenAddress": {
                "type": "string"
              },
              "decimals": {
                "type": "integer"
              },
              "owner": {
                "type": "string"
              },
              "blockUnixTime": {
                "type": "integer"
              },
              "blockHumanTime": {
                "type": "string"
              }
            }
          }
        }
      },
      "DefiTokenExitLiquidityResponse": {
        "type": "object",
        "required": [
          "success",
          "data"
        ],
        "properties": {
          "success": {
            "type": "boolean",
            "description": "Whether the request completed successfully."
          },
          "data": {
            "description": "Exit-liquidity snapshot for one token.",
            "$ref": "#/components/schemas/DefiTokenExitLiquidityObject"
          }
        }
      },
      "DefiTokenExitLiquidityMultipleResponse": {
        "type": "object",
        "required": [
          "success",
          "data"
        ],
        "properties": {
          "success": {
            "type": "boolean",
            "description": "Whether the request completed successfully."
          },
          "data": {
            "type": "object",
            "description": "Batch exit-liquidity payload.",
            "required": [
              "items"
            ],
            "properties": {
              "items": {
                "description": "A list of objects containing token exit liquidity data",
                "type": "array",
                "items": {
                  "$ref": "#/components/schemas/DefiTokenExitLiquidityObject"
                }
              }
            }
          }
        }
      },
      "DefiTokenTrendingListResponse": {
        "type": "object",
        "required": [
          "success",
          "data"
        ],
        "properties": {
          "success": {
            "type": "boolean",
            "description": "Whether the request completed successfully."
          },
          "data": {
            "type": "object",
            "description": "Trending-token payload with ranking metadata and token rows.",
            "properties": {
              "updateUnixTime": {
                "type": "integer",
                "description": "Unix timestamp in seconds when the trending snapshot was last refreshed."
              },
              "updateTime": {
                "type": "string",
                "description": "Human-readable timestamp when the trending snapshot was last refreshed."
              },
              "total": {
                "type": "number",
                "description": "Total number of tokens included in the trending ranking before pagination is applied."
              },
              "tokens": {
                "type": "array",
                "description": "Trending token rows returned for the current page.",
                "items": {
                  "type": "object",
                  "description": "One token row from the trending list.",
                  "properties": {
                    "address": {
                      "type": "string",
                      "description": "Token mint or contract address."
                    },
                    "decimals": {
                      "type": "integer",
                      "description": "Number of decimal places used by the token."
                    },
                    "liquidity": {
                      "type": "number",
                      "description": "Current token liquidity in USD."
                    },
                    "logoURI": {
                      "type": "string",
                      "description": "Logo image URL for the token."
                    },
                    "name": {
                      "type": "string",
                      "description": "Display name of the token."
                    },
                    "symbol": {
                      "type": "string",
                      "description": "Ticker symbol for the token."
                    },
                    "volume24hUSD": {
                      "type": "number",
                      "description": "Total traded USD volume during the latest 24-hour window."
                    },
                    "volume24hChangePercent": {
                      "type": "number",
                      "description": "Percentage change in 24-hour USD volume versus the previous 24-hour window."
                    },
                    "rank": {
                      "type": "integer",
                      "description": "Trending rank of the token in the returned list."
                    },
                    "price": {
                      "type": "number",
                      "description": "Latest token price in USD."
                    },
                    "price24hChangePercent": {
                      "type": "number",
                      "description": "Percentage change in price over the latest 24-hour window."
                    },
                    "fdv": {
                      "type": "number",
                      "description": "Fully diluted valuation based on total supply and latest price."
                    },
                    "marketcap": {
                      "type": "number",
                      "description": "Current market capitalization."
                    }
                  }
                }
              }
            }
          }
        }
      },
      "DefiTokenMetadataSingleResponse": {
        "type": "object",
        "required": [
          "success",
          "data"
        ],
        "properties": {
          "success": {
            "type": "boolean",
            "description": "Whether the request completed successfully."
          },
          "data": {
            "$ref": "#/components/schemas/DefiTokenMetadataObject"
          }
        }
      },
      "DefiTokenMetadataMultipleResponse": {
        "type": "object",
        "required": [
          "success",
          "data"
        ],
        "properties": {
          "success": {
            "type": "boolean",
            "description": "Whether the request completed successfully."
          },
          "data": {
            "type": "object",
            "description": "Map keyed by token address. Each value is the metadata object for that token, or `null` when metadata is unavailable.",
            "additionalProperties": {
              "$ref": "#/components/schemas/DefiTokenMetadataObject"
            },
            "maxProperties": 50
          }
        }
      },
      "DefiTokenOverviewCoreChainsData": {
        "type": "object",
        "description": "Richer overview shape returned on core chains, including supply, holder, wallet, trade, volume, and scaled-UI metrics.",
        "properties": {
          "address": {
            "type": "string",
            "description": "Token mint or contract address."
          },
          "decimals": {
            "type": "integer",
            "description": "Number of decimal places used by the token."
          },
          "symbol": {
            "type": "string",
            "description": "Ticker symbol for the token."
          },
          "name": {
            "type": "string",
            "description": "Display name of the token."
          },
          "marketCap": {
            "type": "number",
            "description": "Current market capitalization based on circulating supply and latest price."
          },
          "fdv": {
            "type": "number",
            "description": "Fully diluted valuation based on total supply and latest price."
          },
          "totalSupply": {
            "type": "number",
            "description": "Total token supply. On Solana Token-2022 scaled UI mode this may be scaled for display."
          },
          "circulatingSupply": {
            "type": "number",
            "description": "Circulating token supply. On Solana Token-2022 scaled UI mode this may be scaled for display."
          },
          "extensions": {
            "type": "object",
            "nullable": true,
            "description": "Optional token metadata links and external identifiers.",
            "additionalProperties": {
              "type": [
                "string",
                "number",
                "boolean",
                "null"
              ]
            }
          },
          "logoURI": {
            "type": "string",
            "description": "Logo image URL for the token."
          },
          "liquidity": {
            "type": "number",
            "description": "Current token liquidity in USD."
          },
          "lastTradeUnixTime": {
            "type": "integer",
            "description": "Unix timestamp in seconds of the latest observed trade."
          },
          "lastTradeHumanTime": {
            "type": "string",
            "description": "Human-readable timestamp of the latest observed trade."
          },
          "price": {
            "type": "number",
            "description": "Latest token price in USD."
          },
          "global_fees_paid": {
            "type": "number",
            "nullable": true,
            "description": "All-time global fees paid in SOL for the token. Present when available."
          },
          "holder": {
            "type": "number",
            "nullable": true,
            "description": "Current holder count when holder data is available for the chain."
          },
          "numberMarkets": {
            "type": "number",
            "description": "Number of markets or pools tracked for this token."
          },
          "isScaledUiToken": {
            "type": "boolean",
            "description": "True when the token uses Solana Token-2022 scaled UI amounts."
          },
          "multiplier": {
            "type": "number",
            "nullable": true,
            "description": "Scaled UI multiplier applied to price, volume, and supply display fields for Token-2022 assets."
          },
          "history1mPrice": {
            "type": "number",
            "description": "Reference price 1 minute ago, used as the baseline for the current price change."
          },
          "priceChange1mPercent": {
            "type": "number",
            "description": "Percentage change between the latest price and the baseline price from 1m ago."
          },
          "uniqueWallet1m": {
            "type": "number",
            "description": "Number of distinct wallets that traded the token during the latest 1m window."
          },
          "uniqueWalletHistory1m": {
            "type": "number",
            "description": "Number of distinct wallets that traded the token during the previous 1m window used for comparison."
          },
          "uniqueWallet1mChangePercent": {
            "type": "number",
            "nullable": true,
            "description": "Percentage change in distinct trading wallets versus the previous 1m window."
          },
          "trade1m": {
            "type": "number",
            "description": "Total trade count during the latest 1m window."
          },
          "tradeHistory1m": {
            "type": "number",
            "description": "Total trade count during the previous 1m window used for comparison."
          },
          "trade1mChangePercent": {
            "type": "number",
            "description": "Percentage change in total trade count versus the previous 1m window."
          },
          "sell1m": {
            "type": "number",
            "description": "Sell-side trade count during the latest 1m window."
          },
          "sellHistory1m": {
            "type": "number",
            "description": "Sell-side trade count during the previous 1m window used for comparison."
          },
          "sell1mChangePercent": {
            "type": "number",
            "description": "Percentage change in sell-side trade count versus the previous 1m window."
          },
          "buy1m": {
            "type": "number",
            "description": "Buy-side trade count during the latest 1m window."
          },
          "buyHistory1m": {
            "type": "number",
            "description": "Buy-side trade count during the previous 1m window used for comparison."
          },
          "buy1mChangePercent": {
            "type": "number",
            "description": "Percentage change in buy-side trade count versus the previous 1m window."
          },
          "v1m": {
            "type": "number",
            "description": "Total traded token volume during the latest 1m window."
          },
          "v1mUSD": {
            "type": "number",
            "description": "Total traded USD volume during the latest 1m window."
          },
          "vHistory1m": {
            "type": "number",
            "description": "Total traded token volume during the previous 1m window used for comparison."
          },
          "vHistory1mUSD": {
            "type": "number",
            "description": "Total traded USD volume during the previous 1m window used for comparison."
          },
          "v1mChangePercent": {
            "type": "number",
            "description": "Percentage change in total traded token volume versus the previous 1m window."
          },
          "vBuy1m": {
            "type": "number",
            "description": "Buy-side token volume during the latest 1m window."
          },
          "vBuy1mUSD": {
            "type": "number",
            "description": "Buy-side USD volume during the latest 1m window."
          },
          "vBuyHistory1m": {
            "type": "number",
            "description": "Buy-side token volume during the previous 1m window used for comparison."
          },
          "vBuyHistory1mUSD": {
            "type": "number",
            "description": "Buy-side USD volume during the previous 1m window used for comparison."
          },
          "vBuy1mChangePercent": {
            "type": "number",
            "description": "Percentage change in buy-side token volume versus the previous 1m window."
          },
          "vSell1m": {
            "type": "number",
            "description": "Sell-side token volume during the latest 1m window."
          },
          "vSell1mUSD": {
            "type": "number",
            "description": "Sell-side USD volume during the latest 1m window."
          },
          "vSellHistory1m": {
            "type": "number",
            "description": "Sell-side token volume during the previous 1m window used for comparison."
          },
          "vSellHistory1mUSD": {
            "type": "number",
            "description": "Sell-side USD volume during the previous 1m window used for comparison."
          },
          "vSell1mChangePercent": {
            "type": "number",
            "description": "Percentage change in sell-side token volume versus the previous 1m window."
          },
          "history5mPrice": {
            "type": "number",
            "description": "Reference price 5 minutes ago, used as the baseline for the current price change."
          },
          "priceChange5mPercent": {
            "type": "number",
            "description": "Percentage change between the latest price and the baseline price from 5m ago."
          },
          "uniqueWallet5m": {
            "type": "number",
            "description": "Number of distinct wallets that traded the token during the latest 5m window."
          },
          "uniqueWalletHistory5m": {
            "type": "number",
            "description": "Number of distinct wallets that traded the token during the previous 5m window used for comparison."
          },
          "uniqueWallet5mChangePercent": {
            "type": "number",
            "nullable": true,
            "description": "Percentage change in distinct trading wallets versus the previous 5m window."
          },
          "trade5m": {
            "type": "number",
            "description": "Total trade count during the latest 5m window."
          },
          "tradeHistory5m": {
            "type": "number",
            "description": "Total trade count during the previous 5m window used for comparison."
          },
          "trade5mChangePercent": {
            "type": "number",
            "description": "Percentage change in total trade count versus the previous 5m window."
          },
          "sell5m": {
            "type": "number",
            "description": "Sell-side trade count during the latest 5m window."
          },
          "sellHistory5m": {
            "type": "number",
            "description": "Sell-side trade count during the previous 5m window used for comparison."
          },
          "sell5mChangePercent": {
            "type": "number",
            "description": "Percentage change in sell-side trade count versus the previous 5m window."
          },
          "buy5m": {
            "type": "number",
            "description": "Buy-side trade count during the latest 5m window."
          },
          "buyHistory5m": {
            "type": "number",
            "description": "Buy-side trade count during the previous 5m window used for comparison."
          },
          "buy5mChangePercent": {
            "type": "number",
            "description": "Percentage change in buy-side trade count versus the previous 5m window."
          },
          "v5m": {
            "type": "number",
            "description": "Total traded token volume during the latest 5m window."
          },
          "v5mUSD": {
            "type": "number",
            "description": "Total traded USD volume during the latest 5m window."
          },
          "vHistory5m": {
            "type": "number",
            "description": "Total traded token volume during the previous 5m window used for comparison."
          },
          "vHistory5mUSD": {
            "type": "number",
            "description": "Total traded USD volume during the previous 5m window used for comparison."
          },
          "v5mChangePercent": {
            "type": "number",
            "description": "Percentage change in total traded token volume versus the previous 5m window."
          },
          "vBuy5m": {
            "type": "number",
            "description": "Buy-side token volume during the latest 5m window."
          },
          "vBuy5mUSD": {
            "type": "number",
            "description": "Buy-side USD volume during the latest 5m window."
          },
          "vBuyHistory5m": {
            "type": "number",
            "description": "Buy-side token volume during the previous 5m window used for comparison."
          },
          "vBuyHistory5mUSD": {
            "type": "number",
            "description": "Buy-side USD volume during the previous 5m window used for comparison."
          },
          "vBuy5mChangePercent": {
            "type": "number",
            "description": "Percentage change in buy-side token volume versus the previous 5m window."
          },
          "vSell5m": {
            "type": "number",
            "description": "Sell-side token volume during the latest 5m window."
          },
          "vSell5mUSD": {
            "type": "number",
            "description": "Sell-side USD volume during the latest 5m window."
          },
          "vSellHistory5m": {
            "type": "number",
            "description": "Sell-side token volume during the previous 5m window used for comparison."
          },
          "vSellHistory5mUSD": {
            "type": "number",
            "description": "Sell-side USD volume during the previous 5m window used for comparison."
          },
          "vSell5mChangePercent": {
            "type": "number",
            "description": "Percentage change in sell-side token volume versus the previous 5m window."
          },
          "history30mPrice": {
            "type": "number",
            "description": "Reference price 30 minutes ago, used as the baseline for the current price change."
          },
          "priceChange30mPercent": {
            "type": "number",
            "description": "Percentage change between the latest price and the baseline price from 30m ago."
          },
          "uniqueWallet30m": {
            "type": "number",
            "description": "Number of distinct wallets that traded the token during the latest 30m window."
          },
          "uniqueWalletHistory30m": {
            "type": "number",
            "description": "Number of distinct wallets that traded the token during the previous 30m window used for comparison."
          },
          "uniqueWallet30mChangePercent": {
            "type": "number",
            "nullable": true,
            "description": "Percentage change in distinct trading wallets versus the previous 30m window."
          },
          "trade30m": {
            "type": "number",
            "description": "Total trade count during the latest 30m window."
          },
          "tradeHistory30m": {
            "type": "number",
            "description": "Total trade count during the previous 30m window used for comparison."
          },
          "trade30mChangePercent": {
            "type": "number",
            "description": "Percentage change in total trade count versus the previous 30m window."
          },
          "sell30m": {
            "type": "number",
            "description": "Sell-side trade count during the latest 30m window."
          },
          "sellHistory30m": {
            "type": "number",
            "description": "Sell-side trade count during the previous 30m window used for comparison."
          },
          "sell30mChangePercent": {
            "type": "number",
            "description": "Percentage change in sell-side trade count versus the previous 30m window."
          },
          "buy30m": {
            "type": "number",
            "description": "Buy-side trade count during the latest 30m window."
          },
          "buyHistory30m": {
            "type": "number",
            "description": "Buy-side trade count during the previous 30m window used for comparison."
          },
          "buy30mChangePercent": {
            "type": "number",
            "description": "Percentage change in buy-side trade count versus the previous 30m window."
          },
          "v30m": {
            "type": "number",
            "description": "Total traded token volume during the latest 30m window."
          },
          "v30mUSD": {
            "type": "number",
            "description": "Total traded USD volume during the latest 30m window."
          },
          "vHistory30m": {
            "type": "number",
            "description": "Total traded token volume during the previous 30m window used for comparison."
          },
          "vHistory30mUSD": {
            "type": "number",
            "description": "Total traded USD volume during the previous 30m window used for comparison."
          },
          "v30mChangePercent": {
            "type": "number",
            "description": "Percentage change in total traded token volume versus the previous 30m window."
          },
          "vBuy30m": {
            "type": "number",
            "description": "Buy-side token volume during the latest 30m window."
          },
          "vBuy30mUSD": {
            "type": "number",
            "description": "Buy-side USD volume during the latest 30m window."
          },
          "vBuyHistory30m": {
            "type": "number",
            "description": "Buy-side token volume during the previous 30m window used for comparison."
          },
          "vBuyHistory30mUSD": {
            "type": "number",
            "description": "Buy-side USD volume during the previous 30m window used for comparison."
          },
          "vBuy30mChangePercent": {
            "type": "number",
            "description": "Percentage change in buy-side token volume versus the previous 30m window."
          },
          "vSell30m": {
            "type": "number",
            "description": "Sell-side token volume during the latest 30m window."
          },
          "vSell30mUSD": {
            "type": "number",
            "description": "Sell-side USD volume during the latest 30m window."
          },
          "vSellHistory30m": {
            "type": "number",
            "description": "Sell-side token volume during the previous 30m window used for comparison."
          },
          "vSellHistory30mUSD": {
            "type": "number",
            "description": "Sell-side USD volume during the previous 30m window used for comparison."
          },
          "vSell30mChangePercent": {
            "type": "number",
            "description": "Percentage change in sell-side token volume versus the previous 30m window."
          },
          "history1hPrice": {
            "type": "number",
            "description": "Reference price 1 hour ago, used as the baseline for the current price change."
          },
          "priceChange1hPercent": {
            "type": "number",
            "description": "Percentage change between the latest price and the baseline price from 1h ago."
          },
          "uniqueWallet1h": {
            "type": "number",
            "description": "Number of distinct wallets that traded the token during the latest 1h window."
          },
          "uniqueWalletHistory1h": {
            "type": "number",
            "description": "Number of distinct wallets that traded the token during the previous 1h window used for comparison."
          },
          "uniqueWallet1hChangePercent": {
            "type": "number",
            "nullable": true,
            "description": "Percentage change in distinct trading wallets versus the previous 1h window."
          },
          "trade1h": {
            "type": "number",
            "description": "Total trade count during the latest 1h window."
          },
          "tradeHistory1h": {
            "type": "number",
            "description": "Total trade count during the previous 1h window used for comparison."
          },
          "trade1hChangePercent": {
            "type": "number",
            "description": "Percentage change in total trade count versus the previous 1h window."
          },
          "sell1h": {
            "type": "number",
            "description": "Sell-side trade count during the latest 1h window."
          },
          "sellHistory1h": {
            "type": "number",
            "description": "Sell-side trade count during the previous 1h window used for comparison."
          },
          "sell1hChangePercent": {
            "type": "number",
            "description": "Percentage change in sell-side trade count versus the previous 1h window."
          },
          "buy1h": {
            "type": "number",
            "description": "Buy-side trade count during the latest 1h window."
          },
          "buyHistory1h": {
            "type": "number",
            "description": "Buy-side trade count during the previous 1h window used for comparison."
          },
          "buy1hChangePercent": {
            "type": "number",
            "description": "Percentage change in buy-side trade count versus the previous 1h window."
          },
          "v1h": {
            "type": "number",
            "description": "Total traded token volume during the latest 1h window."
          },
          "v1hUSD": {
            "type": "number",
            "description": "Total traded USD volume during the latest 1h window."
          },
          "vHistory1h": {
            "type": "number",
            "description": "Total traded token volume during the previous 1h window used for comparison."
          },
          "vHistory1hUSD": {
            "type": "number",
            "description": "Total traded USD volume during the previous 1h window used for comparison."
          },
          "v1hChangePercent": {
            "type": "number",
            "description": "Percentage change in total traded token volume versus the previous 1h window."
          },
          "vBuy1h": {
            "type": "number",
            "description": "Buy-side token volume during the latest 1h window."
          },
          "vBuy1hUSD": {
            "type": "number",
            "description": "Buy-side USD volume during the latest 1h window."
          },
          "vBuyHistory1h": {
            "type": "number",
            "description": "Buy-side token volume during the previous 1h window used for comparison."
          },
          "vBuyHistory1hUSD": {
            "type": "number",
            "description": "Buy-side USD volume during the previous 1h window used for comparison."
          },
          "vBuy1hChangePercent": {
            "type": "number",
            "description": "Percentage change in buy-side token volume versus the previous 1h window."
          },
          "vSell1h": {
            "type": "number",
            "description": "Sell-side token volume during the latest 1h window."
          },
          "vSell1hUSD": {
            "type": "number",
            "description": "Sell-side USD volume during the latest 1h window."
          },
          "vSellHistory1h": {
            "type": "number",
            "description": "Sell-side token volume during the previous 1h window used for comparison."
          },
          "vSellHistory1hUSD": {
            "type": "number",
            "description": "Sell-side USD volume during the previous 1h window used for comparison."
          },
          "vSell1hChangePercent": {
            "type": "number",
            "description": "Percentage change in sell-side token volume versus the previous 1h window."
          },
          "history2hPrice": {
            "type": "number",
            "description": "Reference price 2 hours ago, used as the baseline for the current price change."
          },
          "priceChange2hPercent": {
            "type": "number",
            "description": "Percentage change between the latest price and the baseline price from 2h ago."
          },
          "uniqueWallet2h": {
            "type": "number",
            "description": "Number of distinct wallets that traded the token during the latest 2h window."
          },
          "uniqueWalletHistory2h": {
            "type": "number",
            "description": "Number of distinct wallets that traded the token during the previous 2h window used for comparison."
          },
          "uniqueWallet2hChangePercent": {
            "type": "number",
            "nullable": true,
            "description": "Percentage change in distinct trading wallets versus the previous 2h window."
          },
          "trade2h": {
            "type": "number",
            "description": "Total trade count during the latest 2h window."
          },
          "tradeHistory2h": {
            "type": "number",
            "description": "Total trade count during the previous 2h window used for comparison."
          },
          "trade2hChangePercent": {
            "type": "number",
            "description": "Percentage change in total trade count versus the previous 2h window."
          },
          "sell2h": {
            "type": "number",
            "description": "Sell-side trade count during the latest 2h window."
          },
          "sellHistory2h": {
            "type": "number",
            "description": "Sell-side trade count during the previous 2h window used for comparison."
          },
          "sell2hChangePercent": {
            "type": "number",
            "description": "Percentage change in sell-side trade count versus the previous 2h window."
          },
          "buy2h": {
            "type": "number",
            "description": "Buy-side trade count during the latest 2h window."
          },
          "buyHistory2h": {
            "type": "number",
            "description": "Buy-side trade count during the previous 2h window used for comparison."
          },
          "buy2hChangePercent": {
            "type": "number",
            "description": "Percentage change in buy-side trade count versus the previous 2h window."
          },
          "v2h": {
            "type": "number",
            "description": "Total traded token volume during the latest 2h window."
          },
          "v2hUSD": {
            "type": "number",
            "description": "Total traded USD volume during the latest 2h window."
          },
          "vHistory2h": {
            "type": "number",
            "description": "Total traded token volume during the previous 2h window used for comparison."
          },
          "vHistory2hUSD": {
            "type": "number",
            "description": "Total traded USD volume during the previous 2h window used for comparison."
          },
          "v2hChangePercent": {
            "type": "number",
            "description": "Percentage change in total traded token volume versus the previous 2h window."
          },
          "vBuy2h": {
            "type": "number",
            "description": "Buy-side token volume during the latest 2h window."
          },
          "vBuy2hUSD": {
            "type": "number",
            "description": "Buy-side USD volume during the latest 2h window."
          },
          "vBuyHistory2h": {
            "type": "number",
            "description": "Buy-side token volume during the previous 2h window used for comparison."
          },
          "vBuyHistory2hUSD": {
            "type": "number",
            "description": "Buy-side USD volume during the previous 2h window used for comparison."
          },
          "vBuy2hChangePercent": {
            "type": "number",
            "description": "Percentage change in buy-side token volume versus the previous 2h window."
          },
          "vSell2h": {
            "type": "number",
            "description": "Sell-side token volume during the latest 2h window."
          },
          "vSell2hUSD": {
            "type": "number",
            "description": "Sell-side USD volume during the latest 2h window."
          },
          "vSellHistory2h": {
            "type": "number",
            "description": "Sell-side token volume during the previous 2h window used for comparison."
          },
          "vSellHistory2hUSD": {
            "type": "number",
            "description": "Sell-side USD volume during the previous 2h window used for comparison."
          },
          "vSell2hChangePercent": {
            "type": "number",
            "description": "Percentage change in sell-side token volume versus the previous 2h window."
          },
          "history4hPrice": {
            "type": "number",
            "description": "Reference price 4 hours ago, used as the baseline for the current price change."
          },
          "priceChange4hPercent": {
            "type": "number",
            "description": "Percentage change between the latest price and the baseline price from 4h ago."
          },
          "uniqueWallet4h": {
            "type": "number",
            "description": "Number of distinct wallets that traded the token during the latest 4h window."
          },
          "uniqueWalletHistory4h": {
            "type": "number",
            "description": "Number of distinct wallets that traded the token during the previous 4h window used for comparison."
          },
          "uniqueWallet4hChangePercent": {
            "type": "number",
            "nullable": true,
            "description": "Percentage change in distinct trading wallets versus the previous 4h window."
          },
          "trade4h": {
            "type": "number",
            "description": "Total trade count during the latest 4h window."
          },
          "tradeHistory4h": {
            "type": "number",
            "description": "Total trade count during the previous 4h window used for comparison."
          },
          "trade4hChangePercent": {
            "type": "number",
            "description": "Percentage change in total trade count versus the previous 4h window."
          },
          "sell4h": {
            "type": "number",
            "description": "Sell-side trade count during the latest 4h window."
          },
          "sellHistory4h": {
            "type": "number",
            "description": "Sell-side trade count during the previous 4h window used for comparison."
          },
          "sell4hChangePercent": {
            "type": "number",
            "description": "Percentage change in sell-side trade count versus the previous 4h window."
          },
          "buy4h": {
            "type": "number",
            "description": "Buy-side trade count during the latest 4h window."
          },
          "buyHistory4h": {
            "type": "number",
            "description": "Buy-side trade count during the previous 4h window used for comparison."
          },
          "buy4hChangePercent": {
            "type": "number",
            "description": "Percentage change in buy-side trade count versus the previous 4h window."
          },
          "v4h": {
            "type": "number",
            "description": "Total traded token volume during the latest 4h window."
          },
          "v4hUSD": {
            "type": "number",
            "description": "Total traded USD volume during the latest 4h window."
          },
          "vHistory4h": {
            "type": "number",
            "description": "Total traded token volume during the previous 4h window used for comparison."
          },
          "vHistory4hUSD": {
            "type": "number",
            "description": "Total traded USD volume during the previous 4h window used for comparison."
          },
          "v4hChangePercent": {
            "type": "number",
            "description": "Percentage change in total traded token volume versus the previous 4h window."
          },
          "vBuy4h": {
            "type": "number",
            "description": "Buy-side token volume during the latest 4h window."
          },
          "vBuy4hUSD": {
            "type": "number",
            "description": "Buy-side USD volume during the latest 4h window."
          },
          "vBuyHistory4h": {
            "type": "number",
            "description": "Buy-side token volume during the previous 4h window used for comparison."
          },
          "vBuyHistory4hUSD": {
            "type": "number",
            "description": "Buy-side USD volume during the previous 4h window used for comparison."
          },
          "vBuy4hChangePercent": {
            "type": "number",
            "description": "Percentage change in buy-side token volume versus the previous 4h window."
          },
          "vSell4h": {
            "type": "number",
            "description": "Sell-side token volume during the latest 4h window."
          },
          "vSell4hUSD": {
            "type": "number",
            "description": "Sell-side USD volume during the latest 4h window."
          },
          "vSellHistory4h": {
            "type": "number",
            "description": "Sell-side token volume during the previous 4h window used for comparison."
          },
          "vSellHistory4hUSD": {
            "type": "number",
            "description": "Sell-side USD volume during the previous 4h window used for comparison."
          },
          "vSell4hChangePercent": {
            "type": "number",
            "description": "Percentage change in sell-side token volume versus the previous 4h window."
          },
          "history6hPrice": {
            "type": "number",
            "description": "Reference price 6 hours ago, used as the baseline for the current price change."
          },
          "priceChange6hPercent": {
            "type": "number",
            "description": "Percentage change between the latest price and the baseline price from 6h ago."
          },
          "uniqueWallet6h": {
            "type": "number",
            "description": "Number of distinct wallets that traded the token during the latest 6h window."
          },
          "uniqueWalletHistory6h": {
            "type": "number",
            "description": "Number of distinct wallets that traded the token during the previous 6h window used for comparison."
          },
          "uniqueWallet6hChangePercent": {
            "type": "number",
            "nullable": true,
            "description": "Percentage change in distinct trading wallets versus the previous 6h window."
          },
          "trade6h": {
            "type": "number",
            "description": "Total trade count during the latest 6h window."
          },
          "tradeHistory6h": {
            "type": "number",
            "description": "Total trade count during the previous 6h window used for comparison."
          },
          "trade6hChangePercent": {
            "type": "number",
            "description": "Percentage change in total trade count versus the previous 6h window."
          },
          "sell6h": {
            "type": "number",
            "description": "Sell-side trade count during the latest 6h window."
          },
          "sellHistory6h": {
            "type": "number",
            "description": "Sell-side trade count during the previous 6h window used for comparison."
          },
          "sell6hChangePercent": {
            "type": "number",
            "description": "Percentage change in sell-side trade count versus the previous 6h window."
          },
          "buy6h": {
            "type": "number",
            "description": "Buy-side trade count during the latest 6h window."
          },
          "buyHistory6h": {
            "type": "number",
            "description": "Buy-side trade count during the previous 6h window used for comparison."
          },
          "buy6hChangePercent": {
            "type": "number",
            "description": "Percentage change in buy-side trade count versus the previous 6h window."
          },
          "v6h": {
            "type": "number",
            "description": "Total traded token volume during the latest 6h window."
          },
          "v6hUSD": {
            "type": "number",
            "description": "Total traded USD volume during the latest 6h window."
          },
          "vHistory6h": {
            "type": "number",
            "description": "Total traded token volume during the previous 6h window used for comparison."
          },
          "vHistory6hUSD": {
            "type": "number",
            "description": "Total traded USD volume during the previous 6h window used for comparison."
          },
          "v6hChangePercent": {
            "type": "number",
            "description": "Percentage change in total traded token volume versus the previous 6h window."
          },
          "vBuy6h": {
            "type": "number",
            "description": "Buy-side token volume during the latest 6h window."
          },
          "vBuy6hUSD": {
            "type": "number",
            "description": "Buy-side USD volume during the latest 6h window."
          },
          "vBuyHistory6h": {
            "type": "number",
            "description": "Buy-side token volume during the previous 6h window used for comparison."
          },
          "vBuyHistory6hUSD": {
            "type": "number",
            "description": "Buy-side USD volume during the previous 6h window used for comparison."
          },
          "vBuy6hChangePercent": {
            "type": "number",
            "description": "Percentage change in buy-side token volume versus the previous 6h window."
          },
          "vSell6h": {
            "type": "number",
            "description": "Sell-side token volume during the latest 6h window."
          },
          "vSell6hUSD": {
            "type": "number",
            "description": "Sell-side USD volume during the latest 6h window."
          },
          "vSellHistory6h": {
            "type": "number",
            "description": "Sell-side token volume during the previous 6h window used for comparison."
          },
          "vSellHistory6hUSD": {
            "type": "number",
            "description": "Sell-side USD volume during the previous 6h window used for comparison."
          },
          "vSell6hChangePercent": {
            "type": "number",
            "description": "Percentage change in sell-side token volume versus the previous 6h window."
          },
          "history8hPrice": {
            "type": "number",
            "description": "Reference price 8 hours ago, used as the baseline for the current price change."
          },
          "priceChange8hPercent": {
            "type": "number",
            "description": "Percentage change between the latest price and the baseline price from 8h ago."
          },
          "uniqueWallet8h": {
            "type": "number",
            "description": "Number of distinct wallets that traded the token during the latest 8h window."
          },
          "uniqueWalletHistory8h": {
            "type": "number",
            "description": "Number of distinct wallets that traded the token during the previous 8h window used for comparison."
          },
          "uniqueWallet8hChangePercent": {
            "type": "number",
            "nullable": true,
            "description": "Percentage change in distinct trading wallets versus the previous 8h window."
          },
          "trade8h": {
            "type": "number",
            "description": "Total trade count during the latest 8h window."
          },
          "tradeHistory8h": {
            "type": "number",
            "description": "Total trade count during the previous 8h window used for comparison."
          },
          "trade8hChangePercent": {
            "type": "number",
            "description": "Percentage change in total trade count versus the previous 8h window."
          },
          "sell8h": {
            "type": "number",
            "description": "Sell-side trade count during the latest 8h window."
          },
          "sellHistory8h": {
            "type": "number",
            "description": "Sell-side trade count during the previous 8h window used for comparison."
          },
          "sell8hChangePercent": {
            "type": "number",
            "description": "Percentage change in sell-side trade count versus the previous 8h window."
          },
          "buy8h": {
            "type": "number",
            "description": "Buy-side trade count during the latest 8h window."
          },
          "buyHistory8h": {
            "type": "number",
            "description": "Buy-side trade count during the previous 8h window used for comparison."
          },
          "buy8hChangePercent": {
            "type": "number",
            "description": "Percentage change in buy-side trade count versus the previous 8h window."
          },
          "v8h": {
            "type": "number",
            "description": "Total traded token volume during the latest 8h window."
          },
          "v8hUSD": {
            "type": "number",
            "description": "Total traded USD volume during the latest 8h window."
          },
          "vHistory8h": {
            "type": "number",
            "description": "Total traded token volume during the previous 8h window used for comparison."
          },
          "vHistory8hUSD": {
            "type": "number",
            "description": "Total traded USD volume during the previous 8h window used for comparison."
          },
          "v8hChangePercent": {
            "type": "number",
            "description": "Percentage change in total traded token volume versus the previous 8h window."
          },
          "vBuy8h": {
            "type": "number",
            "description": "Buy-side token volume during the latest 8h window."
          },
          "vBuy8hUSD": {
            "type": "number",
            "description": "Buy-side USD volume during the latest 8h window."
          },
          "vBuyHistory8h": {
            "type": "number",
            "description": "Buy-side token volume during the previous 8h window used for comparison."
          },
          "vBuyHistory8hUSD": {
            "type": "number",
            "description": "Buy-side USD volume during the previous 8h window used for comparison."
          },
          "vBuy8hChangePercent": {
            "type": "number",
            "description": "Percentage change in buy-side token volume versus the previous 8h window."
          },
          "vSell8h": {
            "type": "number",
            "description": "Sell-side token volume during the latest 8h window."
          },
          "vSell8hUSD": {
            "type": "number",
            "description": "Sell-side USD volume during the latest 8h window."
          },
          "vSellHistory8h": {
            "type": "number",
            "description": "Sell-side token volume during the previous 8h window used for comparison."
          },
          "vSellHistory8hUSD": {
            "type": "number",
            "description": "Sell-side USD volume during the previous 8h window used for comparison."
          },
          "vSell8hChangePercent": {
            "type": "number",
            "description": "Percentage change in sell-side token volume versus the previous 8h window."
          },
          "history12hPrice": {
            "type": "number",
            "description": "Reference price 12 hours ago, used as the baseline for the current price change."
          },
          "priceChange12hPercent": {
            "type": "number",
            "description": "Percentage change between the latest price and the baseline price from 12h ago."
          },
          "uniqueWallet12h": {
            "type": "number",
            "description": "Number of distinct wallets that traded the token during the latest 12h window."
          },
          "uniqueWalletHistory12h": {
            "type": "number",
            "description": "Number of distinct wallets that traded the token during the previous 12h window used for comparison."
          },
          "uniqueWallet12hChangePercent": {
            "type": "number",
            "nullable": true,
            "description": "Percentage change in distinct trading wallets versus the previous 12h window."
          },
          "trade12h": {
            "type": "number",
            "description": "Total trade count during the latest 12h window."
          },
          "tradeHistory12h": {
            "type": "number",
            "description": "Total trade count during the previous 12h window used for comparison."
          },
          "trade12hChangePercent": {
            "type": "number",
            "description": "Percentage change in total trade count versus the previous 12h window."
          },
          "sell12h": {
            "type": "number",
            "description": "Sell-side trade count during the latest 12h window."
          },
          "sellHistory12h": {
            "type": "number",
            "description": "Sell-side trade count during the previous 12h window used for comparison."
          },
          "sell12hChangePercent": {
            "type": "number",
            "description": "Percentage change in sell-side trade count versus the previous 12h window."
          },
          "buy12h": {
            "type": "number",
            "description": "Buy-side trade count during the latest 12h window."
          },
          "buyHistory12h": {
            "type": "number",
            "description": "Buy-side trade count during the previous 12h window used for comparison."
          },
          "buy12hChangePercent": {
            "type": "number",
            "description": "Percentage change in buy-side trade count versus the previous 12h window."
          },
          "v12h": {
            "type": "number",
            "description": "Total traded token volume during the latest 12h window."
          },
          "v12hUSD": {
            "type": "number",
            "description": "Total traded USD volume during the latest 12h window."
          },
          "vHistory12h": {
            "type": "number",
            "description": "Total traded token volume during the previous 12h window used for comparison."
          },
          "vHistory12hUSD": {
            "type": "number",
            "description": "Total traded USD volume during the previous 12h window used for comparison."
          },
          "v12hChangePercent": {
            "type": "number",
            "description": "Percentage change in total traded token volume versus the previous 12h window."
          },
          "vBuy12h": {
            "type": "number",
            "description": "Buy-side token volume during the latest 12h window."
          },
          "vBuy12hUSD": {
            "type": "number",
            "description": "Buy-side USD volume during the latest 12h window."
          },
          "vBuyHistory12h": {
            "type": "number",
            "description": "Buy-side token volume during the previous 12h window used for comparison."
          },
          "vBuyHistory12hUSD": {
            "type": "number",
            "description": "Buy-side USD volume during the previous 12h window used for comparison."
          },
          "vBuy12hChangePercent": {
            "type": "number",
            "description": "Percentage change in buy-side token volume versus the previous 12h window."
          },
          "vSell12h": {
            "type": "number",
            "description": "Sell-side token volume during the latest 12h window."
          },
          "vSell12hUSD": {
            "type": "number",
            "description": "Sell-side USD volume during the latest 12h window."
          },
          "vSellHistory12h": {
            "type": "number",
            "description": "Sell-side token volume during the previous 12h window used for comparison."
          },
          "vSellHistory12hUSD": {
            "type": "number",
            "description": "Sell-side USD volume during the previous 12h window used for comparison."
          },
          "vSell12hChangePercent": {
            "type": "number",
            "description": "Percentage change in sell-side token volume versus the previous 12h window."
          },
          "history24hPrice": {
            "type": "number",
            "description": "Reference price 24 hours ago, used as the baseline for the current price change."
          },
          "priceChange24hPercent": {
            "type": "number",
            "description": "Percentage change between the latest price and the baseline price from 24h ago."
          },
          "uniqueWallet24h": {
            "type": "number",
            "description": "Number of distinct wallets that traded the token during the latest 24h window."
          },
          "uniqueWalletHistory24h": {
            "type": "number",
            "description": "Number of distinct wallets that traded the token during the previous 24h window used for comparison."
          },
          "uniqueWallet24hChangePercent": {
            "type": "number",
            "nullable": true,
            "description": "Percentage change in distinct trading wallets versus the previous 24h window."
          },
          "trade24h": {
            "type": "number",
            "description": "Total trade count during the latest 24h window."
          },
          "tradeHistory24h": {
            "type": "number",
            "description": "Total trade count during the previous 24h window used for comparison."
          },
          "trade24hChangePercent": {
            "type": "number",
            "description": "Percentage change in total trade count versus the previous 24h window."
          },
          "sell24h": {
            "type": "number",
            "description": "Sell-side trade count during the latest 24h window."
          },
          "sellHistory24h": {
            "type": "number",
            "description": "Sell-side trade count during the previous 24h window used for comparison."
          },
          "sell24hChangePercent": {
            "type": "number",
            "description": "Percentage change in sell-side trade count versus the previous 24h window."
          },
          "buy24h": {
            "type": "number",
            "description": "Buy-side trade count during the latest 24h window."
          },
          "buyHistory24h": {
            "type": "number",
            "description": "Buy-side trade count during the previous 24h window used for comparison."
          },
          "buy24hChangePercent": {
            "type": "number",
            "description": "Percentage change in buy-side trade count versus the previous 24h window."
          },
          "v24h": {
            "type": "number",
            "description": "Total traded token volume during the latest 24h window."
          },
          "v24hUSD": {
            "type": "number",
            "description": "Total traded USD volume during the latest 24h window."
          },
          "vHistory24h": {
            "type": "number",
            "description": "Total traded token volume during the previous 24h window used for comparison."
          },
          "vHistory24hUSD": {
            "type": "number",
            "description": "Total traded USD volume during the previous 24h window used for comparison."
          },
          "v24hChangePercent": {
            "type": "number",
            "description": "Percentage change in total traded token volume versus the previous 24h window."
          },
          "vBuy24h": {
            "type": "number",
            "description": "Buy-side token volume during the latest 24h window."
          },
          "vBuy24hUSD": {
            "type": "number",
            "description": "Buy-side USD volume during the latest 24h window."
          },
          "vBuyHistory24h": {
            "type": "number",
            "description": "Buy-side token volume during the previous 24h window used for comparison."
          },
          "vBuyHistory24hUSD": {
            "type": "number",
            "description": "Buy-side USD volume during the previous 24h window used for comparison."
          },
          "vBuy24hChangePercent": {
            "type": "number",
            "description": "Percentage change in buy-side token volume versus the previous 24h window."
          },
          "vSell24h": {
            "type": "number",
            "description": "Sell-side token volume during the latest 24h window."
          },
          "vSell24hUSD": {
            "type": "number",
            "description": "Sell-side USD volume during the latest 24h window."
          },
          "vSellHistory24h": {
            "type": "number",
            "description": "Sell-side token volume during the previous 24h window used for comparison."
          },
          "vSellHistory24hUSD": {
            "type": "number",
            "description": "Sell-side USD volume during the previous 24h window used for comparison."
          },
          "vSell24hChangePercent": {
            "type": "number",
            "description": "Percentage change in sell-side token volume versus the previous 24h window."
          },
          "view30m": {
            "type": "number",
            "nullable": true,
            "description": "Total page or token-detail views during the latest 30m window when view analytics are available."
          },
          "viewHistory30m": {
            "type": "number",
            "nullable": true,
            "description": "Total page or token-detail views during the previous 30m window used for comparison."
          },
          "view30mChangePercent": {
            "type": "number",
            "nullable": true,
            "description": "Percentage change in total views versus the previous 30m window."
          },
          "uniqueView30m": {
            "type": "number",
            "nullable": true,
            "description": "Number of distinct viewers during the latest 30m window when view analytics are available."
          },
          "uniqueViewHistory30m": {
            "type": "number",
            "nullable": true,
            "description": "Number of distinct viewers during the previous 30m window used for comparison."
          },
          "uniqueView30mChangePercent": {
            "type": "number",
            "nullable": true,
            "description": "Percentage change in distinct viewers versus the previous 30m window."
          },
          "view1h": {
            "type": "number",
            "nullable": true,
            "description": "Total page or token-detail views during the latest 1h window when view analytics are available."
          },
          "viewHistory1h": {
            "type": "number",
            "nullable": true,
            "description": "Total page or token-detail views during the previous 1h window used for comparison."
          },
          "view1hChangePercent": {
            "type": "number",
            "nullable": true,
            "description": "Percentage change in total views versus the previous 1h window."
          },
          "uniqueView1h": {
            "type": "number",
            "nullable": true,
            "description": "Number of distinct viewers during the latest 1h window when view analytics are available."
          },
          "uniqueViewHistory1h": {
            "type": "number",
            "nullable": true,
            "description": "Number of distinct viewers during the previous 1h window used for comparison."
          },
          "uniqueView1hChangePercent": {
            "type": "number",
            "nullable": true,
            "description": "Percentage change in distinct viewers versus the previous 1h window."
          },
          "view2h": {
            "type": "number",
            "nullable": true,
            "description": "Total page or token-detail views during the latest 2h window when view analytics are available."
          },
          "viewHistory2h": {
            "type": "number",
            "nullable": true,
            "description": "Total page or token-detail views during the previous 2h window used for comparison."
          },
          "view2hChangePercent": {
            "type": "number",
            "nullable": true,
            "description": "Percentage change in total views versus the previous 2h window."
          },
          "uniqueView2h": {
            "type": "number",
            "nullable": true,
            "description": "Number of distinct viewers during the latest 2h window when view analytics are available."
          },
          "uniqueViewHistory2h": {
            "type": "number",
            "nullable": true,
            "description": "Number of distinct viewers during the previous 2h window used for comparison."
          },
          "uniqueView2hChangePercent": {
            "type": "number",
            "nullable": true,
            "description": "Percentage change in distinct viewers versus the previous 2h window."
          },
          "view4h": {
            "type": "number",
            "nullable": true,
            "description": "Total page or token-detail views during the latest 4h window when view analytics are available."
          },
          "viewHistory4h": {
            "type": "number",
            "nullable": true,
            "description": "Total page or token-detail views during the previous 4h window used for comparison."
          },
          "view4hChangePercent": {
            "type": "number",
            "nullable": true,
            "description": "Percentage change in total views versus the previous 4h window."
          },
          "uniqueView4h": {
            "type": "number",
            "nullable": true,
            "description": "Number of distinct viewers during the latest 4h window when view analytics are available."
          },
          "uniqueViewHistory4h": {
            "type": "number",
            "nullable": true,
            "description": "Number of distinct viewers during the previous 4h window used for comparison."
          },
          "uniqueView4hChangePercent": {
            "type": "number",
            "nullable": true,
            "description": "Percentage change in distinct viewers versus the previous 4h window."
          },
          "view8h": {
            "type": "number",
            "nullable": true,
            "description": "Total page or token-detail views during the latest 8h window when view analytics are available."
          },
          "viewHistory8h": {
            "type": "number",
            "nullable": true,
            "description": "Total page or token-detail views during the previous 8h window used for comparison."
          },
          "view8hChangePercent": {
            "type": "number",
            "nullable": true,
            "description": "Percentage change in total views versus the previous 8h window."
          },
          "uniqueView8h": {
            "type": "number",
            "nullable": true,
            "description": "Number of distinct viewers during the latest 8h window when view analytics are available."
          },
          "uniqueViewHistory8h": {
            "type": "number",
            "nullable": true,
            "description": "Number of distinct viewers during the previous 8h window used for comparison."
          },
          "uniqueView8hChangePercent": {
            "type": "number",
            "nullable": true,
            "description": "Percentage change in distinct viewers versus the previous 8h window."
          },
          "view24h": {
            "type": "number",
            "nullable": true,
            "description": "Total page or token-detail views during the latest 24h window when view analytics are available."
          },
          "viewHistory24h": {
            "type": "number",
            "nullable": true,
            "description": "Total page or token-detail views during the previous 24h window used for comparison."
          },
          "view24hChangePercent": {
            "type": "number",
            "nullable": true,
            "description": "Percentage change in total views versus the previous 24h window."
          },
          "uniqueView24h": {
            "type": "number",
            "nullable": true,
            "description": "Number of distinct viewers during the latest 24h window when view analytics are available."
          },
          "uniqueViewHistory24h": {
            "type": "number",
            "nullable": true,
            "description": "Number of distinct viewers during the previous 24h window used for comparison."
          },
          "uniqueView24hChangePercent": {
            "type": "number",
            "nullable": true,
            "description": "Percentage change in distinct viewers versus the previous 24h window."
          }
        },
        "additionalProperties": true
      },
      "DefiTokenOverviewOtherChainsData": {
        "type": "object",
        "description": "Lighter overview shape returned on other supported chains, focused on token identity, price, liquidity, and timestamps.",
        "properties": {
          "address": {
            "type": "string",
            "description": "Token mint or contract address."
          },
          "decimals": {
            "type": "integer",
            "description": "Number of decimal places used by the token."
          },
          "symbol": {
            "type": "string",
            "description": "Ticker symbol for the token."
          },
          "name": {
            "type": "string",
            "description": "Display name of the token."
          },
          "marketCap": {
            "type": "number",
            "description": "Current market capitalization based on circulating supply and latest price."
          },
          "fdv": {
            "type": "number",
            "description": "Fully diluted valuation based on total supply and latest price."
          },
          "totalSupply": {
            "type": "number",
            "description": "Total token supply. On Solana Token-2022 scaled UI mode this may be scaled for display."
          },
          "circulatingSupply": {
            "type": "number",
            "description": "Circulating token supply. On Solana Token-2022 scaled UI mode this may be scaled for display."
          },
          "extensions": {
            "type": "object",
            "nullable": true,
            "description": "Optional token metadata links and external identifiers.",
            "additionalProperties": {
              "type": [
                "string",
                "number",
                "boolean",
                "null"
              ]
            }
          },
          "logoURI": {
            "type": "string",
            "description": "Logo image URL for the token."
          },
          "liquidity": {
            "type": "number",
            "description": "Current token liquidity in USD."
          },
          "lastTradeUnixTime": {
            "type": "integer",
            "description": "Unix timestamp in seconds of the latest observed trade."
          },
          "lastTradeHumanTime": {
            "type": "string",
            "description": "Human-readable timestamp of the latest observed trade."
          },
          "price": {
            "type": "number",
            "description": "Latest token price in USD."
          },
          "createdAt": {
            "type": "string",
            "format": "date-time",
            "description": "Token creation or indexing timestamp when available on that chain family."
          },
          "lastPriceUpdatedUnixTime": {
            "type": "integer",
            "description": "Unix timestamp in seconds when the latest price was updated in the overview cache."
          },
          "watch": {
            "type": "number",
            "nullable": true,
            "description": "Tracked watch count when available on that chain family."
          }
        },
        "additionalProperties": true
      },
      "DefiTokenOverviewResponse": {
        "type": "object",
        "required": [
          "success",
          "data"
        ],
        "properties": {
          "success": {
            "type": "boolean",
            "description": "Whether the request completed successfully."
          },
          "data": {
            "oneOf": [
              {
                "$ref": "#/components/schemas/DefiTokenOverviewCoreChainsData"
              },
              {
                "$ref": "#/components/schemas/DefiTokenOverviewOtherChainsData"
              }
            ],
            "description": "Comprehensive token overview. Returned shape depends on whether the request is on a core chain or another supported chain."
          }
        }
      },
      "SolanaTokenSecurityData": {
        "type": "object",
        "description": "Security profile returned for Solana tokens, including creator, authority, concentration, and token-standard controls.",
        "additionalProperties": true,
        "properties": {
          "creatorAddress": {
            "type": "string",
            "description": "Wallet or contract address identified as the token creator or deployer."
          },
          "creatorBalance": {
            "type": [
              "number",
              "string",
              "null"
            ],
            "description": "Current token balance held by the creator address."
          },
          "creatorPercentage": {
            "type": [
              "number",
              "string",
              "null"
            ],
            "description": "Share of total supply held by creatorAddress. Multiply by 100 if you need percent display."
          },
          "ownerAddress": {
            "type": [
              "string",
              "null"
            ],
            "description": "Current token owner or privileged owner address, when the token standard exposes one."
          },
          "ownerBalance": {
            "type": [
              "number",
              "string",
              "null"
            ],
            "description": "Current token balance held by ownerAddress."
          },
          "ownerPercentage": {
            "type": [
              "number",
              "string",
              "null"
            ],
            "description": "Share of total supply held by ownerAddress. Multiply by 100 if you need percent display."
          },
          "totalSupply": {
            "type": [
              "number",
              "string",
              "null"
            ],
            "description": "Current total token supply."
          },
          "creatorOwnerAddress": {
            "type": [
              "string",
              "null"
            ],
            "description": "Owner of the creator wallet when that relationship is known."
          },
          "ownerOfOwnerAddress": {
            "type": [
              "string",
              "null"
            ],
            "description": "Owner of ownerAddress when Birdeye can resolve a higher-level owner."
          },
          "creationTx": {
            "type": [
              "string",
              "null"
            ],
            "description": "Transaction signature that created the token or mint account."
          },
          "creationTime": {
            "type": [
              "integer",
              "null"
            ],
            "description": "Unix timestamp in seconds when the token was created."
          },
          "creationSlot": {
            "type": [
              "integer",
              "null"
            ],
            "description": "Solana slot when the token was created."
          },
          "mintTx": {
            "type": [
              "string",
              "null"
            ],
            "description": "Transaction signature for the mint or initial issuance event."
          },
          "mintTime": {
            "type": [
              "integer",
              "null"
            ],
            "description": "Unix timestamp in seconds of the mint or issuance event."
          },
          "mintSlot": {
            "type": [
              "integer",
              "null"
            ],
            "description": "Solana slot of the mint or issuance event."
          },
          "metaplexUpdateAuthority": {
            "type": [
              "string",
              "null"
            ],
            "description": "Metaplex update authority that can modify on-chain token metadata."
          },
          "metaplexOwnerUpdateAuthority": {
            "type": [
              "string",
              "null"
            ],
            "description": "Owner of the Metaplex update authority, when resolvable."
          },
          "metaplexUpdateAuthorityBalance": {
            "type": [
              "number",
              "null"
            ],
            "description": "Current token balance held by the Metaplex update authority."
          },
          "metaplexUpdateAuthorityPercent": {
            "type": [
              "number",
              "null"
            ],
            "description": "Share of total supply held by the Metaplex update authority. Multiply by 100 if you need percent display."
          },
          "mutableMetadata": {
            "type": [
              "boolean",
              "null"
            ],
            "description": "Whether token metadata is still mutable."
          },
          "top10HolderBalance": {
            "type": [
              "number",
              "null"
            ],
            "description": "Combined token balance held by the top 10 holder accounts."
          },
          "top10HolderPercent": {
            "type": [
              "number",
              "null"
            ],
            "description": "Combined share of total supply held by the top 10 holder accounts."
          },
          "top10UserBalance": {
            "type": [
              "number",
              "null"
            ],
            "description": "Combined token balance held by the top 10 unique users after deduplicating related holder accounts."
          },
          "top10UserPercent": {
            "type": [
              "number",
              "null"
            ],
            "description": "Combined share of total supply held by the top 10 unique users."
          },
          "isTrueToken": {
            "type": [
              "boolean",
              "null"
            ],
            "description": "Birdeye trust heuristic for whether the token is recognized as the intended or canonical asset."
          },
          "fakeToken": {
            "type": [
              "boolean",
              "null"
            ],
            "description": "Birdeye heuristic flag for likely imitation or spoofed tokens."
          },
          "preMarketHolder": {
            "type": "array",
            "description": "List of pre-market or pre-launch holders when such attribution is available.",
            "items": {
              "type": "object",
              "additionalProperties": true
            }
          },
          "lockInfo": {
            "type": [
              "object",
              "null"
            ],
            "description": "Lock metadata for the token or related pool when supported.",
            "additionalProperties": true
          },
          "freezeable": {
            "type": [
              "boolean",
              "null"
            ],
            "description": "Whether the token can be frozen by a privileged authority."
          },
          "freezeAuthority": {
            "type": [
              "string",
              "null"
            ],
            "description": "Authority address that can freeze token accounts on supported token standards."
          },
          "transferFeeEnable": {
            "type": [
              "boolean",
              "null"
            ],
            "description": "Whether transfer fees are enabled for the token."
          },
          "transferFeeData": {
            "type": [
              "object",
              "null"
            ],
            "description": "Transfer fee configuration object for supported token standards.",
            "additionalProperties": true
          },
          "isToken2022": {
            "type": [
              "boolean",
              "null"
            ],
            "description": "Whether this asset uses the Token-2022 program."
          },
          "nonTransferable": {
            "type": [
              "boolean",
              "null"
            ],
            "description": "Whether the token is configured as non-transferable."
          },
          "jupStrictList": {
            "type": [
              "boolean",
              "null"
            ],
            "description": "Whether the token appears on Jupiter's strict list."
          }
        }
      },
      "EvmTokenSecurityData": {
        "type": "object",
        "description": "Security profile returned for EVM tokens, including trading restrictions, ownership controls, tax flags, and LP lock analysis.",
        "additionalProperties": true,
        "properties": {
          "creatorAddress": {
            "type": "string",
            "description": "Wallet or contract address identified as the token creator or deployer."
          },
          "creatorBalance": {
            "type": [
              "number",
              "string",
              "null"
            ],
            "description": "Current token balance held by the creator address."
          },
          "creatorPercentage": {
            "type": [
              "number",
              "string",
              "null"
            ],
            "description": "Share of total supply held by creatorAddress. Multiply by 100 if you need percent display."
          },
          "ownerAddress": {
            "type": [
              "string",
              "null"
            ],
            "description": "Current token owner or privileged owner address, when the token standard exposes one."
          },
          "ownerBalance": {
            "type": [
              "number",
              "string",
              "null"
            ],
            "description": "Current token balance held by ownerAddress."
          },
          "ownerPercentage": {
            "type": [
              "number",
              "string",
              "null"
            ],
            "description": "Share of total supply held by ownerAddress. Multiply by 100 if you need percent display."
          },
          "totalSupply": {
            "type": [
              "number",
              "string",
              "null"
            ],
            "description": "Current total token supply."
          },
          "antiWhaleModifiable": {
            "type": [
              "string",
              "null"
            ],
            "description": "Flag indicating whether anti-whale restrictions can still be modified."
          },
          "buyTax": {
            "type": [
              "string",
              "null"
            ],
            "description": "Configured buy tax, usually expressed as a stringified numeric value."
          },
          "canTakeBackOwnership": {
            "type": [
              "string",
              "null"
            ],
            "description": "Flag indicating whether ownership can be reclaimed after renouncing or transferring it."
          },
          "cannotBuy": {
            "type": [
              "string",
              "null"
            ],
            "description": "Flag indicating whether buys are blocked under current contract rules."
          },
          "cannotSellAll": {
            "type": [
              "string",
              "null"
            ],
            "description": "Flag indicating whether users may be prevented from fully selling their holdings."
          },
          "externalCall": {
            "type": [
              "string",
              "null"
            ],
            "description": "Flag for whether the contract performs external calls that may affect trading behavior or risk."
          },
          "hiddenOwner": {
            "type": [
              "string",
              "null"
            ],
            "description": "Flag for whether hidden ownership or hidden privileged control is detected."
          },
          "holderCount": {
            "type": [
              "string",
              "null"
            ],
            "description": "Number of holder addresses tracked for the token."
          },
          "honeypotWithSameCreator": {
            "type": [
              "string",
              "null"
            ],
            "description": "Count of honeypot tokens previously linked to the same creator, when available."
          },
          "isAntiWhale": {
            "type": [
              "string",
              "null"
            ],
            "description": "Flag indicating anti-whale limits such as max wallet or max transaction rules."
          },
          "isBlacklisted": {
            "type": [
              "string",
              "null"
            ],
            "description": "Flag indicating blacklist logic exists or is currently active."
          },
          "isHoneypot": {
            "type": [
              "string",
              "null"
            ],
            "description": "Flag indicating honeypot behavior was detected."
          },
          "isInDex": {
            "type": [
              "string",
              "null"
            ],
            "description": "Flag indicating whether the token is currently trading on a decentralized exchange."
          },
          "isMintable": {
            "type": [
              "string",
              "null"
            ],
            "description": "Flag indicating the token supply can still be minted."
          },
          "isOpenSource": {
            "type": [
              "string",
              "null"
            ],
            "description": "Flag indicating verified or open-source contract code is available."
          },
          "isProxy": {
            "type": [
              "string",
              "null"
            ],
            "description": "Flag indicating the token contract uses a proxy pattern."
          },
          "isWhitelisted": {
            "type": [
              "string",
              "null"
            ],
            "description": "Flag indicating whitelist logic exists or can control who is allowed to trade."
          },
          "lpHolderCount": {
            "type": [
              "string",
              "null"
            ],
            "description": "Number of tracked LP holder addresses for the token's main liquidity pools."
          },
          "lpHolders": {
            "type": "array",
            "description": "Liquidity-provider holders and locker contracts associated with the token's LP supply.",
            "items": {
              "type": "object",
              "additionalProperties": true,
              "properties": {
                "address": {
                  "type": "string",
                  "description": "LP holder or locker address."
                },
                "tag": {
                  "type": [
                    "string",
                    "null"
                  ],
                  "description": "Human-readable label for the LP holder, such as a locker provider name."
                },
                "value": {
                  "type": [
                    "number",
                    "string",
                    "null"
                  ],
                  "description": "Auxiliary valuation field when available from the underlying security provider."
                },
                "is_contract": {
                  "type": [
                    "integer",
                    "boolean",
                    "null"
                  ],
                  "description": "Whether the LP holder address is a contract."
                },
                "balance": {
                  "type": [
                    "number",
                    "string",
                    "null"
                  ],
                  "description": "LP token balance held by this address."
                },
                "percent": {
                  "type": [
                    "number",
                    "string",
                    "null"
                  ],
                  "description": "Share of LP total supply held by this address."
                },
                "NFT_list": {
                  "type": [
                    "array",
                    "null"
                  ],
                  "description": "Associated NFT positions when the locker or LP position is NFT-based.",
                  "items": {
                    "type": "object",
                    "additionalProperties": true
                  }
                },
                "is_locked": {
                  "type": [
                    "integer",
                    "boolean",
                    "null"
                  ],
                  "description": "Whether the LP position is currently locked or burned."
                },
                "locked_detail": {
                  "type": [
                    "array",
                    "null"
                  ],
                  "description": "Detailed lock tranches for this LP holder when available.",
                  "items": {
                    "type": "object",
                    "additionalProperties": true,
                    "properties": {
                      "amount": {
                        "type": [
                          "number",
                          "string",
                          "null"
                        ],
                        "description": "Amount of LP tokens covered by this lock tranche."
                      },
                      "end_time": {
                        "type": [
                          "string",
                          "null"
                        ],
                        "description": "ISO-8601 timestamp when this lock tranche unlocks."
                      },
                      "opt_time": {
                        "type": [
                          "string",
                          "null"
                        ],
                        "description": "ISO-8601 timestamp when the lock operation was recorded."
                      }
                    }
                  }
                }
              }
            }
          },
          "lpTotalSupply": {
            "type": [
              "string",
              "null"
            ],
            "description": "Total LP token supply tracked for the token's primary liquidity pools."
          },
          "ownerChangeBalance": {
            "type": [
              "string",
              "null"
            ],
            "description": "Owner balance delta or owner-controlled balance metric from the security provider."
          },
          "personalSlippageModifiable": {
            "type": [
              "string",
              "null"
            ],
            "description": "Flag indicating per-wallet slippage rules can still be changed."
          },
          "sellTax": {
            "type": [
              "string",
              "null"
            ],
            "description": "Configured sell tax, usually expressed as a stringified numeric value."
          },
          "slippageModifiable": {
            "type": [
              "string",
              "null"
            ],
            "description": "Flag indicating trading slippage constraints can still be modified."
          },
          "tokenName": {
            "type": [
              "string",
              "null"
            ],
            "description": "Token name reported by the security provider."
          },
          "tokenSymbol": {
            "type": [
              "string",
              "null"
            ],
            "description": "Token symbol reported by the security provider."
          },
          "tradingCooldown": {
            "type": [
              "string",
              "null"
            ],
            "description": "Flag indicating whether cooldown rules exist between trades."
          },
          "transferPausable": {
            "type": [
              "string",
              "null"
            ],
            "description": "Flag indicating token transfers can be paused by a privileged role."
          }
        }
      },
      "DefiTokenSecurityResponse": {
        "type": "object",
        "required": [
          "success",
          "data"
        ],
        "properties": {
          "success": {
            "type": "boolean",
            "description": "Whether the request succeeded."
          },
          "data": {
            "oneOf": [
              {
                "$ref": "#/components/schemas/SolanaTokenSecurityData"
              },
              {
                "$ref": "#/components/schemas/EvmTokenSecurityData"
              }
            ],
            "description": "Token security profile. Returned shape depends on the chain family."
          }
        }
      },
      "DefiTokenMarketDataSingleResponse": {
        "type": "object",
        "required": [
          "success",
          "data"
        ],
        "properties": {
          "success": {
            "type": "boolean",
            "description": "Whether the request completed successfully."
          },
          "data": {
            "$ref": "#/components/schemas/DefiTokenMarketDataObject"
          }
        }
      },
      "DefiTokenMarketDataMultipleResponse": {
        "type": "object",
        "required": [
          "success",
          "data"
        ],
        "properties": {
          "success": {
            "type": "boolean",
            "description": "Whether the request completed successfully."
          },
          "data": {
            "type": "object",
            "description": "Map keyed by token address. Each value is the token market-data object for that token, or `null` when market data is unavailable.",
            "additionalProperties": {
              "$ref": "#/components/schemas/DefiTokenMarketDataObject"
            },
            "maxProperties": 50
          }
        }
      },
      "DefiTokenTradeDataSingleResponse": {
        "type": "object",
        "required": [
          "success",
          "data"
        ],
        "properties": {
          "success": {
            "type": "boolean",
            "description": "Whether the request completed successfully."
          },
          "data": {
            "$ref": "#/components/schemas/DefiTokenTradeDataObject"
          }
        }
      },
      "DefiTokenTradeDataMultipleResponse": {
        "type": "object",
        "required": [
          "success",
          "data"
        ],
        "properties": {
          "success": {
            "type": "boolean",
            "description": "Whether the request completed successfully."
          },
          "data": {
            "type": "object",
            "description": "Map keyed by token address. Each value is the token trade-data object for that token, or `null` when trade data is unavailable.",
            "additionalProperties": {
              "$ref": "#/components/schemas/DefiTokenTradeDataObject"
            },
            "maxProperties": 50
          }
        }
      },
      "DefiTokenHolderResponse": {
        "type": "object",
        "description": "Response containing a paginated list of token holders for a Solana token.",
        "required": [
          "success",
          "data"
        ],
        "properties": {
          "success": {
            "type": "boolean",
            "description": "Indicates whether the request was successful."
          },
          "data": {
            "type": "object",
            "description": "Paginated token holder result.",
            "properties": {
              "holder": {
                "type": "integer",
                "description": "Total holder count. In token_account mode this follows the existing token-account holder stats; in wallet mode this is wallet-level holder count."
              },
              "top10HoldPercent": {
                "type": "number",
                "description": "Percentage of token supply held by the top 10 holders. In wallet mode this is calculated by wallet-level holder distribution."
              },
              "items": {
                "type": "array",
                "description": "List of token holders sorted by balance.",
                "items": {
                  "type": "object",
                  "description": "A token account and owner wallet holding the token.",
                  "properties": {
                    "amount": {
                      "oneOf": [
                        {
                          "type": "string"
                        },
                        {
                          "type": "number"
                        }
                      ],
                      "description": "Raw token balance before applying decimals in token_account mode, or wallet holding amount in wallet mode."
                    },
                    "amountUsd": {
                      "type": "number",
                      "description": "Wallet holding amount in USD. Returned in wallet mode."
                    },
                    "decimals": {
                      "type": "integer",
                      "description": "Number of decimal places used by the token mint."
                    },
                    "mint": {
                      "type": "string",
                      "description": "Token mint address."
                    },
                    "owner": {
                      "type": "string",
                      "description": "Wallet address that owns the token account."
                    },
                    "token_account": {
                      "type": "string",
                      "description": "Token account address that holds the balance."
                    },
                    "ui_amount": {
                      "type": "number",
                      "description": "Token balance after applying decimals or Solana Token-2022 scaled UI amount when requested and supported."
                    },
                    "isScaledUiToken": {
                      "type": "boolean",
                      "description": "Whether the token uses Solana Token-2022 scaled UI amount. Returned in token_account and wallet modes."
                    },
                    "multiplier": {
                      "type": "number",
                      "nullable": true,
                      "description": "Scaled UI multiplier when the token uses scaled UI amount; otherwise null."
                    },
                    "holdAvgPrice": {
                      "type": "number",
                      "description": "Average price of the current holder position. Returned in wallet mode."
                    },
                    "avgBuyPrice": {
                      "type": "number",
                      "description": "Average buy price for the holder wallet. Returned in wallet mode."
                    },
                    "avgSellPrice": {
                      "type": "number",
                      "description": "Average sell price for the holder wallet. Returned in wallet mode."
                    },
                    "firstTradeUnixTime": {
                      "type": "integer",
                      "description": "Unix timestamp of the holder wallet's first trade for the token. Returned in wallet mode."
                    },
                    "lastTradeUnixTime": {
                      "type": "integer",
                      "description": "Unix timestamp of the holder wallet's last trade for the token. Returned in wallet mode."
                    },
                    "netWorth": {
                      "type": "number",
                      "description": "Holder wallet net worth. Returned only when mode=wallet and get_holder_infos=true."
                    },
                    "solBalance": {
                      "type": "number",
                      "description": "Holder wallet SOL balance. Returned only when mode=wallet and get_holder_infos=true."
                    },
                    "funding": {
                      "type": "object",
                      "description": "Funding details for the holder wallet. Returned only when mode=wallet and get_holder_infos=true.",
                      "properties": {
                        "funder": {
                          "type": "string",
                          "description": "Address of the wallet that initially funded this holder wallet."
                        },
                        "unixTime": {
                          "type": "integer",
                          "description": "Unix timestamp in seconds of the funding transaction."
                        },
                        "amount": {
                          "type": "number",
                          "description": "Funding amount transferred in the native token."
                        },
                        "txHash": {
                          "type": "string",
                          "description": "Transaction hash of the funding event."
                        }
                      }
                    }
                  }
                }
              }
            }
          }
        }
      },
      "DefiTokenMintBurnTxsResponse": {
        "type": "object",
        "required": [
          "success",
          "data"
        ],
        "properties": {
          "success": {
            "type": "boolean"
          },
          "data": {
            "type": "object",
            "properties": {
              "items": {
                "type": "array",
                "items": {
                  "type": "object",
                  "properties": {
                    "amount": {
                      "type": "string"
                    },
                    "block_human_time": {
                      "type": "string"
                    },
                    "block_time": {
                      "type": "number"
                    },
                    "common_type": {
                      "type": "string"
                    },
                    "decimals": {
                      "type": "number"
                    },
                    "mint": {
                      "type": "string"
                    },
                    "program_id": {
                      "type": "string"
                    },
                    "slot": {
                      "type": "number"
                    },
                    "tx_hash": {
                      "type": "string"
                    },
                    "ui_amount": {
                      "type": "number"
                    },
                    "ui_amount_string": {
                      "type": "string"
                    }
                  }
                }
              }
            }
          }
        }
      },
      "DefiTokenListV3Response": {
        "type": "object",
        "required": [
          "success",
          "data"
        ],
        "properties": {
          "success": {
            "type": "boolean",
            "description": "Whether the request completed successfully."
          },
          "data": {
            "type": "object",
            "description": "Token-list payload with screener-style market, price, and activity metrics.",
            "properties": {
              "items": {
                "type": "array",
                "description": "Token rows returned for the request.",
                "items": {
                  "type": "object",
                  "description": "One token row from the V3 token list.",
                  "properties": {
                    "address": {
                      "type": "string",
                      "description": "Token mint or contract address."
                    },
                    "name": {
                      "type": "string",
                      "description": "Display name of the token."
                    },
                    "symbols": {
                      "type": "string",
                      "description": "Ticker symbol or symbol string returned by the listing service."
                    },
                    "decimals": {
                      "type": "integer",
                      "description": "Number of decimal places used by the token."
                    },
                    "logo_uri": {
                      "type": "string",
                      "description": "Logo image URL for the token."
                    },
                    "market_cap": {
                      "type": "number",
                      "description": "Current market capitalization based on circulating supply and latest price."
                    },
                    "fdv": {
                      "type": "number",
                      "description": "Fully diluted valuation based on total supply and latest price."
                    },
                    "liquidity": {
                      "type": "number",
                      "description": "Current token liquidity in USD."
                    },
                    "price": {
                      "type": "number",
                      "description": "Latest token price in USD."
                    },
                    "holder": {
                      "type": "integer",
                      "description": "Current holder count when holder data is available."
                    },
                    "volume_1h_usd": {
                      "type": "number",
                      "description": "Total traded USD volume during the latest 1-hour window."
                    },
                    "volume_1h_change_percent": {
                      "type": "number",
                      "description": "Percentage change in 1-hour USD volume versus the previous 1-hour window."
                    },
                    "price_change_1h_percent": {
                      "type": "number",
                      "description": "Percentage change in price over the latest 1-hour window."
                    },
                    "trade_1h_count": {
                      "type": "integer",
                      "description": "Total trade count during the latest 1-hour window."
                    },
                    "volume_2h_usd": {
                      "type": "number",
                      "description": "Total traded USD volume during the latest 2-hour window."
                    },
                    "volume_2h_change_percent": {
                      "type": "number",
                      "description": "Percentage change in 2-hour USD volume versus the previous 2-hour window."
                    },
                    "price_change_2h_percent": {
                      "type": "number",
                      "description": "Percentage change in price over the latest 2-hour window."
                    },
                    "trade_2h_count": {
                      "type": "integer",
                      "description": "Total trade count during the latest 2-hour window."
                    },
                    "volume_4h_usd": {
                      "type": "number",
                      "description": "Total traded USD volume during the latest 4-hour window."
                    },
                    "volume_4h_change_percent": {
                      "type": "number",
                      "description": "Percentage change in 4-hour USD volume versus the previous 4-hour window."
                    },
                    "price_change_4h_percent": {
                      "type": "number",
                      "description": "Percentage change in price over the latest 4-hour window."
                    },
                    "trade_4h_count": {
                      "type": "integer",
                      "description": "Total trade count during the latest 4-hour window."
                    },
                    "volume_8h_usd": {
                      "type": "number",
                      "description": "Total traded USD volume during the latest 8-hour window."
                    },
                    "volume_8h_change_percent": {
                      "type": "number",
                      "description": "Percentage change in 8-hour USD volume versus the previous 8-hour window."
                    },
                    "price_change_8h_percent": {
                      "type": "number",
                      "description": "Percentage change in price over the latest 8-hour window."
                    },
                    "trade_8h_count": {
                      "type": "integer",
                      "description": "Total trade count during the latest 8-hour window."
                    },
                    "volume_24h_usd": {
                      "type": "number",
                      "description": "Total traded USD volume during the latest 24-hour window."
                    },
                    "volume_24h_change_percent": {
                      "type": "number",
                      "description": "Percentage change in 24-hour USD volume versus the previous 24-hour window."
                    },
                    "price_change_24h_percent": {
                      "type": "number",
                      "description": "Percentage change in price over the latest 24-hour window."
                    },
                    "trade_24h_count": {
                      "type": "integer",
                      "description": "Total trade count during the latest 24-hour window."
                    },
                    "recent_listing_time": {
                      "type": "integer",
                      "description": "Unix timestamp in seconds when the token was recently listed or first detected by the listing feed."
                    },
                    "global_fees_paid": {
                      "type": "number",
                      "nullable": true,
                      "description": "All-time global fees paid in SOL for the token when available."
                    }
                  }
                }
              }
            }
          }
        }
      },
      "DefiTokenListV3ScrollResponse": {
        "type": "object",
        "required": [
          "success",
          "data"
        ],
        "properties": {
          "success": {
            "type": "boolean",
            "description": "Whether the request completed successfully."
          },
          "data": {
            "type": "object",
            "description": "Scroll-pagination payload for the V3 token list.",
            "properties": {
              "next_scroll_id": {
                "type": "string",
                "description": "Cursor to pass back in the next request to continue scrolling from this point."
              },
              "scroll_time": {
                "type": "string",
                "description": "Timestamp associated with the scroll cursor snapshot."
              },
              "items": {
                "type": "array",
                "description": "Token rows returned for the current scroll page.",
                "items": {
                  "type": "object",
                  "description": "One token row from the V3 scroll token list.",
                  "properties": {
                    "address": {
                      "type": "string",
                      "description": "Token mint or contract address."
                    },
                    "name": {
                      "type": "string",
                      "description": "Display name of the token."
                    },
                    "symbols": {
                      "type": "string",
                      "description": "Ticker symbol or symbol string returned by the listing service."
                    },
                    "decimals": {
                      "type": "integer",
                      "description": "Number of decimal places used by the token."
                    },
                    "logo_uri": {
                      "type": "string",
                      "description": "Logo image URL for the token."
                    },
                    "market_cap": {
                      "type": "number",
                      "description": "Current market capitalization based on circulating supply and latest price."
                    },
                    "fdv": {
                      "type": "number",
                      "description": "Fully diluted valuation based on total supply and latest price."
                    },
                    "liquidity": {
                      "type": "number",
                      "description": "Current token liquidity in USD."
                    },
                    "price": {
                      "type": "number",
                      "description": "Latest token price in USD."
                    },
                    "holder": {
                      "type": "integer",
                      "description": "Current holder count when holder data is available."
                    },
                    "volume_1h_usd": {
                      "type": "number",
                      "description": "Total traded USD volume during the latest 1-hour window."
                    },
                    "volume_1h_change_percent": {
                      "type": "number",
                      "description": "Percentage change in 1-hour USD volume versus the previous 1-hour window."
                    },
                    "price_change_1h_percent": {
                      "type": "number",
                      "description": "Percentage change in price over the latest 1-hour window."
                    },
                    "trade_1h_count": {
                      "type": "integer",
                      "description": "Total trade count during the latest 1-hour window."
                    },
                    "volume_2h_usd": {
                      "type": "number",
                      "description": "Total traded USD volume during the latest 2-hour window."
                    },
                    "volume_2h_change_percent": {
                      "type": "number",
                      "description": "Percentage change in 2-hour USD volume versus the previous 2-hour window."
                    },
                    "price_change_2h_percent": {
                      "type": "number",
                      "description": "Percentage change in price over the latest 2-hour window."
                    },
                    "trade_2h_count": {
                      "type": "integer",
                      "description": "Total trade count during the latest 2-hour window."
                    },
                    "volume_4h_usd": {
                      "type": "number",
                      "description": "Total traded USD volume during the latest 4-hour window."
                    },
                    "volume_4h_change_percent": {
                      "type": "number",
                      "description": "Percentage change in 4-hour USD volume versus the previous 4-hour window."
                    },
                    "price_change_4h_percent": {
                      "type": "number",
                      "description": "Percentage change in price over the latest 4-hour window."
                    },
                    "trade_4h_count": {
                      "type": "integer",
                      "description": "Total trade count during the latest 4-hour window."
                    },
                    "volume_8h_usd": {
                      "type": "number",
                      "description": "Total traded USD volume during the latest 8-hour window."
                    },
                    "volume_8h_change_percent": {
                      "type": "number",
                      "description": "Percentage change in 8-hour USD volume versus the previous 8-hour window."
                    },
                    "price_change_8h_percent": {
                      "type": "number",
                      "description": "Percentage change in price over the latest 8-hour window."
                    },
                    "trade_8h_count": {
                      "type": "integer",
                      "description": "Total trade count during the latest 8-hour window."
                    },
                    "volume_24h_usd": {
                      "type": "number",
                      "description": "Total traded USD volume during the latest 24-hour window."
                    },
                    "volume_24h_change_percent": {
                      "type": "number",
                      "description": "Percentage change in 24-hour USD volume versus the previous 24-hour window."
                    },
                    "price_change_24h_percent": {
                      "type": "number",
                      "description": "Percentage change in price over the latest 24-hour window."
                    },
                    "trade_24h_count": {
                      "type": "integer",
                      "description": "Total trade count during the latest 24-hour window."
                    },
                    "recent_listing_time": {
                      "type": "integer",
                      "description": "Unix timestamp in seconds when the token was recently listed or first detected by the listing feed."
                    },
                    "global_fees_paid": {
                      "type": "number",
                      "nullable": true,
                      "description": "All-time global fees paid in SOL for the token when available."
                    }
                  }
                }
              }
            }
          }
        }
      },
      "DefiTokenListAllResponse": {
        "type": "object",
        "required": [
          "success",
          "data"
        ],
        "properties": {
          "success": {
            "type": "boolean",
            "description": "Whether the request completed successfully."
          },
          "data": {
            "type": "object",
            "description": "Payload containing the downloadable token-list resource.",
            "properties": {
              "url": {
                "type": "string",
                "description": "Download URL for the full token list export."
              }
            }
          }
        }
      },
      "DefiTokenNewListingResponse": {
        "type": "object",
        "required": [
          "success",
          "data"
        ],
        "properties": {
          "success": {
            "type": "boolean",
            "description": "Whether the request completed successfully."
          },
          "data": {
            "type": "object",
            "description": "New-listing payload containing recently detected token launches.",
            "properties": {
              "items": {
                "type": "array",
                "description": "Recently listed tokens returned for the request.",
                "items": {
                  "type": "object",
                  "description": "One newly listed token entry.",
                  "properties": {
                    "address": {
                      "type": "string",
                      "description": "Token mint or contract address."
                    },
                    "symbol": {
                      "type": "string",
                      "description": "Ticker symbol for the token."
                    },
                    "name": {
                      "type": "string",
                      "description": "Display name of the token."
                    },
                    "source": {
                      "type": "string",
                      "description": "Listing source or venue that surfaced the token."
                    },
                    "liquidityAddedAt": {
                      "type": "string",
                      "description": "Timestamp when liquidity was first added or the listing was first detected."
                    },
                    "logoURI": {
                      "type": "string",
                      "description": "Logo image URL for the token."
                    },
                    "liquidity": {
                      "type": "number",
                      "description": "Initial or current liquidity in USD captured for the listing."
                    }
                  }
                }
              }
            }
          }
        }
      },
      "DefiTokenTopTradedResponse": {
        "type": "object",
        "description": "Response containing a ranked list of top traders for a token.",
        "required": [
          "success",
          "data"
        ],
        "properties": {
          "success": {
            "type": "boolean",
            "description": "Indicates whether the request was successful."
          },
          "data": {
            "type": "object",
            "description": "Top-trader ranking result.",
            "properties": {
              "items": {
                "type": "array",
                "description": "Ranked trader rows for the requested token and time window.",
                "items": {
                  "type": "object",
                  "description": "A trader row with trading, PnL, and optional holder-context metrics.",
                  "properties": {
                    "tokenAddress": {
                      "type": "string",
                      "description": "Token address used for the ranking request."
                    },
                    "owner": {
                      "type": "string",
                      "description": "Trader wallet address."
                    },
                    "tags": {
                      "type": "array",
                      "description": "Solana wallet tags assigned to the trader, such as dev, bundler, sniper, insider, or smart_trader."
                    },
                    "type": {
                      "type": "string",
                      "description": "Timeframe label for the returned ranking row, such as 24h, matching the effective analysis window."
                    },
                    "volume": {
                      "type": "number",
                      "description": "Total token volume traded by this wallet over the selected time window."
                    },
                    "trade": {
                      "type": "integer",
                      "description": "Total trade count for this wallet over the selected time window."
                    },
                    "tradeBuy": {
                      "type": "integer",
                      "description": "Number of buy trades executed by this wallet."
                    },
                    "tradeSell": {
                      "type": "integer",
                      "description": "Number of sell trades executed by this wallet."
                    },
                    "volumeBuy": {
                      "type": "number",
                      "description": "Total token amount bought by this wallet."
                    },
                    "volumeSell": {
                      "type": "number",
                      "description": "Total token amount sold by this wallet."
                    },
                    "volumeBuyUSD": {
                      "type": "number",
                      "description": "USD value of all buys executed by this wallet."
                    },
                    "volumeSellUSD": {
                      "type": "number",
                      "description": "USD value of all sells executed by this wallet."
                    },
                    "volumeUsd": {
                      "type": "number",
                      "description": "Total USD trading volume for this wallet, typically buy-side plus sell-side USD volume."
                    },
                    "totalPnl": {
                      "type": "number",
                      "description": "Combined realized and unrealized PnL for this trader."
                    },
                    "unrealizedPnl": {
                      "type": "number",
                      "description": "Mark-to-market PnL of the trader's remaining open token position."
                    },
                    "realizedPnl": {
                      "type": "number",
                      "description": "PnL already realized from completed sell activity."
                    },
                    "holdVolume": {
                      "type": "number",
                      "description": "Current token amount still held by this trader. Most relevant for Solana hold-volume ranking."
                    },
                    "holdVolumeUsd": {
                      "type": "number",
                      "description": "Current USD value of the trader's remaining held token position."
                    },
                    "holdAvgPrice": {
                      "type": "number",
                      "description": "Average cost basis of the trader's remaining held token position."
                    },
                    "avgBuyPrice": {
                      "type": "number",
                      "description": "Average buy price across the trader's buy history for the token."
                    },
                    "avgSellPrice": {
                      "type": "number",
                      "description": "Average sell price across the trader's sell history for the token."
                    },
                    "firstTradeUnixTime": {
                      "type": "number",
                      "description": "Unix timestamp in seconds of the trader's first recorded trade for the token."
                    },
                    "lastTradeUnixTime": {
                      "type": "number",
                      "description": "Unix timestamp in seconds of the trader's most recent recorded trade for the token."
                    },
                    "netWorth": {
                      "type": "number",
                      "description": "Trader wallet net worth. Returned on Solana when get_holders_networth=true."
                    },
                    "solBalance": {
                      "type": "number",
                      "description": "Trader wallet SOL balance. Returned on Solana when get_holders_networth=true."
                    },
                    "isScaledUiToken": {
                      "type": "boolean",
                      "description": "Whether the token uses Solana Token-2022 scaled UI amount handling."
                    },
                    "multiplier": {
                      "type": "number",
                      "nullable": true,
                      "description": "Scaled UI multiplier for Solana Token-2022 tokens when applicable; otherwise null."
                    },
                    "funding": {
                      "type": "object",
                      "description": "Earliest known funding details for the trader wallet. Returned on Solana when get_holders_networth=true.",
                      "properties": {
                        "funder": {
                          "type": "string",
                          "description": "Wallet address that funded the trader wallet."
                        },
                        "unixTime": {
                          "type": "number",
                          "description": "Unix timestamp in seconds when the funding transaction occurred."
                        },
                        "amount": {
                          "type": "number",
                          "description": "Amount transferred in the funding transaction."
                        },
                        "txHash": {
                          "type": "string",
                          "description": "Transaction hash or signature of the funding transfer."
                        }
                      }
                    }
                  }
                }
              }
            }
          }
        }
      },
      "TraderGainerLoserResponse": {
        "type": "object",
        "required": [
          "success",
          "data"
        ],
        "properties": {
          "success": {
            "type": "boolean",
            "description": "Indicates whether the request was successful."
          },
          "data": {
            "type": "object",
            "description": "Contains the trader gainer/loser result.",
            "required": [
              "items"
            ],
            "properties": {
              "items": {
                "type": "array",
                "description": "List of traders ranked by profit and loss (PnL).",
                "items": {
                  "type": "object",
                  "required": [
                    "network",
                    "address",
                    "pnl",
                    "realized_pnl",
                    "unrealized_pnl",
                    "volume",
                    "trade_count"
                  ],
                  "properties": {
                    "network": {
                      "type": "string",
                      "description": "Blockchain network of the trader wallet, e.g. solana."
                    },
                    "address": {
                      "type": "string",
                      "description": "Wallet address of the trader."
                    },
                    "pnl": {
                      "type": "number",
                      "description": "Total profit and loss (PnL) of the trader in USD, including both realized and unrealized PnL."
                    },
                    "realized_pnl": {
                      "type": "number",
                      "description": "Realized profit and loss in USD from positions that have been sold or closed."
                    },
                    "unrealized_pnl": {
                      "type": "number",
                      "description": "Unrealized profit and loss in USD from tokens or positions currently held by the trader."
                    },
                    "volume": {
                      "type": "number",
                      "description": "Total trading volume in USD, including both buy and sell transactions."
                    },
                    "trade_count": {
                      "type": "integer",
                      "description": "Total number of trades executed by the trader."
                    }
                  }
                }
              }
            }
          }
        }
      },
      "DefiTokenMarketsResponse": {
        "type": "object",
        "required": [
          "success",
          "data"
        ],
        "properties": {
          "success": {
            "type": "boolean",
            "description": "Whether the request completed successfully."
          },
          "data": {
            "type": "object",
            "description": "Market-list payload for one token.",
            "properties": {
              "items": {
                "type": "array",
                "description": "Markets or pools associated with the requested token.",
                "items": {
                  "type": "object",
                  "description": "One market or pool row. Exact fields depend on the market source returned by the service."
                }
              },
              "total": {
                "type": "integer",
                "description": "Total number of markets or pools found for the requested token."
              }
            }
          }
        }
      },
      "DefiTxsV3LatestBlockResponse": {
        "type": "object",
        "required": [
          "success",
          "data"
        ],
        "properties": {
          "success": {
            "type": "boolean"
          },
          "data": {
            "type": "object",
            "required": [
              "block_number"
            ],
            "properties": {
              "block_number": {
                "type": "integer"
              }
            }
          }
        }
      },
      "CommonResponseType": {
        "type": "object",
        "required": [
          "success",
          "data"
        ],
        "properties": {
          "success": {
            "type": "boolean"
          },
          "data": {
            "type": "object"
          }
        }
      },
      "TraversableArrayOfObjectResponseType": {
        "type": "object",
        "required": [
          "success",
          "data"
        ],
        "properties": {
          "success": {
            "type": "boolean"
          },
          "data": {
            "type": "object",
            "required": [
              "items",
              "hasNext"
            ],
            "properties": {
              "items": {
                "type": "array",
                "items": {
                  "type": "object"
                }
              },
              "hasNext": {
                "type": "boolean"
              }
            }
          }
        }
      },
      "ErrorResponse": {
        "type": "object",
        "properties": {
          "success": {
            "type": "boolean"
          },
          "message": {
            "type": "string"
          }
        }
      },
      "DefiPriceObject": {
        "type": "object",
        "required": [
          "value",
          "updateUnixTime",
          "updateHumanTime",
          "priceChange24h"
        ],
        "properties": {
          "value": {
            "type": "number",
            "description": "Latest token price in the requested quote currency, typically USD."
          },
          "updateUnixTime": {
            "type": "integer",
            "description": "Unix timestamp in seconds when this price point was last updated."
          },
          "updateHumanTime": {
            "type": "string",
            "description": "Human-readable timestamp of the latest price update."
          },
          "priceChange24h": {
            "type": "number",
            "description": "Percentage price change over the last 24 hours."
          },
          "priceInNative": {
            "type": "number",
            "description": "Latest token price quoted in the chain's native asset when available."
          },
          "liquidity": {
            "type": "number",
            "description": "Current token liquidity in USD when liquidity lookup is enabled and available."
          },
          "isScaledUiToken": {
            "type": "boolean",
            "description": "True when the token uses Solana Token-2022 scaled UI amounts."
          },
          "scaledValue": {
            "type": "number",
            "description": "Latest price adjusted by the token's scaled UI multiplier. Present for scaled UI tokens."
          },
          "multiplier": {
            "type": "number",
            "description": "Scaled UI multiplier applied to raw token-denominated values for Token-2022 assets."
          },
          "scaledPriceInNative": {
            "type": "number",
            "description": "Latest native-asset price adjusted by the scaled UI multiplier. Present for scaled UI tokens."
          }
        }
      },
      "DefiPriceVolumeObject": {
        "type": "object",
        "required": [
          "price",
          "updateUnixTime",
          "updateHumanTime",
          "volumeUSD",
          "volumeChangePercent",
          "priceChangePercent"
        ],
        "properties": {
          "price": {
            "type": "number",
            "description": "Latest token price in the requested quote currency."
          },
          "updateUnixTime": {
            "type": "integer",
            "description": "Unix timestamp in seconds when the price-volume snapshot was last updated."
          },
          "updateHumanTime": {
            "type": "string",
            "description": "Human-readable timestamp of the latest snapshot update."
          },
          "volumeUSD": {
            "type": "number",
            "description": "Trading volume in USD over the requested timeframe."
          },
          "volumeChangePercent": {
            "type": "number",
            "description": "Percentage change in trading volume versus the previous equivalent timeframe."
          },
          "priceChangePercent": {
            "type": "number",
            "description": "Percentage change in price over the requested timeframe."
          },
          "isScaledUiToken": {
            "type": "boolean",
            "description": "True when the token uses Solana Token-2022 scaled UI amounts."
          },
          "scaledValue": {
            "type": "number",
            "description": "Latest price adjusted by the scaled UI multiplier. Present for scaled UI tokens."
          },
          "multiplier": {
            "type": "number",
            "description": "Scaled UI multiplier applied to raw token values for Token-2022 assets."
          }
        }
      },
      "DefiTokenMetadataObject": {
        "type": "object",
        "required": [
          "address",
          "symbol",
          "name",
          "decimals",
          "extensions",
          "logoURI"
        ],
        "properties": {
          "address": {
            "type": "string",
            "description": "Token mint or contract address."
          },
          "symbol": {
            "type": "string",
            "description": "Ticker symbol for the token."
          },
          "name": {
            "type": "string",
            "description": "Display name of the token."
          },
          "decimals": {
            "type": "integer",
            "description": "Number of decimal places used by the token."
          },
          "extensions": {
            "type": "object",
            "description": "Optional metadata links and external identifiers collected for the token.",
            "properties": {
              "coingecko_id": {
                "type": "string",
                "description": "Coingecko asset identifier when available."
              },
              "website": {
                "type": "string",
                "description": "Official project website."
              },
              "twitter": {
                "type": "string",
                "description": "Official Twitter/X profile URL."
              },
              "discord": {
                "type": "string",
                "description": "Official Discord invite or community link."
              },
              "medium": {
                "type": "string",
                "description": "Official Medium publication URL."
              }
            }
          },
          "logo_uri": {
            "type": "string",
            "description": "Logo image URL for the token."
          }
        }
      },
      "DefiTokenMarketDataObject": {
        "type": "object",
        "required": [
          "address",
          "price",
          "liquidity",
          "total_supply",
          "circulating_supply",
          "market_cap",
          "fdv"
        ],
        "properties": {
          "address": {
            "type": "string",
            "description": "Token mint or contract address."
          },
          "price": {
            "type": "number",
            "description": "Latest token price in USD."
          },
          "liquidity": {
            "type": "number",
            "description": "Current token liquidity in USD."
          },
          "total_supply": {
            "type": "number",
            "description": "Total token supply tracked for market-cap calculations."
          },
          "circulating_supply": {
            "type": "number",
            "description": "Circulating token supply used for market-cap calculations."
          },
          "market_cap": {
            "type": "number",
            "description": "Current market capitalization based on circulating supply and latest price."
          },
          "fdv": {
            "type": "number",
            "description": "Fully diluted valuation based on total supply and latest price."
          },
          "holder": {
            "type": "number",
            "description": "Current number of holders when holder data is available for the chain."
          },
          "is_scaled_ui_token": {
            "type": "boolean",
            "description": "True when the token uses Solana Token-2022 scaled UI amounts."
          },
          "multiplier": {
            "type": "number",
            "description": "Scaled UI multiplier for Token-2022 assets. Present when scaled UI metadata is available."
          }
        }
      },
      "DefiTokenTradeDataObject": {
        "type": "object",
        "required": [
          "address",
          "liquidity",
          "last_trade_unix_time",
          "last_trade_human_time",
          "price",
          "history_30m_price",
          "price_change_30m_percent",
          "history_1h_price",
          "price_change_1h_percent",
          "history_2h_price",
          "price_change_2h_percent",
          "history_4h_price",
          "price_change_4h_percent",
          "history_6h_price",
          "price_change_6h_percent",
          "history_8h_price",
          "price_change_8h_percent",
          "history_12h_price",
          "price_change_12h_percent",
          "history_24h_price",
          "price_change_24h_percent",
          "unique_wallet_30m",
          "unique_wallet_history_30m",
          "unique_wallet_30m_change_percent",
          "unique_wallet_1h",
          "unique_wallet_history_1h",
          "unique_wallet_1h_change_percent",
          "unique_wallet_2h",
          "unique_wallet_history_2h",
          "unique_wallet_2h_change_percent",
          "unique_wallet_4h",
          "unique_wallet_history_4h",
          "unique_wallet_4h_change_percent",
          "unique_wallet_8h",
          "unique_wallet_history_8h",
          "unique_wallet_8h_change_percent",
          "unique_wallet_24h",
          "unique_wallet_history_24h",
          "unique_wallet_24h_change_percent",
          "trade_30m",
          "trade_history_30m",
          "trade_30m_change_percent",
          "sell_30m",
          "sell_history_30m",
          "sell_30m_change_percent",
          "buy_30m",
          "buy_history_30m",
          "buy_30m_change_percent",
          "volume_30m",
          "volume_30m_usd",
          "volume_history_30m",
          "volume_history_30m_usd",
          "volume_30m_change_percent",
          "volume_buy_30m",
          "volume_buy_30m_usd",
          "volume_buy_history_30m",
          "volume_buy_history_30m_usd",
          "volume_buy_30m_change_percent",
          "volume_sell_30m",
          "volume_sell_30m_usd",
          "volume_sell_history_30m",
          "volume_sell_history_30m_usd",
          "volume_sell_30m_change_percent",
          "trade_1h",
          "trade_history_1h",
          "trade_1h_change_percent",
          "sell_1h",
          "sell_history_1h",
          "sell_1h_change_percent",
          "buy_1h",
          "buy_history_1h",
          "buy_1h_change_percent",
          "volume_1h",
          "volume_1h_usd",
          "volume_history_1h",
          "volume_history_1h_usd",
          "volume_1h_change_percent",
          "volume_buy_1h",
          "volume_buy_1h_usd",
          "volume_buy_history_1h",
          "volume_buy_history_1h_usd",
          "volume_buy_1h_change_percent",
          "volume_sell_1h",
          "volume_sell_1h_usd",
          "volume_sell_history_1h",
          "volume_sell_history_1h_usd",
          "volume_sell_1h_change_percent",
          "trade_2h",
          "trade_history_2h",
          "trade_2h_change_percent",
          "sell_2h",
          "sell_history_2h",
          "sell_2h_change_percent",
          "buy_2h",
          "buy_history_2h",
          "buy_2h_change_percent",
          "volume_2h",
          "volume_2h_usd",
          "volume_history_2h",
          "volume_history_2h_usd",
          "volume_2h_change_percent",
          "volume_buy_2h",
          "volume_buy_2h_usd",
          "volume_buy_history_2h",
          "volume_buy_history_2h_usd",
          "volume_buy_2h_change_percent",
          "volume_sell_2h",
          "volume_sell_2h_usd",
          "volume_sell_history_2h",
          "volume_sell_history_2h_usd",
          "volume_sell_2h_change_percent",
          "trade_4h",
          "trade_history_4h",
          "trade_4h_change_percent",
          "sell_4h",
          "sell_history_4h",
          "sell_4h_change_percent",
          "buy_4h",
          "buy_history_4h",
          "buy_4h_change_percent",
          "volume_4h",
          "volume_4h_usd",
          "volume_history_4h",
          "volume_history_4h_usd",
          "volume_4h_change_percent",
          "volume_buy_4h",
          "volume_buy_4h_usd",
          "volume_buy_history_4h",
          "volume_buy_history_4h_usd",
          "volume_buy_4h_change_percent",
          "volume_sell_4h",
          "volume_sell_4h_usd",
          "volume_sell_history_4h",
          "volume_sell_history_4h_usd",
          "volume_sell_4h_change_percent",
          "trade_8h",
          "trade_history_8h",
          "trade_8h_change_percent",
          "sell_8h",
          "sell_history_8h",
          "sell_8h_change_percent",
          "buy_8h",
          "buy_history_8h",
          "buy_8h_change_percent",
          "volume_8h",
          "volume_8h_usd",
          "volume_history_8h",
          "volume_history_8h_usd",
          "volume_8h_change_percent",
          "volume_buy_8h",
          "volume_buy_8h_usd",
          "volume_buy_history_8h",
          "volume_buy_history_8h_usd",
          "volume_buy_8h_change_percent",
          "volume_sell_8h",
          "volume_sell_8h_usd",
          "volume_sell_history_8h",
          "volume_sell_history_8h_usd",
          "volume_sell_8h_change_percent",
          "trade_24h",
          "trade_history_24h",
          "trade_24h_change_percent",
          "sell_24h",
          "sell_history_24h",
          "sell_24h_change_percent",
          "buy_24h",
          "buy_history_24h",
          "buy_24h_change_percent",
          "volume_24h",
          "volume_24h_usd",
          "volume_history_24h",
          "volume_history_24h_usd",
          "volume_24h_change_percent",
          "volume_buy_24h",
          "volume_buy_24h_usd",
          "volume_buy_history_24h",
          "volume_buy_history_24h_usd",
          "volume_buy_24h_change_percent",
          "volume_sell_24h",
          "volume_sell_24h_usd",
          "volume_sell_history_24h",
          "volume_sell_history_24h_usd",
          "volume_sell_24h_change_percent"
        ],
        "properties": {
          "address": {
            "type": "string",
            "description": "Token mint or contract address."
          },
          "liquidity": {
            "type": "number",
            "description": "Current token liquidity in USD."
          },
          "last_trade_unix_time": {
            "type": "number",
            "description": "Unix timestamp in seconds of the latest observed trade."
          },
          "last_trade_human_time": {
            "type": "string",
            "description": "Human-readable timestamp of the latest observed trade."
          },
          "price": {
            "type": "number",
            "description": "Latest token price in USD."
          },
          "holder": {
            "type": "number",
            "description": "Current holder count when available for the chain."
          },
          "market": {
            "type": "number",
            "description": "Number of markets or pools contributing to the token's trade activity when available."
          },
          "is_scaled_ui_token": {
            "type": "boolean",
            "description": "True when the token uses Solana Token-2022 scaled UI amounts."
          },
          "multiplier": {
            "type": "number",
            "nullable": true,
            "description": "Scaled UI multiplier for Token-2022 assets. Present when scaled UI metadata is available."
          },
          "history_1m_price": {
            "type": "number",
            "description": "Reference price from 1m ago used as the baseline for current price change."
          },
          "price_change_1m_percent": {
            "type": "number",
            "description": "Percentage change between the latest price and the baseline price from 1m ago."
          },
          "history_5m_price": {
            "type": "number",
            "description": "Reference price from 5m ago used as the baseline for current price change."
          },
          "price_change_5m_percent": {
            "type": "number",
            "description": "Percentage change between the latest price and the baseline price from 5m ago."
          },
          "history_30m_price": {
            "type": "number",
            "description": "Reference price from 30m ago used as the baseline for current price change."
          },
          "price_change_30m_percent": {
            "type": "number",
            "description": "Percentage change between the latest price and the baseline price from 30m ago."
          },
          "history_1h_price": {
            "type": "number",
            "description": "Reference price from 1h ago used as the baseline for current price change."
          },
          "price_change_1h_percent": {
            "type": "number",
            "description": "Percentage change between the latest price and the baseline price from 1h ago."
          },
          "history_2h_price": {
            "type": "number",
            "description": "Reference price from 2h ago used as the baseline for current price change."
          },
          "price_change_2h_percent": {
            "type": "number",
            "description": "Percentage change between the latest price and the baseline price from 2h ago."
          },
          "history_4h_price": {
            "type": "number",
            "description": "Reference price from 4h ago used as the baseline for current price change."
          },
          "price_change_4h_percent": {
            "type": "number",
            "description": "Percentage change between the latest price and the baseline price from 4h ago."
          },
          "history_6h_price": {
            "type": "number",
            "description": "Reference price from 6h ago used as the baseline for current price change."
          },
          "price_change_6h_percent": {
            "type": "number",
            "description": "Percentage change between the latest price and the baseline price from 6h ago."
          },
          "history_8h_price": {
            "type": "number",
            "description": "Reference price from 8h ago used as the baseline for current price change."
          },
          "price_change_8h_percent": {
            "type": "number",
            "description": "Percentage change between the latest price and the baseline price from 8h ago."
          },
          "history_12h_price": {
            "type": "number",
            "description": "Reference price from 12h ago used as the baseline for current price change."
          },
          "price_change_12h_percent": {
            "type": "number",
            "description": "Percentage change between the latest price and the baseline price from 12h ago."
          },
          "history_24h_price": {
            "type": "number",
            "description": "Reference price from 24h ago used as the baseline for current price change."
          },
          "price_change_24h_percent": {
            "type": "number",
            "description": "Percentage change between the latest price and the baseline price from 24h ago."
          },
          "unique_wallet_30m": {
            "type": "number",
            "description": "Number of distinct wallets that traded the token during the latest 30m window."
          },
          "unique_wallet_history_30m": {
            "type": "number",
            "description": "Number of distinct wallets that traded the token during the previous 30m window used for comparison."
          },
          "unique_wallet_30m_change_percent": {
            "type": "number",
            "description": "Percentage change in distinct trading wallets versus the previous 30m window."
          },
          "trade_30m": {
            "type": "number",
            "description": "Total trade count during the latest 30m window."
          },
          "trade_history_30m": {
            "type": "number",
            "description": "Total trade count during the previous 30m window used for comparison."
          },
          "trade_30m_change_percent": {
            "type": "number",
            "description": "Percentage change in total trade count versus the previous 30m window."
          },
          "sell_30m": {
            "type": "number",
            "description": "Sell-side trade count during the latest 30m window."
          },
          "sell_history_30m": {
            "type": "number",
            "description": "Sell-side trade count during the previous 30m window used for comparison."
          },
          "sell_30m_change_percent": {
            "type": "number",
            "description": "Percentage change in sell-side trade count versus the previous 30m window."
          },
          "buy_30m": {
            "type": "number",
            "description": "Buy-side trade count during the latest 30m window."
          },
          "buy_history_30m": {
            "type": "number",
            "description": "Buy-side trade count during the previous 30m window used for comparison."
          },
          "buy_30m_change_percent": {
            "type": "number",
            "description": "Percentage change in buy-side trade count versus the previous 30m window."
          },
          "volume_30m": {
            "type": "number",
            "description": "Total traded token volume during the latest 30m window."
          },
          "volume_30m_usd": {
            "type": "number",
            "description": "Total traded USD volume during the latest 30m window."
          },
          "volume_history_30m": {
            "type": "number",
            "description": "Total traded token volume during the previous 30m window used for comparison."
          },
          "volume_history_30m_usd": {
            "type": "number",
            "description": "Total traded USD volume during the previous 30m window used for comparison."
          },
          "volume_30m_change_percent": {
            "type": "number",
            "description": "Percentage change in total traded token volume versus the previous 30m window."
          },
          "volume_buy_30m": {
            "type": "number",
            "description": "Buy-side token volume during the latest 30m window."
          },
          "volume_buy_30m_usd": {
            "type": "number",
            "description": "Buy-side USD volume during the latest 30m window."
          },
          "volume_buy_history_30m": {
            "type": "number",
            "description": "Buy-side token volume during the previous 30m window used for comparison."
          },
          "volume_buy_history_30m_usd": {
            "type": "number",
            "description": "Buy-side USD volume during the previous 30m window used for comparison."
          },
          "volume_buy_30m_change_percent": {
            "type": "number",
            "description": "Percentage change in buy-side token volume versus the previous 30m window."
          },
          "volume_sell_30m": {
            "type": "number",
            "description": "Sell-side token volume during the latest 30m window."
          },
          "volume_sell_30m_usd": {
            "type": "number",
            "description": "Sell-side USD volume during the latest 30m window."
          },
          "volume_sell_history_30m": {
            "type": "number",
            "description": "Sell-side token volume during the previous 30m window used for comparison."
          },
          "volume_sell_history_30m_usd": {
            "type": "number",
            "description": "Sell-side USD volume during the previous 30m window used for comparison."
          },
          "volume_sell_30m_change_percent": {
            "type": "number",
            "description": "Percentage change in sell-side token volume versus the previous 30m window."
          },
          "unique_wallet_1h": {
            "type": "number",
            "description": "Number of distinct wallets that traded the token during the latest 1h window."
          },
          "unique_wallet_history_1h": {
            "type": "number",
            "description": "Number of distinct wallets that traded the token during the previous 1h window used for comparison."
          },
          "unique_wallet_1h_change_percent": {
            "type": "number",
            "description": "Percentage change in distinct trading wallets versus the previous 1h window."
          },
          "trade_1h": {
            "type": "number",
            "description": "Total trade count during the latest 1h window."
          },
          "trade_history_1h": {
            "type": "number",
            "description": "Total trade count during the previous 1h window used for comparison."
          },
          "trade_1h_change_percent": {
            "type": "number",
            "description": "Percentage change in total trade count versus the previous 1h window."
          },
          "sell_1h": {
            "type": "number",
            "description": "Sell-side trade count during the latest 1h window."
          },
          "sell_history_1h": {
            "type": "number",
            "description": "Sell-side trade count during the previous 1h window used for comparison."
          },
          "sell_1h_change_percent": {
            "type": "number",
            "description": "Percentage change in sell-side trade count versus the previous 1h window."
          },
          "buy_1h": {
            "type": "number",
            "description": "Buy-side trade count during the latest 1h window."
          },
          "buy_history_1h": {
            "type": "number",
            "description": "Buy-side trade count during the previous 1h window used for comparison."
          },
          "buy_1h_change_percent": {
            "type": "number",
            "description": "Percentage change in buy-side trade count versus the previous 1h window."
          },
          "volume_1h": {
            "type": "number",
            "description": "Total traded token volume during the latest 1h window."
          },
          "volume_1h_usd": {
            "type": "number",
            "description": "Total traded USD volume during the latest 1h window."
          },
          "volume_history_1h": {
            "type": "number",
            "description": "Total traded token volume during the previous 1h window used for comparison."
          },
          "volume_history_1h_usd": {
            "type": "number",
            "description": "Total traded USD volume during the previous 1h window used for comparison."
          },
          "volume_1h_change_percent": {
            "type": "number",
            "description": "Percentage change in total traded token volume versus the previous 1h window."
          },
          "volume_buy_1h": {
            "type": "number",
            "description": "Buy-side token volume during the latest 1h window."
          },
          "volume_buy_1h_usd": {
            "type": "number",
            "description": "Buy-side USD volume during the latest 1h window."
          },
          "volume_buy_history_1h": {
            "type": "number",
            "description": "Buy-side token volume during the previous 1h window used for comparison."
          },
          "volume_buy_history_1h_usd": {
            "type": "number",
            "description": "Buy-side USD volume during the previous 1h window used for comparison."
          },
          "volume_buy_1h_change_percent": {
            "type": "number",
            "description": "Percentage change in buy-side token volume versus the previous 1h window."
          },
          "volume_sell_1h": {
            "type": "number",
            "description": "Sell-side token volume during the latest 1h window."
          },
          "volume_sell_1h_usd": {
            "type": "number",
            "description": "Sell-side USD volume during the latest 1h window."
          },
          "volume_sell_history_1h": {
            "type": "number",
            "description": "Sell-side token volume during the previous 1h window used for comparison."
          },
          "volume_sell_history_1h_usd": {
            "type": "number",
            "description": "Sell-side USD volume during the previous 1h window used for comparison."
          },
          "volume_sell_1h_change_percent": {
            "type": "number",
            "description": "Percentage change in sell-side token volume versus the previous 1h window."
          },
          "unique_wallet_2h": {
            "type": "number",
            "description": "Number of distinct wallets that traded the token during the latest 2h window."
          },
          "unique_wallet_history_2h": {
            "type": "number",
            "description": "Number of distinct wallets that traded the token during the previous 2h window used for comparison."
          },
          "unique_wallet_2h_change_percent": {
            "type": "number",
            "description": "Percentage change in distinct trading wallets versus the previous 2h window."
          },
          "trade_2h": {
            "type": "number",
            "description": "Total trade count during the latest 2h window."
          },
          "trade_history_2h": {
            "type": "number",
            "description": "Total trade count during the previous 2h window used for comparison."
          },
          "trade_2h_change_percent": {
            "type": "number",
            "description": "Percentage change in total trade count versus the previous 2h window."
          },
          "sell_2h": {
            "type": "number",
            "description": "Sell-side trade count during the latest 2h window."
          },
          "sell_history_2h": {
            "type": "number",
            "description": "Sell-side trade count during the previous 2h window used for comparison."
          },
          "sell_2h_change_percent": {
            "type": "number",
            "description": "Percentage change in sell-side trade count versus the previous 2h window."
          },
          "buy_2h": {
            "type": "number",
            "description": "Buy-side trade count during the latest 2h window."
          },
          "buy_history_2h": {
            "type": "number",
            "description": "Buy-side trade count during the previous 2h window used for comparison."
          },
          "buy_2h_change_percent": {
            "type": "number",
            "description": "Percentage change in buy-side trade count versus the previous 2h window."
          },
          "volume_2h": {
            "type": "number",
            "description": "Total traded token volume during the latest 2h window."
          },
          "volume_2h_usd": {
            "type": "number",
            "description": "Total traded USD volume during the latest 2h window."
          },
          "volume_history_2h": {
            "type": "number",
            "description": "Total traded token volume during the previous 2h window used for comparison."
          },
          "volume_history_2h_usd": {
            "type": "number",
            "description": "Total traded USD volume during the previous 2h window used for comparison."
          },
          "volume_2h_change_percent": {
            "type": "number",
            "description": "Percentage change in total traded token volume versus the previous 2h window."
          },
          "volume_buy_2h": {
            "type": "number",
            "description": "Buy-side token volume during the latest 2h window."
          },
          "volume_buy_2h_usd": {
            "type": "number",
            "description": "Buy-side USD volume during the latest 2h window."
          },
          "volume_buy_history_2h": {
            "type": "number",
            "description": "Buy-side token volume during the previous 2h window used for comparison."
          },
          "volume_buy_history_2h_usd": {
            "type": "number",
            "description": "Buy-side USD volume during the previous 2h window used for comparison."
          },
          "volume_buy_2h_change_percent": {
            "type": "number",
            "description": "Percentage change in buy-side token volume versus the previous 2h window."
          },
          "volume_sell_2h": {
            "type": "number",
            "description": "Sell-side token volume during the latest 2h window."
          },
          "volume_sell_2h_usd": {
            "type": "number",
            "description": "Sell-side USD volume during the latest 2h window."
          },
          "volume_sell_history_2h": {
            "type": "number",
            "description": "Sell-side token volume during the previous 2h window used for comparison."
          },
          "volume_sell_history_2h_usd": {
            "type": "number",
            "description": "Sell-side USD volume during the previous 2h window used for comparison."
          },
          "volume_sell_2h_change_percent": {
            "type": "number",
            "description": "Percentage change in sell-side token volume versus the previous 2h window."
          },
          "unique_wallet_4h": {
            "type": "number",
            "description": "Number of distinct wallets that traded the token during the latest 4h window."
          },
          "unique_wallet_history_4h": {
            "type": "number",
            "description": "Number of distinct wallets that traded the token during the previous 4h window used for comparison."
          },
          "unique_wallet_4h_change_percent": {
            "type": "number",
            "description": "Percentage change in distinct trading wallets versus the previous 4h window."
          },
          "trade_4h": {
            "type": "number",
            "description": "Total trade count during the latest 4h window."
          },
          "trade_history_4h": {
            "type": "number",
            "description": "Total trade count during the previous 4h window used for comparison."
          },
          "trade_4h_change_percent": {
            "type": "number",
            "description": "Percentage change in total trade count versus the previous 4h window."
          },
          "sell_4h": {
            "type": "number",
            "description": "Sell-side trade count during the latest 4h window."
          },
          "sell_history_4h": {
            "type": "number",
            "description": "Sell-side trade count during the previous 4h window used for comparison."
          },
          "sell_4h_change_percent": {
            "type": "number",
            "description": "Percentage change in sell-side trade count versus the previous 4h window."
          },
          "buy_4h": {
            "type": "number",
            "description": "Buy-side trade count during the latest 4h window."
          },
          "buy_history_4h": {
            "type": "number",
            "description": "Buy-side trade count during the previous 4h window used for comparison."
          },
          "buy_4h_change_percent": {
            "type": "number",
            "description": "Percentage change in buy-side trade count versus the previous 4h window."
          },
          "volume_4h": {
            "type": "number",
            "description": "Total traded token volume during the latest 4h window."
          },
          "volume_4h_usd": {
            "type": "number",
            "description": "Total traded USD volume during the latest 4h window."
          },
          "volume_history_4h": {
            "type": "number",
            "description": "Total traded token volume during the previous 4h window used for comparison."
          },
          "volume_history_4h_usd": {
            "type": "number",
            "description": "Total traded USD volume during the previous 4h window used for comparison."
          },
          "volume_4h_change_percent": {
            "type": "number",
            "description": "Percentage change in total traded token volume versus the previous 4h window."
          },
          "volume_buy_4h": {
            "type": "number",
            "description": "Buy-side token volume during the latest 4h window."
          },
          "volume_buy_4h_usd": {
            "type": "number",
            "description": "Buy-side USD volume during the latest 4h window."
          },
          "volume_buy_history_4h": {
            "type": "number",
            "description": "Buy-side token volume during the previous 4h window used for comparison."
          },
          "volume_buy_history_4h_usd": {
            "type": "number",
            "description": "Buy-side USD volume during the previous 4h window used for comparison."
          },
          "volume_buy_4h_change_percent": {
            "type": "number",
            "description": "Percentage change in buy-side token volume versus the previous 4h window."
          },
          "volume_sell_4h": {
            "type": "number",
            "description": "Sell-side token volume during the latest 4h window."
          },
          "volume_sell_4h_usd": {
            "type": "number",
            "description": "Sell-side USD volume during the latest 4h window."
          },
          "volume_sell_history_4h": {
            "type": "number",
            "description": "Sell-side token volume during the previous 4h window used for comparison."
          },
          "volume_sell_history_4h_usd": {
            "type": "number",
            "description": "Sell-side USD volume during the previous 4h window used for comparison."
          },
          "volume_sell_4h_change_percent": {
            "type": "number",
            "description": "Percentage change in sell-side token volume versus the previous 4h window."
          },
          "unique_wallet_6h": {
            "type": "number",
            "description": "Number of distinct wallets that traded the token during the latest 6h window."
          },
          "unique_wallet_history_6h": {
            "type": "number",
            "description": "Number of distinct wallets that traded the token during the previous 6h window used for comparison."
          },
          "unique_wallet_6h_change_percent": {
            "type": "number",
            "description": "Percentage change in distinct trading wallets versus the previous 6h window."
          },
          "trade_6h": {
            "type": "number",
            "description": "Total trade count during the latest 6h window."
          },
          "trade_history_6h": {
            "type": "number",
            "description": "Total trade count during the previous 6h window used for comparison."
          },
          "trade_6h_change_percent": {
            "type": "number",
            "description": "Percentage change in total trade count versus the previous 6h window."
          },
          "sell_6h": {
            "type": "number",
            "description": "Sell-side trade count during the latest 6h window."
          },
          "sell_history_6h": {
            "type": "number",
            "description": "Sell-side trade count during the previous 6h window used for comparison."
          },
          "sell_6h_change_percent": {
            "type": "number",
            "description": "Percentage change in sell-side trade count versus the previous 6h window."
          },
          "buy_6h": {
            "type": "number",
            "description": "Buy-side trade count during the latest 6h window."
          },
          "buy_history_6h": {
            "type": "number",
            "description": "Buy-side trade count during the previous 6h window used for comparison."
          },
          "buy_6h_change_percent": {
            "type": "number",
            "description": "Percentage change in buy-side trade count versus the previous 6h window."
          },
          "volume_6h": {
            "type": "number",
            "description": "Total traded token volume during the latest 6h window."
          },
          "volume_6h_usd": {
            "type": "number",
            "description": "Total traded USD volume during the latest 6h window."
          },
          "volume_history_6h": {
            "type": "number",
            "description": "Total traded token volume during the previous 6h window used for comparison."
          },
          "volume_history_6h_usd": {
            "type": "number",
            "description": "Total traded USD volume during the previous 6h window used for comparison."
          },
          "volume_6h_change_percent": {
            "type": "number",
            "description": "Percentage change in total traded token volume versus the previous 6h window."
          },
          "volume_buy_6h": {
            "type": "number",
            "description": "Buy-side token volume during the latest 6h window."
          },
          "volume_buy_6h_usd": {
            "type": "number",
            "description": "Buy-side USD volume during the latest 6h window."
          },
          "volume_buy_history_6h": {
            "type": "number",
            "description": "Buy-side token volume during the previous 6h window used for comparison."
          },
          "volume_buy_history_6h_usd": {
            "type": "number",
            "description": "Buy-side USD volume during the previous 6h window used for comparison."
          },
          "volume_buy_6h_change_percent": {
            "type": "number",
            "description": "Percentage change in buy-side token volume versus the previous 6h window."
          },
          "volume_sell_6h": {
            "type": "number",
            "description": "Sell-side token volume during the latest 6h window."
          },
          "volume_sell_6h_usd": {
            "type": "number",
            "description": "Sell-side USD volume during the latest 6h window."
          },
          "volume_sell_history_6h": {
            "type": "number",
            "description": "Sell-side token volume during the previous 6h window used for comparison."
          },
          "volume_sell_history_6h_usd": {
            "type": "number",
            "description": "Sell-side USD volume during the previous 6h window used for comparison."
          },
          "volume_sell_6h_change_percent": {
            "type": "number",
            "description": "Percentage change in sell-side token volume versus the previous 6h window."
          },
          "unique_wallet_8h": {
            "type": "number",
            "description": "Number of distinct wallets that traded the token during the latest 8h window."
          },
          "unique_wallet_history_8h": {
            "type": "number",
            "description": "Number of distinct wallets that traded the token during the previous 8h window used for comparison."
          },
          "unique_wallet_8h_change_percent": {
            "type": "number",
            "description": "Percentage change in distinct trading wallets versus the previous 8h window."
          },
          "trade_8h": {
            "type": "number",
            "description": "Total trade count during the latest 8h window."
          },
          "trade_history_8h": {
            "type": "number",
            "description": "Total trade count during the previous 8h window used for comparison."
          },
          "trade_8h_change_percent": {
            "type": "number",
            "description": "Percentage change in total trade count versus the previous 8h window."
          },
          "sell_8h": {
            "type": "number",
            "description": "Sell-side trade count during the latest 8h window."
          },
          "sell_history_8h": {
            "type": "number",
            "description": "Sell-side trade count during the previous 8h window used for comparison."
          },
          "sell_8h_change_percent": {
            "type": "number",
            "description": "Percentage change in sell-side trade count versus the previous 8h window."
          },
          "buy_8h": {
            "type": "number",
            "description": "Buy-side trade count during the latest 8h window."
          },
          "buy_history_8h": {
            "type": "number",
            "description": "Buy-side trade count during the previous 8h window used for comparison."
          },
          "buy_8h_change_percent": {
            "type": "number",
            "description": "Percentage change in buy-side trade count versus the previous 8h window."
          },
          "volume_8h": {
            "type": "number",
            "description": "Total traded token volume during the latest 8h window."
          },
          "volume_8h_usd": {
            "type": "number",
            "description": "Total traded USD volume during the latest 8h window."
          },
          "volume_history_8h": {
            "type": "number",
            "description": "Total traded token volume during the previous 8h window used for comparison."
          },
          "volume_history_8h_usd": {
            "type": "number",
            "description": "Total traded USD volume during the previous 8h window used for comparison."
          },
          "volume_8h_change_percent": {
            "type": "number",
            "description": "Percentage change in total traded token volume versus the previous 8h window."
          },
          "volume_buy_8h": {
            "type": "number",
            "description": "Buy-side token volume during the latest 8h window."
          },
          "volume_buy_8h_usd": {
            "type": "number",
            "description": "Buy-side USD volume during the latest 8h window."
          },
          "volume_buy_history_8h": {
            "type": "number",
            "description": "Buy-side token volume during the previous 8h window used for comparison."
          },
          "volume_buy_history_8h_usd": {
            "type": "number",
            "description": "Buy-side USD volume during the previous 8h window used for comparison."
          },
          "volume_buy_8h_change_percent": {
            "type": "number",
            "description": "Percentage change in buy-side token volume versus the previous 8h window."
          },
          "volume_sell_8h": {
            "type": "number",
            "description": "Sell-side token volume during the latest 8h window."
          },
          "volume_sell_8h_usd": {
            "type": "number",
            "description": "Sell-side USD volume during the latest 8h window."
          },
          "volume_sell_history_8h": {
            "type": "number",
            "description": "Sell-side token volume during the previous 8h window used for comparison."
          },
          "volume_sell_history_8h_usd": {
            "type": "number",
            "description": "Sell-side USD volume during the previous 8h window used for comparison."
          },
          "volume_sell_8h_change_percent": {
            "type": "number",
            "description": "Percentage change in sell-side token volume versus the previous 8h window."
          },
          "unique_wallet_12h": {
            "type": "number",
            "description": "Number of distinct wallets that traded the token during the latest 12h window."
          },
          "unique_wallet_history_12h": {
            "type": "number",
            "description": "Number of distinct wallets that traded the token during the previous 12h window used for comparison."
          },
          "unique_wallet_12h_change_percent": {
            "type": "number",
            "description": "Percentage change in distinct trading wallets versus the previous 12h window."
          },
          "trade_12h": {
            "type": "number",
            "description": "Total trade count during the latest 12h window."
          },
          "trade_history_12h": {
            "type": "number",
            "description": "Total trade count during the previous 12h window used for comparison."
          },
          "trade_12h_change_percent": {
            "type": "number",
            "description": "Percentage change in total trade count versus the previous 12h window."
          },
          "sell_12h": {
            "type": "number",
            "description": "Sell-side trade count during the latest 12h window."
          },
          "sell_history_12h": {
            "type": "number",
            "description": "Sell-side trade count during the previous 12h window used for comparison."
          },
          "sell_12h_change_percent": {
            "type": "number",
            "description": "Percentage change in sell-side trade count versus the previous 12h window."
          },
          "buy_12h": {
            "type": "number",
            "description": "Buy-side trade count during the latest 12h window."
          },
          "buy_history_12h": {
            "type": "number",
            "description": "Buy-side trade count during the previous 12h window used for comparison."
          },
          "buy_12h_change_percent": {
            "type": "number",
            "description": "Percentage change in buy-side trade count versus the previous 12h window."
          },
          "volume_12h": {
            "type": "number",
            "description": "Total traded token volume during the latest 12h window."
          },
          "volume_12h_usd": {
            "type": "number",
            "description": "Total traded USD volume during the latest 12h window."
          },
          "volume_history_12h": {
            "type": "number",
            "description": "Total traded token volume during the previous 12h window used for comparison."
          },
          "volume_history_12h_usd": {
            "type": "number",
            "description": "Total traded USD volume during the previous 12h window used for comparison."
          },
          "volume_12h_change_percent": {
            "type": "number",
            "description": "Percentage change in total traded token volume versus the previous 12h window."
          },
          "volume_buy_12h": {
            "type": "number",
            "description": "Buy-side token volume during the latest 12h window."
          },
          "volume_buy_12h_usd": {
            "type": "number",
            "description": "Buy-side USD volume during the latest 12h window."
          },
          "volume_buy_history_12h": {
            "type": "number",
            "description": "Buy-side token volume during the previous 12h window used for comparison."
          },
          "volume_buy_history_12h_usd": {
            "type": "number",
            "description": "Buy-side USD volume during the previous 12h window used for comparison."
          },
          "volume_buy_12h_change_percent": {
            "type": "number",
            "description": "Percentage change in buy-side token volume versus the previous 12h window."
          },
          "volume_sell_12h": {
            "type": "number",
            "description": "Sell-side token volume during the latest 12h window."
          },
          "volume_sell_12h_usd": {
            "type": "number",
            "description": "Sell-side USD volume during the latest 12h window."
          },
          "volume_sell_history_12h": {
            "type": "number",
            "description": "Sell-side token volume during the previous 12h window used for comparison."
          },
          "volume_sell_history_12h_usd": {
            "type": "number",
            "description": "Sell-side USD volume during the previous 12h window used for comparison."
          },
          "volume_sell_12h_change_percent": {
            "type": "number",
            "description": "Percentage change in sell-side token volume versus the previous 12h window."
          },
          "unique_wallet_24h": {
            "type": "number",
            "description": "Number of distinct wallets that traded the token during the latest 24h window."
          },
          "unique_wallet_history_24h": {
            "type": "number",
            "description": "Number of distinct wallets that traded the token during the previous 24h window used for comparison."
          },
          "unique_wallet_24h_change_percent": {
            "type": "number",
            "description": "Percentage change in distinct trading wallets versus the previous 24h window."
          },
          "trade_24h": {
            "type": "number",
            "description": "Total trade count during the latest 24h window."
          },
          "trade_history_24h": {
            "type": "number",
            "description": "Total trade count during the previous 24h window used for comparison."
          },
          "trade_24h_change_percent": {
            "type": "number",
            "description": "Percentage change in total trade count versus the previous 24h window."
          },
          "sell_24h": {
            "type": "number",
            "description": "Sell-side trade count during the latest 24h window."
          },
          "sell_history_24h": {
            "type": "number",
            "description": "Sell-side trade count during the previous 24h window used for comparison."
          },
          "sell_24h_change_percent": {
            "type": "number",
            "description": "Percentage change in sell-side trade count versus the previous 24h window."
          },
          "buy_24h": {
            "type": "number",
            "description": "Buy-side trade count during the latest 24h window."
          },
          "buy_history_24h": {
            "type": "number",
            "description": "Buy-side trade count during the previous 24h window used for comparison."
          },
          "buy_24h_change_percent": {
            "type": "number",
            "description": "Percentage change in buy-side trade count versus the previous 24h window."
          },
          "volume_24h": {
            "type": "number",
            "description": "Total traded token volume during the latest 24h window."
          },
          "volume_24h_usd": {
            "type": "number",
            "description": "Total traded USD volume during the latest 24h window."
          },
          "volume_history_24h": {
            "type": "number",
            "description": "Total traded token volume during the previous 24h window used for comparison."
          },
          "volume_history_24h_usd": {
            "type": "number",
            "description": "Total traded USD volume during the previous 24h window used for comparison."
          },
          "volume_24h_change_percent": {
            "type": "number",
            "description": "Percentage change in total traded token volume versus the previous 24h window."
          },
          "volume_buy_24h": {
            "type": "number",
            "description": "Buy-side token volume during the latest 24h window."
          },
          "volume_buy_24h_usd": {
            "type": "number",
            "description": "Buy-side USD volume during the latest 24h window."
          },
          "volume_buy_history_24h": {
            "type": "number",
            "description": "Buy-side token volume during the previous 24h window used for comparison."
          },
          "volume_buy_history_24h_usd": {
            "type": "number",
            "description": "Buy-side USD volume during the previous 24h window used for comparison."
          },
          "volume_buy_24h_change_percent": {
            "type": "number",
            "description": "Percentage change in buy-side token volume versus the previous 24h window."
          },
          "volume_sell_24h": {
            "type": "number",
            "description": "Sell-side token volume during the latest 24h window."
          },
          "volume_sell_24h_usd": {
            "type": "number",
            "description": "Sell-side USD volume during the latest 24h window."
          },
          "volume_sell_history_24h": {
            "type": "number",
            "description": "Sell-side token volume during the previous 24h window used for comparison."
          },
          "volume_sell_history_24h_usd": {
            "type": "number",
            "description": "Sell-side USD volume during the previous 24h window used for comparison."
          },
          "volume_sell_24h_change_percent": {
            "type": "number",
            "description": "Percentage change in sell-side token volume versus the previous 24h window."
          }
        },
        "additionalProperties": true
      },
      "DefiTokenExitLiquidityObject": {
        "type": "object",
        "required": [
          "token",
          "exit_liquidity",
          "liquidity",
          "price",
          "currency",
          "address",
          "name",
          "symbol",
          "decimals",
          "extensions",
          "logo_uri"
        ],
        "properties": {
          "token": {
            "type": "string",
            "description": "Token mint or contract address used for the exit-liquidity calculation."
          },
          "exit_liquidity": {
            "type": "number",
            "description": "Estimated USD liquidity available for exiting the configured position size under the endpoint's exit-liquidity model."
          },
          "liquidity": {
            "type": "number",
            "description": "Current token liquidity in USD."
          },
          "price": {
            "type": "object",
            "description": "Latest price snapshot used for the exit-liquidity calculation.",
            "required": [
              "value",
              "update_unix_time",
              "update_human_time",
              "update_in_slot"
            ],
            "properties": {
              "value": {
                "type": "number",
                "description": "Latest token price in the requested quote currency."
              },
              "update_unix_time": {
                "type": "integer",
                "description": "Unix timestamp in seconds when the price snapshot was last updated."
              },
              "update_human_time": {
                "type": "string",
                "description": "Human-readable timestamp when the price snapshot was last updated."
              },
              "update_in_slot": {
                "type": "integer",
                "description": "Blockchain slot or block-equivalent associated with the price update when available."
              }
            }
          },
          "currency": {
            "type": "string",
            "description": "Quote currency used for price and exit-liquidity values."
          },
          "address": {
            "type": "string",
            "description": "Canonical token mint or contract address for this token."
          },
          "name": {
            "type": "string",
            "description": "Display name of the token."
          },
          "symbol": {
            "type": "string",
            "description": "Ticker symbol for the token."
          },
          "decimals": {
            "type": "string",
            "description": "Number of decimal places used by the token."
          },
          "extensions": {
            "type": "object",
            "description": "Optional token metadata links and external identifiers."
          },
          "logo_uri": {
            "type": "string",
            "description": "Logo image URL for the token."
          }
        }
      },
      "ListAddressBody": {
        "required": [
          "list_address"
        ],
        "type": "object",
        "properties": {
          "list_address": {
            "type": "string",
            "default": "So11111111111111111111111111111111111111112,DezXAZ8z7PnrnRJjz3wXBoRgixCa6xjnB7YaB1pPB263"
          }
        }
      },
      "LatestTokenLiquidityBody": {
        "required": [
          "addresses"
        ],
        "type": "object",
        "properties": {
          "addresses": {
            "type": "array",
            "minItems": 1,
            "maxItems": 100,
            "description": "Lite packages can request one address. Starter and higher packages can request up to 100 addresses.",
            "items": {
              "type": "string"
            },
            "example": [
              "2RaLR1kY37bbNfqWTK49AiCbPtdF27497jZ6DatKpump"
            ]
          }
        }
      },
      "TokenHolderBatchBody": {
        "required": [
          "wallets",
          "token_address"
        ],
        "type": "object",
        "description": "Request body for retrieving one token balance across multiple wallet owners.",
        "properties": {
          "wallets": {
            "type": "array",
            "description": "Wallet owner addresses to check. Supports 1 to 500 wallets per request.",
            "items": {
              "type": "string",
              "description": "Wallet owner address."
            },
            "example": [
              "5Q544fKrFoe6tsEbD7S8EmxGTJYAKtTVhAW5Q5pge4j1",
              "2fgUSSpZFi8PjyhbrETSeLutJpFsuCfWsk2H6gb3Reye"
            ]
          },
          "token_address": {
            "type": "string",
            "description": "Token mint address to check in each wallet.",
            "example": "So11111111111111111111111111111111111111112"
          }
        }
      },
      "WalletTokenBalanceBody": {
        "required": [
          "wallets",
          "token_address"
        ],
        "type": "object",
        "properties": {
          "wallet": {
            "type": "string",
            "example": "GbrNi5tsbViArzsiE2WX94rMCCGz87w9cVVWVqcPEyx6"
          },
          "token_addresses": {
            "type": "array",
            "items": {
              "type": "string"
            },
            "example": [
              "8i42ZVsjEGVhZ6spj4Z5aB36Msh9Vq4nnBaw5kq4pump"
            ]
          }
        }
      },
      "WalletTxFirstFundedBody": {
        "required": [
          "wallets"
        ],
        "type": "object",
        "properties": {
          "wallets": {
            "type": "array",
            "items": {
              "type": "string"
            },
            "example": [
              "5Q544fKrFoe6tsEbD7S8EmxGTJYAKtTVhAW5Q5pge4j1",
              "2fgUSSpZFi8PjyhbrETSeLutJpFsuCfWsk2H6gb3Reye"
            ]
          },
          "token_address": {
            "type": "string",
            "description": "Token address used to identify the first transaction that funded each wallet with the specified token.",
            "example": "So11111111111111111111111111111111111111112"
          }
        }
      },
      "WalletFundedByBody": {
        "required": [
          "wallets"
        ],
        "type": "object",
        "properties": {
          "wallets": {
            "type": "array",
            "items": {
              "type": "string"
            },
            "example": [
              "5Q544fKrFoe6tsEbD7S8EmxGTJYAKtTVhAW5Q5pge4j1",
              "2fgUSSpZFi8PjyhbrETSeLutJpFsuCfWsk2H6gb3Reye"
            ]
          }
        }
      },
      "MultiPriceBody": {
        "allOf": [
          {
            "$ref": "#/components/schemas/ListAddressBody"
          }
        ]
      },
      "MultiPriceVolumeBody": {
        "allOf": [
          {
            "$ref": "#/components/schemas/ListAddressBody"
          },
          {
            "type": "object",
            "properties": {
              "type": {
                "type": "string",
                "enum": [
                  "1h",
                  "2h",
                  "4h",
                  "8h",
                  "24h"
                ],
                "default": "24h"
              }
            }
          }
        ]
      },
      "SearchResponse": {
        "type": "object",
        "required": [
          "success",
          "data"
        ],
        "properties": {
          "success": {
            "type": "boolean",
            "description": "Whether the request completed successfully."
          },
          "data": {
            "type": "object",
            "description": "Search results grouped by result type.",
            "properties": {
              "items": {
                "type": "array",
                "description": "Grouped search results returned by the query.",
                "items": {
                  "type": "object",
                  "properties": {
                    "type": {
                      "type": "string",
                      "description": "Result group type, such as token or pair."
                    },
                    "result": {
                      "type": "array",
                      "description": "Matched entities for the group type.",
                      "items": {
                        "oneOf": [
                          {
                            "type": "object",
                            "properties": {
                              "name": {
                                "type": "string",
                                "description": "Token or market name."
                              },
                              "symbol": {
                                "type": "string",
                                "description": "Token symbol."
                              },
                              "address": {
                                "type": "string",
                                "description": "Token contract or market address."
                              },
                              "network": {
                                "type": "string",
                                "description": "Network where the asset is listed."
                              },
                              "decimals": {
                                "type": "number",
                                "description": "Token decimals."
                              },
                              "logo_uri": {
                                "type": "string",
                                "description": "Logo URL for the asset."
                              },
                              "verified": {
                                "type": "boolean",
                                "description": "Whether the token metadata is verified."
                              },
                              "fdv": {
                                "type": "number",
                                "description": "Fully diluted valuation."
                              },
                              "market_cap": {
                                "type": "number",
                                "description": "Market capitalization."
                              },
                              "liquidity": {
                                "type": "number",
                                "description": "Liquidity in USD."
                              },
                              "price": {
                                "type": "number",
                                "description": "Latest token price."
                              },
                              "price_change_24h_percent": {
                                "type": "number",
                                "description": "24-hour price change percentage."
                              },
                              "sell_24h": {
                                "type": "integer",
                                "description": "Sell count in the last 24 hours."
                              },
                              "sell_24h_change_percent": {
                                "type": "number",
                                "description": "24-hour change in sell count."
                              },
                              "buy_24h": {
                                "type": "integer",
                                "description": "Buy count in the last 24 hours."
                              },
                              "buy_24h_change_percent": {
                                "type": "number",
                                "description": "24-hour change in buy count."
                              },
                              "unique_wallet_24h": {
                                "type": "number",
                                "description": "Unique wallets that traded in the last 24 hours."
                              },
                              "unique_wallet_24h_change_percent": {
                                "type": "number",
                                "description": "24-hour change in unique wallet count."
                              },
                              "trade_24h": {
                                "type": "integer",
                                "description": "Trade count in the last 24 hours."
                              },
                              "trade_24h_change_percent": {
                                "type": "number",
                                "description": "24-hour change in trade count."
                              },
                              "volume_24h_change_percent": {
                                "type": "number",
                                "description": "24-hour change in volume."
                              },
                              "volume_24h_usd": {
                                "type": "number",
                                "description": "24-hour volume in USD."
                              },
                              "last_trade_unix_time": {
                                "type": "number",
                                "description": "Unix timestamp of the last trade."
                              },
                              "last_trade_human_time": {
                                "type": "string",
                                "description": "Human-readable timestamp of the last trade."
                              },
                              "supply": {
                                "type": "number",
                                "description": "Token supply."
                              },
                              "updated_time": {
                                "type": "integer",
                                "description": "Unix timestamp when the search result was last updated."
                              }
                            },
                            "required": [
                              "name",
                              "symbol",
                              "address",
                              "decimals",
                              "fdv",
                              "liquidity",
                              "volume_24h_usd",
                              "volume_24h_change_percent",
                              "price",
                              "price_change_24h_percent",
                              "logo_uri"
                            ]
                          },
                          {
                            "type": "object",
                            "properties": {
                              "name": {
                                "type": "string",
                                "description": "Market or pair name."
                              },
                              "address": {
                                "type": "string",
                                "description": "Pair address or market address."
                              },
                              "network": {
                                "type": "string",
                                "description": "Network where the market exists."
                              },
                              "liquidity": {
                                "type": "number",
                                "description": "Liquidity in USD."
                              },
                              "unique_wallet_24h": {
                                "type": "integer",
                                "description": "Unique wallets that traded the market in the last 24 hours."
                              },
                              "unique_wallet_24h_change_percent": {
                                "type": "number",
                                "description": "24-hour change in unique wallet count."
                              },
                              "trade_24h": {
                                "type": "integer",
                                "description": "Trade count in the last 24 hours."
                              },
                              "trade_24h_change_percent": {
                                "type": "number",
                                "description": "24-hour change in trade count."
                              },
                              "volume_24h_usd": {
                                "type": "number",
                                "description": "24-hour volume in USD."
                              },
                              "last_trade_unix_time": {
                                "type": "integer",
                                "description": "Unix timestamp of the last trade."
                              },
                              "last_trade_human_time": {
                                "type": "string",
                                "description": "Human-readable timestamp of the last trade."
                              },
                              "source": {
                                "type": "string",
                                "description": "DEX or market source for the pair."
                              },
                              "base_mint": {
                                "type": "string",
                                "description": "Base token mint address."
                              },
                              "quote_mint": {
                                "type": "string",
                                "description": "Quote token mint address."
                              },
                              "amount_base": {
                                "type": "number",
                                "description": "Base token amount in the latest trade snapshot."
                              },
                              "amount_quote": {
                                "type": "number",
                                "description": "Quote token amount in the latest trade snapshot."
                              }
                            },
                            "required": [
                              "name",
                              "address",
                              "liquidity",
                              "base_mint",
                              "quote_mint"
                            ]
                          }
                        ]
                      }
                    }
                  },
                  "required": [
                    "type",
                    "result"
                  ]
                }
              }
            },
            "required": [
              "items"
            ]
          }
        }
      },
      "DefiPriceStatsResponse": {
        "type": "object",
        "required": [
          "success",
          "data"
        ],
        "properties": {
          "success": {
            "type": "boolean",
            "description": "Whether the request completed successfully."
          },
          "data": {
            "type": "array",
            "description": "Array of price-stat rows for the requested token set and timeframes.",
            "items": {
              "$ref": "#/components/schemas/DefiTokenPriceStatsWithTimeframesObject"
            }
          }
        }
      },
      "DefiTokenPriceStatsWithTimeframesObject": {
        "type": "object",
        "required": [
          "address",
          "data"
        ],
        "properties": {
          "address": {
            "type": "string",
            "description": "The address of the token contract."
          },
          "is_scaled_ui_token": {
            "type": "boolean"
          },
          "multiplier": {
            "type": "number",
            "description": "Multiplier used to scale the token price"
          },
          "data": {
            "type": "array",
            "description": "Price data for a timeframe",
            "items": {
              "type": "object",
              "required": [
                "unix_time_update_price",
                "time_frame",
                "price",
                "price_change_percent",
                "high",
                "low"
              ],
              "properties": {
                "unix_time_update_price": {
                  "type": "integer",
                  "description": "Unix timestamp of when the data was updated"
                },
                "time_frame": {
                  "type": "string",
                  "description": "Time period for the data (e.g., '24h', '2d', '3d')",
                  "example": "24h"
                },
                "price": {
                  "type": "number",
                  "description": "Current token price"
                },
                "price_change_percent": {
                  "type": "number",
                  "description": "Percentage change in price over the specified timeframe"
                },
                "high": {
                  "type": "number",
                  "description": "Highest price during the timeframe"
                },
                "low": {
                  "type": "number",
                  "description": "Lowest price during the timeframe"
                },
                "scaled_price": {
                  "type": "number",
                  "description": "Current token scaled price"
                },
                "scaled_high": {
                  "type": "number",
                  "description": "Highest scaled price during the timeframe"
                },
                "scaled_low": {
                  "type": "number",
                  "description": "Lowest scaled price during the timeframe"
                }
              }
            }
          }
        }
      },
      "UtilsCreditsUsageResponse": {
        "type": "object",
        "required": [
          "success",
          "data"
        ],
        "properties": {
          "success": {
            "type": "boolean",
            "description": "Whether the request completed successfully."
          },
          "data": {
            "type": "object",
            "description": "Credit usage and remaining balance for the current account.",
            "required": [
              "start_time",
              "end_time",
              "usage"
            ],
            "properties": {
              "start_time": {
                "type": "integer",
                "description": "Start of the credit usage window as a Unix timestamp."
              },
              "end_time": {
                "type": "integer",
                "description": "End of the credit usage window as a Unix timestamp."
              },
              "usage": {
                "type": "object",
                "description": "Credit usage totals.",
                "required": [
                  "api",
                  "ws",
                  "total"
                ],
                "properties": {
                  "api": {
                    "type": "integer",
                    "description": "API credits used."
                  },
                  "ws": {
                    "type": "integer",
                    "description": "WebSocket credits used."
                  },
                  "total": {
                    "type": "integer",
                    "description": "Total credits used."
                  }
                }
              },
              "remaining": {
                "type": "object",
                "description": "Remaining credits in the account.",
                "required": [
                  "api",
                  "ws",
                  "total"
                ],
                "properties": {
                  "api": {
                    "type": "integer",
                    "description": "Remaining API credits."
                  },
                  "ws": {
                    "type": "integer",
                    "description": "Remaining WebSocket credits."
                  },
                  "total": {
                    "type": "integer",
                    "description": "Total remaining credits."
                  }
                }
              },
              "overage_usage": {
                "type": "object",
                "description": "Credits consumed beyond the plan allowance.",
                "required": [
                  "api",
                  "ws",
                  "total"
                ],
                "properties": {
                  "api": {
                    "type": "integer",
                    "description": "Overage API credits used."
                  },
                  "ws": {
                    "type": "integer",
                    "description": "Overage WebSocket credits used."
                  },
                  "total": {
                    "type": "integer",
                    "description": "Total overage credits used."
                  }
                }
              },
              "overage_cost": {
                "type": "object",
                "description": "Estimated overage cost by channel.",
                "required": [
                  "api",
                  "ws",
                  "total"
                ],
                "properties": {
                  "api": {
                    "type": "integer",
                    "description": "Overage cost for API usage."
                  },
                  "ws": {
                    "type": "integer",
                    "description": "Overage cost for WebSocket usage."
                  },
                  "total": {
                    "type": "integer",
                    "description": "Total overage cost."
                  }
                }
              }
            }
          }
        }
      },
      "WalletTransferBody": {
        "required": [
          "wallet"
        ],
        "type": "object",
        "properties": {
          "wallet": {
            "type": "string",
            "description": "Address of the wallet to retrieve transfers for.",
            "example": "41zCUJsKk6cMB94DDtm99qWmyMZfp4GkAhhuz4xTwePu"
          },
          "token_address": {
            "type": "string",
            "description": "Address of the token to filter transfers by.",
            "example": "EPjFWdd5AufqSSqeM2qN1xzybapC8G4wEGGkZwyTDt1v"
          },
          "flow": {
            "type": "string",
            "description": "Transfer direction relative to the specified wallet. Use `in` for incoming transfers or `out` for outgoing transfers.",
            "enum": [
              "in",
              "out"
            ],
            "example": "in"
          },
          "time_from": {
            "type": "number",
            "description": "Start of the transfer time range as a Unix timestamp.",
            "example": 1727788070
          },
          "time_to": {
            "type": "number",
            "description": "End of the transfer time range as a Unix timestamp.",
            "example": 1727788076
          },
          "from_amount": {
            "type": "number",
            "description": "Minimum token amount to include.",
            "example": 10.01
          },
          "to_amount": {
            "type": "number",
            "description": "Maximum token amount to include.",
            "example": 10.001
          },
          "from_value": {
            "type": "number",
            "description": "Minimum transfer value in USD to include.",
            "example": 1.001
          },
          "to_value": {
            "type": "number",
            "description": "Maximum transfer value in USD to include.",
            "example": 10000
          },
          "from_wallet": {
            "type": "string",
            "description": "Address of the sender wallet to filter transfers by.",
            "example": "41zCUJsKk6cMB94DDtm99qWmyMZfp4GkAhhuz4xTwePu"
          },
          "to_wallet": {
            "type": "string",
            "description": "Address of the recipient wallet to filter transfers by.",
            "example": "41zCUJsKk6cMB94DDtm99qWmyMZfp4GkAhhuz4xTwePu"
          },
          "cursor": {
            "type": "string",
            "description": "Cursor used to retrieve the next page of results.",
            "example": "xxx"
          },
          "limit": {
            "type": "number",
            "description": "Maximum number of results to return.",
            "example": 100
          }
        }
      },
      "TotalWalletTransferBody": {
        "required": [
          "wallet"
        ],
        "type": "object",
        "properties": {
          "wallet": {
            "type": "string",
            "description": "Address of the wallet to retrieve transfers for.",
            "example": "41zCUJsKk6cMB94DDtm99qWmyMZfp4GkAhhuz4xTwePu"
          },
          "token_address": {
            "type": "string",
            "description": "Address of the token to filter transfers by.",
            "example": "EPjFWdd5AufqSSqeM2qN1xzybapC8G4wEGGkZwyTDt1v"
          },
          "flow": {
            "type": "string",
            "description": "Transfer direction relative to the specified wallet. Use `in` for incoming transfers or `out` for outgoing transfers.",
            "enum": [
              "in",
              "out"
            ],
            "example": "in"
          },
          "time_from": {
            "type": "number",
            "description": "Start of the transfer time range as a Unix timestamp.",
            "example": 1727788070
          },
          "time_to": {
            "type": "number",
            "description": "End of the transfer time range as a Unix timestamp.",
            "example": 1727788076
          },
          "from_amount": {
            "type": "number",
            "description": "Minimum token amount to include.",
            "example": 10.01
          },
          "to_amount": {
            "type": "number",
            "description": "Maximum token amount to include.",
            "example": 10.001
          },
          "from_value": {
            "type": "number",
            "description": "Minimum transfer value in USD to include.",
            "example": 1.001
          },
          "to_value": {
            "type": "number",
            "description": "Maximum transfer value in USD to include.",
            "example": 10000
          },
          "from_wallet": {
            "type": "string",
            "description": "Address of the sender wallet to filter transfers by.",
            "example": "41zCUJsKk6cMB94DDtm99qWmyMZfp4GkAhhuz4xTwePu"
          },
          "to_wallet": {
            "type": "string",
            "description": "Address of the recipient wallet to filter transfers by.",
            "example": "41zCUJsKk6cMB94DDtm99qWmyMZfp4GkAhhuz4xTwePu"
          }
        }
      },
      "TokenTransferBody": {
        "required": [
          "token_address"
        ],
        "type": "object",
        "properties": {
          "token_address": {
            "type": "string",
            "description": "Address of the token to retrieve transfers for.",
            "example": "EPjFWdd5AufqSSqeM2qN1xzybapC8G4wEGGkZwyTDt1v"
          },
          "time_from": {
            "type": "number",
            "description": "Start of the transfer time range as a Unix timestamp.",
            "example": 1727788070
          },
          "time_to": {
            "type": "number",
            "description": "End of the transfer time range as a Unix timestamp.",
            "example": 1727788076
          },
          "from_amount": {
            "type": "number",
            "description": "Minimum token amount to include.",
            "example": 10.01
          },
          "to_amount": {
            "type": "number",
            "description": "Maximum token amount to include.",
            "example": 10.001
          },
          "from_value": {
            "type": "number",
            "description": "Minimum transfer value in USD to include.",
            "example": 1.001
          },
          "to_value": {
            "type": "number",
            "description": "Maximum transfer value in USD to include.",
            "example": 10000
          },
          "from_wallet": {
            "type": "string",
            "description": "Address of the sender wallet.",
            "example": "41zCUJsKk6cMB94DDtm99qWmyMZfp4GkAhhuz4xTwePu"
          },
          "to_wallet": {
            "type": "string",
            "description": "Address of the recipient wallet.",
            "example": "41zCUJsKk6cMB94DDtm99qWmyMZfp4GkAhhuz4xTwePu"
          },
          "cursor": {
            "type": "string",
            "description": "Cursor used to retrieve the next page of results.",
            "example": "xxx"
          },
          "limit": {
            "type": "number",
            "example": 100
          }
        }
      },
      "TotalTokenTransferBody": {
        "required": [
          "token_address"
        ],
        "type": "object",
        "properties": {
          "token_address": {
            "type": "string",
            "description": "Address of the token to retrieve transfers for.",
            "example": "EPjFWdd5AufqSSqeM2qN1xzybapC8G4wEGGkZwyTDt1v"
          },
          "time_from": {
            "type": "number",
            "description": "Start of the transfer time range as a Unix timestamp.",
            "example": 1727788070
          },
          "time_to": {
            "type": "number",
            "description": "End of the transfer time range as a Unix timestamp.",
            "example": 1727788076
          },
          "from_amount": {
            "type": "number",
            "description": "Minimum token amount to include.",
            "example": 10.01
          },
          "to_amount": {
            "type": "number",
            "description": "Maximum token amount to include.",
            "example": 10.001
          },
          "from_value": {
            "type": "number",
            "description": "Minimum transfer value in USD to include.",
            "example": 1.001
          },
          "to_value": {
            "type": "number",
            "description": "Maximum transfer value in USD to include.",
            "example": 10000
          },
          "from_wallet": {
            "type": "string",
            "description": "Address of the sender wallet.",
            "example": "41zCUJsKk6cMB94DDtm99qWmyMZfp4GkAhhuz4xTwePu"
          },
          "to_wallet": {
            "type": "string",
            "description": "Address of the recipient wallet.",
            "example": "41zCUJsKk6cMB94DDtm99qWmyMZfp4GkAhhuz4xTwePu"
          }
        }
      },
      "TokenHolderDistributionResponse": {
        "type": "object",
        "description": "Response containing holder-distribution summary data and optional holder rows.",
        "required": [
          "success",
          "data"
        ],
        "properties": {
          "success": {
            "type": "boolean",
            "description": "Whether the request succeeded."
          },
          "data": {
            "type": "object",
            "description": "Holder-distribution payload for the requested token and mode.",
            "required": [
              "token_address",
              "mode",
              "summary",
              "holders"
            ],
            "properties": {
              "token_address": {
                "type": "string",
                "description": "The token address the distribution was computed for."
              },
              "mode": {
                "type": "string",
                "enum": [
                  "percent",
                  "top"
                ],
                "description": "The filter mode the result was computed with. `percent` = holders within the [min_percent, max_percent] supply range, `top` = the top_n holders by supply share."
              },
              "summary": {
                "type": "object",
                "description": "Aggregated statistics across every holder matching the selected mode.",
                "properties": {
                  "wallet_count": {
                    "type": "integer",
                    "description": "Number of matching holders. Counts token accounts instead of wallets when address_type=token_account."
                  },
                  "total_holding": {
                    "type": "string",
                    "description": "Total token amount held by all matching holders."
                  },
                  "percent_of_supply": {
                    "type": "number",
                    "description": "Percentage of total supply held by all matching holders."
                  }
                }
              },
              "holders": {
                "type": "array",
                "description": "The matching holders, ordered by holding descending. Returned only when include_list=true; otherwise an empty array.",
                "items": {
                  "type": "object",
                  "properties": {
                    "wallet": {
                      "type": "string",
                      "description": "Holder wallet address. Returned when address_type=wallet (default)."
                    },
                    "token_account": {
                      "type": "string",
                      "description": "Holder token account address. Returned when address_type=token_account."
                    },
                    "holding": {
                      "type": "string",
                      "description": "Token amount held by this holder."
                    },
                    "percent_of_supply": {
                      "type": "number",
                      "description": "Percentage of total supply held by this holder."
                    }
                  }
                }
              }
            }
          }
        }
      },
      "TokenHolderProfileResponse": {
        "type": "object",
        "required": [
          "success",
          "data"
        ],
        "properties": {
          "success": {
            "type": "boolean",
            "description": "Whether the request succeeded."
          },
          "data": {
            "type": "object",
            "description": "Holder-profile payload for the requested token.",
            "properties": {
              "token": {
                "type": "object",
                "description": "Market and issuance context for the token tied to the holder profile.",
                "properties": {
                  "creation_time": {
                    "type": "integer",
                    "description": "Token creation time as unix timestamp"
                  },
                  "market_cap": {
                    "type": "number",
                    "description": "Current market cap in USD"
                  },
                  "liquidity": {
                    "type": "number",
                    "description": "Current liquidity in USD"
                  },
                  "volume_1h": {
                    "type": "number",
                    "description": "Total trade volume in token amount over the selected interval"
                  },
                  "volume_1h_usd": {
                    "type": "number",
                    "description": "Total trade volume in USD over the selected interval"
                  },
                  "buy_volume_1h": {
                    "type": "number",
                    "description": "Buy volume in token amount over the selected interval"
                  },
                  "buy_volume_1h_usd": {
                    "type": "number",
                    "description": "Buy volume in USD over the selected interval"
                  },
                  "sell_volume_1h": {
                    "type": "number",
                    "description": "Sell volume in token amount over the selected interval"
                  },
                  "sell_volume_1h_usd": {
                    "type": "number",
                    "description": "Sell volume in USD over the selected interval"
                  },
                  "is_scaled_ui_token": {
                    "type": "boolean",
                    "description": "Whether this token has scaled UI amount. Always returned regardless of ui_amount_mode."
                  },
                  "top10_holder": {
                    "type": "object",
                    "description": "Aggregated stats for the top 10 holders",
                    "properties": {
                      "hold_amount": {
                        "type": "string",
                        "description": "Total token amount held by the top 10 holders"
                      },
                      "percent_of_supply": {
                        "type": "number",
                        "description": "Percentage of total supply held by the top 10 holders"
                      }
                    }
                  }
                }
              },
              "holder_summary": {
                "type": "object",
                "description": "Aggregated stats across all labeled holders",
                "properties": {
                  "total_holder": {
                    "type": "integer",
                    "description": "Total number of labeled holders"
                  },
                  "total_holding": {
                    "type": "number",
                    "description": "Total token amount held by all labeled holders"
                  },
                  "percent_of_supply": {
                    "type": "number",
                    "description": "Percentage of total supply held by all labeled holders"
                  }
                }
              },
              "tags": {
                "type": "array",
                "description": "Breakdown by holder tag, one entry per tag. Supported tags: `bundler`, `sniper`, `insider`, `dev`, `smart_trader`, `kol`. A tag with no matching holder is still returned, with zeroed metrics.",
                "items": {
                  "type": "object",
                  "properties": {
                    "tag": {
                      "type": "string",
                      "enum": [
                        "bundler",
                        "sniper",
                        "insider",
                        "dev",
                        "smart_trader",
                        "kol"
                      ],
                      "description": "Holder category tag."
                    },
                    "holder_count": {
                      "type": "integer",
                      "description": "Number of wallets with this tag that currently hold the token"
                    },
                    "hold_amount": {
                      "type": "string",
                      "description": "Total token amount held by wallets with this tag"
                    },
                    "percent_of_supply": {
                      "type": "number",
                      "description": "Percentage of total supply held by wallets with this tag"
                    },
                    "buy_volume": {
                      "type": "string",
                      "description": "Total token buy volume by wallets with this tag"
                    },
                    "sell_volume": {
                      "type": "string",
                      "description": "Total token sell volume by wallets with this tag"
                    },
                    "buy_volume_usd": {
                      "type": "string",
                      "description": "Total buy volume in USD by wallets with this tag"
                    },
                    "sell_volume_usd": {
                      "type": "string",
                      "description": "Total sell volume in USD by wallets with this tag"
                    },
                    "avg_buy_price": {
                      "type": "string",
                      "description": "Average buy price in USD across all wallets with this tag"
                    },
                    "pnl": {
                      "type": "string",
                      "description": "Total PnL in USD for wallets with this tag, realized and unrealized combined"
                    }
                  }
                }
              }
            }
          }
        }
      },
      "TokenHolderPositionResponse": {
        "type": "object",
        "required": [
          "success",
          "data"
        ],
        "properties": {
          "success": {
            "type": "boolean",
            "description": "Whether the request succeeded."
          },
          "data": {
            "type": "array",
            "description": "Wallet positions matching the requested labels, one entry per wallet.",
            "items": {
              "type": "object",
              "description": "One wallet position row for the requested token and holder labels.",
              "properties": {
                "wallet_address": {
                  "type": "string",
                  "description": "Holder wallet address"
                },
                "hold_amount": {
                  "type": "string",
                  "description": "Token amount currently held by this wallet"
                },
                "percent_of_supply": {
                  "type": "number",
                  "description": "Percentage of total supply held by this wallet"
                },
                "buy_volume": {
                  "type": "string",
                  "description": "Total token buy volume of this wallet"
                },
                "sell_volume": {
                  "type": "string",
                  "description": "Total token sell volume of this wallet"
                },
                "buy_volume_usd": {
                  "type": "string",
                  "description": "Total buy volume in USD of this wallet"
                },
                "sell_volume_usd": {
                  "type": "string",
                  "description": "Total sell volume in USD of this wallet"
                },
                "avg_buy_price": {
                  "type": "string",
                  "description": "Average buy price in USD of this wallet"
                },
                "pnl": {
                  "type": "string",
                  "description": "Total PnL in USD for this wallet, realized and unrealized combined"
                },
                "buy_count": {
                  "type": "integer",
                  "description": "Number of buy transactions made by this wallet"
                },
                "sell_count": {
                  "type": "integer",
                  "description": "Number of sell transactions made by this wallet"
                },
                "first_trade_at": {
                  "type": "string",
                  "format": "date-time",
                  "description": "Timestamp of this wallet's first trade on the token (ISO 8601, UTC)"
                },
                "labels": {
                  "type": "array",
                  "description": "Labels associated with this wallet for the given token. Supported labels: `bundler`, `sniper`, `insider`, `dev`, `smart_trader`, `kol`.",
                  "items": {
                    "type": "string",
                    "enum": [
                      "bundler",
                      "sniper",
                      "insider",
                      "dev",
                      "smart_trader",
                      "kol"
                    ]
                  }
                }
              }
            }
          }
        }
      },
      "TokenFirstBuyersResponse": {
        "type": "object",
        "required": [
          "success",
          "data"
        ],
        "properties": {
          "success": {
            "type": "boolean",
            "description": "Whether the request succeeded."
          },
          "data": {
            "type": "object",
            "properties": {
              "token_address": {
                "type": "string",
                "description": "Token mint address"
              },
              "flow": {
                "type": "string",
                "description": "Trade flow direction",
                "enum": [
                  "buy"
                ]
              },
              "page_summary": {
                "type": "object",
                "description": "Aggregated counts of position statuses for the buyers returned in this page",
                "properties": {
                  "total_wallets": {
                    "type": "integer",
                    "description": "Total number of wallets in this page"
                  },
                  "buy_more": {
                    "type": "integer",
                    "description": "Number of wallets with position_status = buy_more"
                  },
                  "hold": {
                    "type": "integer",
                    "description": "Number of wallets with position_status = hold"
                  },
                  "sell_partial": {
                    "type": "integer",
                    "description": "Number of wallets with position_status = sell_partial"
                  },
                  "sell_all": {
                    "type": "integer",
                    "description": "Number of wallets with position_status = sell_all"
                  }
                }
              },
              "buyers": {
                "type": "array",
                "description": "List of the first wallets that bought the token, ordered from earliest to latest.",
                "items": {
                  "type": "object",
                  "properties": {
                    "wallet_address": {
                      "type": "string",
                      "description": "Wallet address of the buyer"
                    },
                    "block_number": {
                      "type": "integer",
                      "description": "Block number of the wallet's first buy transaction for this token"
                    },
                    "block_unix_time": {
                      "type": "integer",
                      "description": "Unix timestamp (seconds) of the wallet's first buy transaction for this token"
                    },
                    "first_buy_volume": {
                      "type": "number",
                      "description": "Token amount bought in the wallet's first buy transaction"
                    },
                    "first_buy_volume_usd": {
                      "type": "number",
                      "description": "USD value of the first buy"
                    },
                    "total_buy_volume": {
                      "type": "number",
                      "description": "Cumulative token amount the wallet has bought up to now"
                    },
                    "total_buy_volume_usd": {
                      "type": "number",
                      "description": "Cumulative buy volume in USD up to now"
                    },
                    "initial_holding": {
                      "type": "number",
                      "description": "Token balance right after the first buy. May include tokens transferred in beforehand."
                    },
                    "current_holding": {
                      "type": "number",
                      "description": "Token amount the wallet currently holds"
                    },
                    "position_status": {
                      "type": "string",
                      "enum": [
                        "buy_more",
                        "hold",
                        "sell_partial",
                        "sell_all"
                      ],
                      "description": "Position status of the wallet relative to its initial holding (the amount it held right after its first buy):\n- `buy_more`: current_holding > initial_holding — the wallet actively bought more (highest conviction).\n- `hold`: current_holding == initial_holding — the wallet is holding, nothing sold yet.\n- `sell_partial`: initial_holding × 0.01 < current_holding < initial_holding — the wallet sold a meaningful portion.\n- `sell_all`: current_holding <= initial_holding × 0.01 — the wallet sold almost everything (≤ 1% dust left)."
                    },
                    "tags": {
                      "type": "array",
                      "description": "Wallet classification tags. Supported tags: `bundler`, `sniper`, `insider`, `dev`, `smart_trader`, `kol`. Empty when the wallet carries no tag.",
                      "items": {
                        "type": "string",
                        "enum": [
                          "bundler",
                          "sniper",
                          "insider",
                          "dev",
                          "smart_trader",
                          "kol"
                        ]
                      }
                    }
                  }
                }
              }
            }
          }
        }
      },
      "TokenHolderBatchResponse": {
        "type": "object",
        "description": "Response containing token balances for a list of wallet owners.",
        "required": [
          "success",
          "data"
        ],
        "properties": {
          "success": {
            "type": "boolean",
            "description": "Indicates whether the request was successful."
          },
          "data": {
            "type": "object",
            "description": "Token balances for the requested wallet owners.",
            "properties": {
              "items": {
                "type": "array",
                "description": "One balance row per wallet that holds the requested token.",
                "items": {
                  "type": "object",
                  "description": "Token balance for one requested wallet owner.",
                  "properties": {
                    "balance": {
                      "type": "string",
                      "description": "Raw token balance held by the wallet before applying token decimals."
                    },
                    "decimals": {
                      "type": "integer",
                      "description": "Number of decimal places used by the token mint."
                    },
                    "mint": {
                      "type": "string",
                      "description": "Token mint address."
                    },
                    "owner": {
                      "type": "string",
                      "description": "Wallet address from the request."
                    },
                    "amount": {
                      "type": "number",
                      "description": "Token balance after applying decimals or Solana Token-2022 scaled UI amount when requested and supported."
                    }
                  }
                }
              }
            }
          }
        }
      },
      "TokenHolderChartResponse": {
        "type": "object",
        "description": "Response containing holder-count chart data for a Solana token.",
        "required": [
          "success",
          "data"
        ],
        "properties": {
          "success": {
            "type": "boolean",
            "description": "Indicates whether the request was successful."
          },
          "data": {
            "type": "array",
            "description": "Holder-count chart points ordered according to the chart query.",
            "items": {
              "type": "object",
              "description": "One holder-count chart point.",
              "properties": {
                "timestamp": {
                  "type": "integer",
                  "description": "Timestamp of the holder-count data point as a unix timestamp in seconds."
                },
                "holder": {
                  "type": "integer",
                  "description": "Number of token holders at this timestamp."
                },
                "net_change": {
                  "type": "integer",
                  "description": "Net holder-count change compared with the baseline selected by percent_mode."
                },
                "percent_change": {
                  "type": "number",
                  "description": "Holder-count percentage change compared with the baseline selected by percent_mode."
                }
              }
            }
          }
        }
      },
      "DefiTokenFeeSummaryObject": {
        "type": "object",
        "properties": {
          "sum_global_fee_paid_amount_sol": {
            "type": "number",
            "description": "Total global fees paid in SOL."
          },
          "sum_network_fee_amount_sol": {
            "type": "number",
            "description": "Total network fees paid in SOL."
          },
          "sum_priority_fee_amount_sol": {
            "type": "number",
            "description": "Total priority fees paid in SOL."
          },
          "sum_tips_fee_amount_sol": {
            "type": "number",
            "description": "Total tips fees paid in SOL."
          },
          "sum_trading_platform_fee_amount_sol": {
            "type": "number",
            "description": "Total trading platform fees paid in SOL."
          },
          "sum_trading_platform_fee_amount_stablecoins": {
            "type": "number",
            "description": "Total trading platform fees paid in stablecoins."
          }
        }
      },
      "DefiTokenFeeDetailsObject": {
        "type": "object",
        "properties": {
          "tips_fee_amount_sol": {
            "type": "object",
            "description": "Breakdown of tips fees paid in SOL by provider.",
            "additionalProperties": {
              "type": "number"
            }
          },
          "trading_platform_fee_amount_sol": {
            "type": "object",
            "description": "Breakdown of trading platform fees paid in SOL by provider.",
            "additionalProperties": {
              "type": "number"
            }
          },
          "trading_platform_fee_amout_stablecoins": {
            "type": "object",
            "description": "Breakdown of trading platform fees paid in stablecoins by provider.",
            "additionalProperties": {
              "type": "number"
            }
          }
        }
      },
      "DefiTokenFeeTimeframeObject": {
        "type": "object",
        "properties": {
          "summary": {
            "$ref": "#/components/schemas/DefiTokenFeeSummaryObject",
            "description": "Aggregated fee totals for the timeframe."
          },
          "details": {
            "$ref": "#/components/schemas/DefiTokenFeeDetailsObject",
            "description": "Provider-level fee breakdown for the timeframe."
          },
          "unix_start": {
            "type": "number",
            "description": "Start of the timeframe as a Unix timestamp."
          },
          "unix_end": {
            "type": "number",
            "description": "End of the timeframe as a Unix timestamp."
          }
        }
      },
      "DefiTokenFeeSingleResponse": {
        "type": "object",
        "required": [
          "success",
          "data"
        ],
        "properties": {
          "success": {
            "type": "boolean",
            "description": "Whether the request completed successfully."
          },
          "data": {
            "type": "object",
            "description": "Global fees paid data grouped by timeframe.",
            "additionalProperties": {
              "$ref": "#/components/schemas/DefiTokenFeeTimeframeObject"
            }
          }
        }
      },
      "DefiTokenFeeMultipleResponse": {
        "type": "object",
        "required": [
          "success",
          "data"
        ],
        "properties": {
          "success": {
            "type": "boolean",
            "description": "Whether the request completed successfully."
          },
          "data": {
            "type": "object",
            "description": "Global fees paid data grouped by token address and timeframe.",
            "additionalProperties": {
              "type": "object",
              "additionalProperties": {
                "$ref": "#/components/schemas/DefiTokenFeeTimeframeObject"
              }
            }
          }
        }
      },
      "ChartTagHoldingsResponse": {
        "type": "object",
        "required": [
          "success",
          "data"
        ],
        "properties": {
          "success": {
            "type": "boolean",
            "description": "Whether the request succeeded."
          },
          "data": {
            "type": "object",
            "description": "Holder time series grouped by holder tag type. Each key is a tag type and maps to its time series. Supported tag types: `bundler`, `sniper`. Only the tag types requested via the tag_type parameter are returned.",
            "properties": {
              "bundler": {
                "type": "array",
                "description": "Holder time series for a single tag type, ordered from newest to oldest.",
                "items": {
                  "type": "object",
                  "description": "A single data point in the holder time series for a tag type.",
                  "properties": {
                    "total_holder": {
                      "type": "integer",
                      "description": "Number of wallets carrying this tag that hold the token at this data point."
                    },
                    "total_holding": {
                      "type": "number",
                      "description": "Total token amount held by the tagged wallets at this data point."
                    },
                    "time": {
                      "type": "integer",
                      "description": "Start time of the data point as a unix timestamp in seconds."
                    }
                  }
                }
              },
              "sniper": {
                "type": "array",
                "description": "Holder time series for a single tag type, ordered from newest to oldest.",
                "items": {
                  "type": "object",
                  "description": "A single data point in the holder time series for a tag type.",
                  "properties": {
                    "total_holder": {
                      "type": "integer",
                      "description": "Number of wallets carrying this tag that hold the token at this data point."
                    },
                    "total_holding": {
                      "type": "number",
                      "description": "Total token amount held by the tagged wallets at this data point."
                    },
                    "time": {
                      "type": "integer",
                      "description": "Start time of the data point as a unix timestamp in seconds."
                    }
                  }
                }
              }
            },
            "additionalProperties": {
              "type": "array",
              "description": "Holder time series for a single tag type, ordered from newest to oldest.",
              "items": {
                "type": "object",
                "description": "A single data point in the holder time series for a tag type.",
                "properties": {
                  "total_holder": {
                    "type": "integer",
                    "description": "Number of wallets carrying this tag that hold the token at this data point."
                  },
                  "total_holding": {
                    "type": "number",
                    "description": "Total token amount held by the tagged wallets at this data point."
                  },
                  "time": {
                    "type": "integer",
                    "description": "Start time of the data point as a unix timestamp in seconds."
                  }
                }
              }
            }
          }
        }
      },
      "BlockchainAccountDetailResponse": {
        "type": "object",
        "required": [
          "success",
          "data"
        ],
        "properties": {
          "success": {
            "type": "boolean"
          },
          "data": {
            "type": "object",
            "properties": {
              "name": {
                "type": "string",
                "description": "Decoded account type or parser label when Birdeye recognizes the account layout."
              },
              "program": {
                "type": "string",
                "description": "Program family associated with the account data parser."
              },
              "lamports": {
                "type": "integer",
                "format": "int64",
                "description": "Lamport balance currently held by the account."
              },
              "data": {
                "type": "string",
                "description": "Base64 encoded account data."
              },
              "data_parsed": {
                "type": "object",
                "description": "Best-effort parsed account data when Birdeye has a decoder for this account type.",
                "additionalProperties": true
              },
              "owner": {
                "type": "string",
                "description": "Program id that owns the account."
              },
              "executable": {
                "type": "boolean",
                "description": "Whether the account is executable."
              },
              "rent_epoch": {
                "type": "integer",
                "format": "int64",
                "description": "Next epoch at which rent is due, or the sentinel value used by Solana runtime for rent-exempt accounts."
              },
              "is_on_curve": {
                "type": "boolean",
                "description": "Whether the address lies on the Ed25519 curve and can be a normal wallet keypair."
              },
              "decode_error": {
                "type": "string",
                "description": "Decoder error message when raw data could not be parsed into a known layout."
              }
            }
          }
        }
      },
      "BlockchainAccountMultipleResponse": {
        "type": "object",
        "required": [
          "success",
          "data"
        ],
        "properties": {
          "success": {
            "type": "boolean"
          },
          "data": {
            "type": "object",
            "additionalProperties": {
              "type": "object",
              "properties": {
                "name": {
                  "type": "string",
                  "description": "Decoded account type or parser label when Birdeye recognizes the account layout."
                },
                "program": {
                  "type": "string",
                  "description": "Program family associated with the account data parser."
                },
                "lamports": {
                  "type": "integer",
                  "format": "int64",
                  "description": "Lamport balance currently held by the account."
                },
                "data": {
                  "type": "string",
                  "description": "Base64 encoded account data."
                },
                "data_parsed": {
                  "type": "object",
                  "description": "Best-effort parsed account data when Birdeye has a decoder for this account type.",
                  "additionalProperties": true
                },
                "owner": {
                  "type": "string",
                  "description": "Program id that owns the account."
                },
                "executable": {
                  "type": "boolean",
                  "description": "Whether the account is executable."
                },
                "rent_epoch": {
                  "type": "integer",
                  "format": "int64",
                  "description": "Next epoch at which rent is due, or the sentinel value used by Solana runtime for rent-exempt accounts."
                },
                "is_on_curve": {
                  "type": "boolean",
                  "description": "Whether the address lies on the Ed25519 curve and can be a normal wallet keypair."
                },
                "decode_error": {
                  "type": "string",
                  "description": "Decoder error message when raw data could not be parsed into a known layout."
                }
              }
            }
          }
        }
      },
      "BlockchainTokenAccountsResponse": {
        "type": "object",
        "required": [
          "success",
          "data"
        ],
        "properties": {
          "success": {
            "type": "boolean"
          },
          "data": {
            "type": "array",
            "items": {
              "type": "object",
              "required": [
                "token_account",
                "mint",
                "decimals",
                "amount",
                "state"
              ],
              "properties": {
                "token_account": {
                  "type": "string"
                },
                "mint": {
                  "type": "string",
                  "description": "Mint address for the token account."
                },
                "decimals": {
                  "type": "integer",
                  "description": "Number of token decimals for the mint."
                },
                "amount": {
                  "type": "integer",
                  "format": "int64",
                  "description": "Raw token balance held by the token account."
                },
                "state": {
                  "type": "string",
                  "enum": [
                    "uninitialized",
                    "initialized",
                    "frozen"
                  ],
                  "description": "Current token-account state reported by the SPL Token program."
                }
              }
            }
          }
        }
      },
      "BlockchainTokenMetadataResponse": {
        "type": "object",
        "required": [
          "success",
          "data"
        ],
        "properties": {
          "success": {
            "type": "boolean"
          },
          "data": {
            "type": "object",
            "properties": {
              "supply": {
                "type": "integer",
                "format": "int64",
                "description": "Raw total supply reported by the mint."
              },
              "decimals": {
                "type": "integer",
                "description": "Number of decimals used by the mint."
              },
              "is_initialized": {
                "type": "boolean",
                "description": "Whether the mint account is initialized."
              },
              "mint_authority": {
                "type": [
                  "string",
                  "null"
                ],
                "description": "Current mint authority, if minting is still allowed."
              },
              "freeze_authority": {
                "type": [
                  "string",
                  "null"
                ],
                "description": "Current freeze authority, if freezing is supported."
              },
              "is_nft": {
                "type": "boolean",
                "description": "Whether the mint is classified as an NFT."
              },
              "key": {
                "type": "string",
                "description": "Metaplex metadata account discriminator or key type."
              },
              "update_authority": {
                "type": [
                  "string",
                  "null"
                ],
                "description": "Metaplex update authority that can change metadata."
              },
              "name": {
                "type": "string",
                "description": "Token or NFT name from metadata."
              },
              "symbol": {
                "type": "string",
                "description": "Token or NFT symbol from metadata."
              },
              "uri": {
                "type": "string",
                "description": "Metadata URI published by the token creator."
              },
              "seller_fee_basis_points": {
                "type": "integer",
                "description": "Royalty basis points stored in Metaplex metadata."
              },
              "creators": {
                "type": "array",
                "description": "Creator entries declared in the token metadata.",
                "items": {
                  "type": "object",
                  "properties": {
                    "address": {
                      "type": "string",
                      "description": "Creator wallet address."
                    },
                    "verified": {
                      "type": "boolean",
                      "description": "Whether the creator entry has been verified on-chain."
                    },
                    "share": {
                      "type": "integer",
                      "description": "Royalty share percentage assigned to the creator."
                    }
                  }
                }
              },
              "primary_sale_happened": {
                "type": "boolean",
                "description": "Whether the primary sale flag has been set in metadata."
              },
              "is_mutable": {
                "type": "boolean",
                "description": "Whether the metadata can still be modified."
              },
              "edition_nonce": {
                "type": [
                  "integer",
                  "null"
                ],
                "description": "Edition nonce when the mint is part of a Metaplex master-edition flow."
              },
              "token_standard": {
                "type": "string",
                "description": "Metaplex token standard classification."
              },
              "collection": {
                "type": "object",
                "properties": {
                  "verified": {
                    "type": "boolean",
                    "description": "Whether the collection link has been verified."
                  },
                  "key": {
                    "type": "string",
                    "description": "Collection mint address."
                  }
                }
              }
            }
          }
        }
      },
      "BlockchainTokenMetadataMultipleResponse": {
        "type": "object",
        "required": [
          "success",
          "data"
        ],
        "properties": {
          "success": {
            "type": "boolean"
          },
          "data": {
            "type": "object",
            "additionalProperties": {
              "oneOf": [
                {
                  "type": "object",
                  "properties": {
                    "supply": {
                      "type": "integer",
                      "format": "int64",
                      "description": "Raw total supply reported by the mint."
                    },
                    "decimals": {
                      "type": "integer",
                      "description": "Number of decimals used by the mint."
                    },
                    "is_initialized": {
                      "type": "boolean",
                      "description": "Whether the mint account is initialized."
                    },
                    "mint_authority": {
                      "type": [
                        "string",
                        "null"
                      ],
                      "description": "Current mint authority, if minting is still allowed."
                    },
                    "freeze_authority": {
                      "type": [
                        "string",
                        "null"
                      ],
                      "description": "Current freeze authority, if freezing is supported."
                    },
                    "is_nft": {
                      "type": "boolean",
                      "description": "Whether the mint is classified as an NFT."
                    },
                    "key": {
                      "type": "string",
                      "description": "Metaplex metadata account discriminator or key type."
                    },
                    "update_authority": {
                      "type": [
                        "string",
                        "null"
                      ],
                      "description": "Metaplex update authority that can change metadata."
                    },
                    "name": {
                      "type": "string",
                      "description": "Token or NFT name from metadata."
                    },
                    "symbol": {
                      "type": "string",
                      "description": "Token or NFT symbol from metadata."
                    },
                    "uri": {
                      "type": "string",
                      "description": "Metadata URI published by the token creator."
                    },
                    "seller_fee_basis_points": {
                      "type": "integer",
                      "description": "Royalty basis points stored in Metaplex metadata."
                    },
                    "creators": {
                      "type": "array",
                      "description": "Creator entries declared in the token metadata.",
                      "items": {
                        "type": "object",
                        "properties": {
                          "address": {
                            "type": "string",
                            "description": "Creator wallet address."
                          },
                          "verified": {
                            "type": "boolean",
                            "description": "Whether the creator entry has been verified on-chain."
                          },
                          "share": {
                            "type": "integer",
                            "description": "Royalty share percentage assigned to the creator."
                          }
                        }
                      }
                    },
                    "primary_sale_happened": {
                      "type": "boolean",
                      "description": "Whether the primary sale flag has been set in metadata."
                    },
                    "is_mutable": {
                      "type": "boolean",
                      "description": "Whether the metadata can still be modified."
                    },
                    "edition_nonce": {
                      "type": [
                        "integer",
                        "null"
                      ],
                      "description": "Edition nonce when the mint is part of a Metaplex master-edition flow."
                    },
                    "token_standard": {
                      "type": "string",
                      "description": "Metaplex token standard classification."
                    },
                    "collection": {
                      "type": "object",
                      "properties": {
                        "verified": {
                          "type": "boolean",
                          "description": "Whether the collection link has been verified."
                        },
                        "key": {
                          "type": "string",
                          "description": "Collection mint address."
                        }
                      }
                    }
                  }
                },
                {
                  "type": "null"
                }
              ]
            }
          }
        }
      },
      "BlockchainTransactionDetailResponse": {
        "type": "object",
        "required": [
          "success",
          "data"
        ],
        "properties": {
          "success": {
            "type": "boolean"
          },
          "data": {
            "type": "object",
            "additionalProperties": true,
            "properties": {
              "signatures": {
                "type": "array",
                "description": "Transaction signatures attached to the Solana transaction.",
                "items": {
                  "type": "string"
                }
              },
              "signers": {
                "type": "array",
                "description": "Accounts that signed the transaction.",
                "items": {
                  "type": "string"
                }
              },
              "slot": {
                "type": "integer",
                "description": "Solana slot containing the transaction."
              },
              "fee": {
                "type": "integer",
                "description": "Total lamports paid in transaction fees."
              },
              "priority_fee": {
                "type": "integer",
                "description": "Lamports paid as prioritization fee."
              },
              "cost_units": {
                "type": "integer",
                "description": "Cost units charged by the Solana runtime for the transaction."
              },
              "compute_units_consumed": {
                "type": "integer",
                "description": "Actual compute units consumed by the transaction."
              },
              "sol_balance_changes": {
                "type": "array",
                "description": "SOL balance deltas for accounts touched by the transaction.",
                "items": {
                  "type": "object",
                  "properties": {
                    "address": {
                      "type": "string",
                      "description": "Account address whose SOL balance changed."
                    },
                    "pre_balance": {
                      "type": "integer",
                      "description": "Lamport balance before the transaction."
                    },
                    "post_balance": {
                      "type": "integer",
                      "description": "Lamport balance after the transaction."
                    }
                  }
                }
              },
              "token_balance_changes": {
                "type": "array",
                "description": "Token balance deltas for token accounts touched by the transaction when available.",
                "items": {
                  "type": "object",
                  "additionalProperties": true
                }
              },
              "instructions": {
                "type": "array",
                "description": "Parsed top-level instructions when available.",
                "items": {
                  "type": "object",
                  "additionalProperties": true
                }
              },
              "inner_instructions": {
                "type": "array",
                "description": "Parsed inner instructions when available.",
                "items": {
                  "type": "object",
                  "additionalProperties": true
                }
              },
              "logs": {
                "type": "array",
                "description": "Program log lines emitted during execution when available.",
                "items": {
                  "type": "string"
                }
              },
              "block_time": {
                "type": "integer",
                "description": "Block timestamp in Unix seconds when available."
              },
              "status": {
                "type": "object",
                "description": "Execution status object returned by the Solana runtime when available.",
                "additionalProperties": true
              }
            }
          }
        }
      },
      "MarketHistoryResponseType": {
        "type": "object",
        "required": [
          "success",
          "data"
        ],
        "properties": {
          "success": {
            "type": "boolean"
          },
          "data": {
            "type": "object",
            "properties": {
              "items": {
                "type": "array",
                "items": {
                  "type": "object",
                  "properties": {
                    "unix_time": {
                      "type": "integer",
                      "description": "The Unix timestamp in seconds (UTC timezone) of the beginning of the aggregated time frame."
                    },
                    "volume_usd": {
                      "type": "number",
                      "description": "The total trading volume in USD for the corresponding time frame."
                    },
                    "trade_count": {
                      "type": "number",
                      "description": "The total number of trades during the corresponding time frame."
                    },
                    "active_trading_tokens": {
                      "type": "number",
                      "description": "The number of unique tokens with at least one trade during the corresponding time frame."
                    },
                    "stable_coin_market_cap": {
                      "type": "number",
                      "description": "The total market capitalization (USD) of all stablecoins on the selected blockchain at the end of the corresponding time frame."
                    }
                  }
                }
              },
              "has_more": {
                "type": "boolean",
                "description": "Indicates whether there are more data points available beyond the current response."
              }
            }
          }
        }
      },
      "PerpTokenListItem": {
        "type": "object",
        "additionalProperties": true,
        "properties": {
          "token": {
            "type": "string",
            "description": "Perpetual market symbol, such as `BTC` or `ETH`."
          },
          "long_io": {
            "type": "number",
            "description": "Total long open interest for the token market."
          },
          "short_io": {
            "type": "number",
            "description": "Total short open interest for the token market."
          },
          "open_interest": {
            "type": "number",
            "description": "Combined open interest across long and short positions."
          },
          "margin": {
            "type": "number",
            "description": "Total margin currently backing all open positions."
          },
          "margin_used": {
            "type": "number",
            "description": "Margin actively committed to current positions."
          },
          "entry_margin": {
            "type": "number",
            "description": "Margin value measured at entry prices across current positions."
          },
          "unrealized_pnl": {
            "type": "number",
            "description": "Aggregate unrealized profit and loss across all current positions."
          },
          "leverage": {
            "type": "number",
            "description": "Aggregate effective leverage across open positions."
          },
          "bias": {
            "type": "number",
            "description": "Net directional bias between long and short positioning. Positive values indicate long skew; negative values indicate short skew."
          },
          "bias_text": {
            "type": "string",
            "description": "Human-readable interpretation of the positioning bias."
          }
        }
      },
      "PerpTokenListResponse": {
        "type": "object",
        "required": [
          "success",
          "data"
        ],
        "properties": {
          "success": {
            "type": "boolean",
            "description": "Whether the request succeeded."
          },
          "data": {
            "type": "array",
            "description": "Perpetual markets ranked by the requested sort metric and time frame.",
            "items": {
              "$ref": "#/components/schemas/PerpTokenListItem"
            }
          }
        }
      },
      "PerpTokenOverviewResponse": {
        "type": "object",
        "required": [
          "success",
          "data"
        ],
        "properties": {
          "success": {
            "type": "boolean",
            "description": "Whether the request succeeded."
          },
          "data": {
            "$ref": "#/components/schemas/PerpTokenOverviewObject"
          }
        }
      },
      "PerpTokenOverviewObject": {
        "type": "object",
        "additionalProperties": true,
        "properties": {
          "price": {
            "type": "number",
            "description": "Current mark or market price for the perpetual token."
          },
          "position_count": {
            "type": "integer",
            "description": "Number of currently open positions for this token."
          },
          "open_interest": {
            "type": "number",
            "description": "Combined open interest across all positions in the token market."
          },
          "long_liquidation_1h": {
            "type": "number",
            "description": "Estimated long-side liquidation value over the 1-hour lookback window."
          },
          "short_liquidation_1h": {
            "type": "number",
            "description": "Estimated short-side liquidation value over the 1-hour lookback window."
          },
          "long_liquidation_4h": {
            "type": "number",
            "description": "Estimated long-side liquidation value over the 4-hour lookback window."
          },
          "short_liquidation_4h": {
            "type": "number",
            "description": "Estimated short-side liquidation value over the 4-hour lookback window."
          },
          "long_liquidation_1d": {
            "type": "number",
            "description": "Estimated long-side liquidation value over the 1-day lookback window."
          },
          "short_liquidation_1d": {
            "type": "number",
            "description": "Estimated short-side liquidation value over the 1-day lookback window."
          },
          "long_liquidation_7d": {
            "type": "number",
            "description": "Estimated long-side liquidation value over the 7-day lookback window."
          },
          "short_liquidation_7d": {
            "type": "number",
            "description": "Estimated short-side liquidation value over the 7-day lookback window."
          }
        }
      },
      "PerpOpenPosition": {
        "type": "object",
        "additionalProperties": true,
        "properties": {
          "wallet": {
            "type": "string",
            "description": "Wallet address that owns the position."
          },
          "wallet_first_trade": {
            "type": "integer",
            "description": "Unix timestamp in seconds of the wallet's first recorded perp trade."
          },
          "token": {
            "type": "string",
            "description": "Perpetual market symbol for the position."
          },
          "leverage_type": {
            "type": "string",
            "description": "Margin mode used by the position, such as `isolated` or `cross`."
          },
          "leverage_value": {
            "type": "number",
            "description": "Configured leverage multiplier on the position."
          },
          "max_leverage": {
            "type": "number",
            "description": "Maximum leverage allowed for this market at the time of the snapshot."
          },
          "entry_price": {
            "type": "number",
            "description": "Average entry price of the open position."
          },
          "mark_price": {
            "type": "number",
            "description": "Current mark price used for PnL and liquidation calculations."
          },
          "liquidation_price": {
            "type": [
              "number",
              "null"
            ],
            "description": "Estimated liquidation price of the position when available."
          },
          "margin_used": {
            "type": "number",
            "description": "Margin currently assigned to the position."
          },
          "position_value": {
            "type": "number",
            "description": "Current notional value of the open position."
          },
          "roe": {
            "type": [
              "number",
              "null"
            ],
            "description": "Return on equity for the position when the endpoint provides it."
          },
          "size": {
            "type": "number",
            "description": "Signed position size. Positive values indicate net long exposure; negative values indicate net short exposure."
          },
          "unrealized_pnl": {
            "type": "number",
            "description": "Current unrealized profit and loss for the position."
          },
          "cum_funding_since_open": {
            "type": "number",
            "description": "Cumulative funding paid or received since the position was opened."
          },
          "cum_funding_since_change": {
            "type": "number",
            "description": "Cumulative funding paid or received since the last position size change."
          },
          "open_time": {
            "type": "integer",
            "description": "Unix timestamp in seconds when the current position was opened."
          }
        }
      },
      "PerpTokenOpenPositionsResponse": {
        "type": "object",
        "required": [
          "success",
          "data"
        ],
        "properties": {
          "success": {
            "type": "boolean",
            "description": "Whether the request succeeded."
          },
          "data": {
            "type": "array",
            "description": "Open positions for the requested token market.",
            "items": {
              "$ref": "#/components/schemas/PerpOpenPosition"
            }
          }
        }
      },
      "PerpTokenLiquidationBucket": {
        "type": "object",
        "additionalProperties": true,
        "properties": {
          "low_price": {
            "type": "number",
            "description": "Lower bound of the price bucket."
          },
          "high_price": {
            "type": "number",
            "description": "Upper bound of the price bucket."
          },
          "position_count": {
            "type": "integer",
            "description": "Number of positions that would be affected inside this bucket."
          },
          "long_liq_size": {
            "type": "number",
            "description": "Total long position size exposed to liquidation within this bucket."
          },
          "long_liq_value": {
            "type": "number",
            "description": "USD value of long liquidations within this bucket."
          },
          "short_liq_size": {
            "type": "number",
            "description": "Total short position size exposed to liquidation within this bucket."
          },
          "short_liq_value": {
            "type": "number",
            "description": "USD value of short liquidations within this bucket."
          },
          "cum_long_liq_size": {
            "type": "number",
            "description": "Cumulative long liquidation size from the current price toward this bucket."
          },
          "cum_long_liq_value": {
            "type": "number",
            "description": "Cumulative USD value of long liquidations from the current price toward this bucket."
          },
          "cum_short_liq_size": {
            "type": "number",
            "description": "Cumulative short liquidation size from the current price toward this bucket."
          },
          "cum_short_liq_value": {
            "type": "number",
            "description": "Cumulative USD value of short liquidations from the current price toward this bucket."
          }
        }
      },
      "PerpTokenLiquidationMapResponse": {
        "type": "object",
        "required": [
          "success",
          "data"
        ],
        "properties": {
          "success": {
            "type": "boolean",
            "description": "Whether the request succeeded."
          },
          "data": {
            "type": "array",
            "description": "Liquidation buckets showing where long and short positions are exposed across price ranges.",
            "items": {
              "$ref": "#/components/schemas/PerpTokenLiquidationBucket"
            }
          }
        }
      },
      "PerpWalletOverviewObject": {
        "type": "object",
        "additionalProperties": true,
        "properties": {
          "perp_equity": {
            "type": "number",
            "description": "Current total perp equity for the wallet."
          },
          "long_value": {
            "type": "number",
            "description": "Total notional value of open long positions."
          },
          "short_value": {
            "type": "number",
            "description": "Total notional value of open short positions."
          },
          "unrealized_pnl": {
            "type": "number",
            "description": "Current unrealized profit and loss across open positions."
          },
          "order_count": {
            "type": "integer",
            "description": "Lifetime number of perp orders or fills tracked for the wallet."
          },
          "order_count_90d": {
            "type": "integer",
            "description": "Perp orders or fills recorded during the last 90 days."
          },
          "win": {
            "type": "integer",
            "description": "Lifetime number of profitable realized trades or position outcomes."
          },
          "win_90d": {
            "type": "integer",
            "description": "Profitable realized trades or position outcomes during the last 90 days."
          },
          "loss": {
            "type": "integer",
            "description": "Lifetime number of losing realized trades or position outcomes."
          },
          "loss_90d": {
            "type": "integer",
            "description": "Losing realized trades or position outcomes during the last 90 days."
          },
          "volume_usd": {
            "type": "number",
            "description": "Lifetime perp trading volume in USD."
          },
          "volume_90d_usd": {
            "type": "number",
            "description": "Perp trading volume in USD during the last 90 days."
          },
          "open_volume_usd": {
            "type": "number",
            "description": "Lifetime USD notional value of currently open positions."
          },
          "open_volume_90d_usd": {
            "type": "number",
            "description": "USD notional value of positions opened during the last 90 days."
          },
          "realized_pnl": {
            "type": "number",
            "description": "Lifetime realized profit and loss in USD."
          },
          "realized_pnl_90d": {
            "type": "number",
            "description": "Realized profit and loss in USD during the last 90 days."
          },
          "funding_fee": {
            "type": "number",
            "description": "Lifetime net funding paid or received."
          },
          "funding_fee_90d": {
            "type": "number",
            "description": "Net funding paid or received during the last 90 days."
          },
          "first_trade": {
            "type": "integer",
            "description": "Unix timestamp in seconds of the wallet's first recorded perp trade."
          },
          "last_trade": {
            "type": "integer",
            "description": "Unix timestamp in seconds of the wallet's most recent recorded perp trade."
          },
          "open_value": {
            "type": "number",
            "description": "Current total notional value of all open positions."
          },
          "total_pnl": {
            "type": "number",
            "description": "Lifetime total PnL including realized and unrealized components."
          },
          "total_pnl_90d": {
            "type": "number",
            "description": "Total PnL during the last 90 days."
          },
          "win_rate": {
            "type": "number",
            "description": "Lifetime win rate across realized outcomes."
          },
          "win_rate_90d": {
            "type": "number",
            "description": "Win rate during the last 90 days."
          },
          "roe": {
            "type": "number",
            "description": "Aggregate return on equity for the wallet's perp activity."
          },
          "roi": {
            "type": "number",
            "description": "Aggregate return on invested capital across the wallet's perp activity."
          },
          "roi_90d": {
            "type": "number",
            "description": "Return on invested capital during the last 90 days."
          },
          "bias": {
            "type": "number",
            "description": "Net directional bias between long and short positioning. Positive values indicate long skew; negative values indicate short skew."
          },
          "bias_text": {
            "type": "string",
            "description": "Human-readable interpretation of the positioning bias."
          },
          "leverage": {
            "type": "number",
            "description": "Aggregate effective leverage across open positions."
          }
        }
      },
      "PerpWalletListResponse": {
        "type": "object",
        "required": [
          "success",
          "data"
        ],
        "properties": {
          "success": {
            "type": "boolean",
            "description": "Whether the request succeeded."
          },
          "data": {
            "type": "array",
            "description": "Wallets ranked by the requested perp performance or activity metric.",
            "items": {
              "allOf": [
                {
                  "type": "object",
                  "properties": {
                    "wallet": {
                      "type": "string",
                      "description": "Wallet address ranked in the list."
                    }
                  }
                },
                {
                  "$ref": "#/components/schemas/PerpWalletOverviewObject"
                }
              ]
            }
          }
        }
      },
      "PerpWalletOverviewResponse": {
        "type": "object",
        "required": [
          "success",
          "data"
        ],
        "properties": {
          "success": {
            "type": "boolean",
            "description": "Whether the request succeeded."
          },
          "data": {
            "$ref": "#/components/schemas/PerpWalletOverviewObject"
          }
        }
      },
      "PerpWalletOpenPositionsResponse": {
        "type": "object",
        "required": [
          "success",
          "data"
        ],
        "properties": {
          "success": {
            "type": "boolean",
            "description": "Whether the request succeeded."
          },
          "data": {
            "type": "array",
            "description": "Open perp positions currently held by the requested wallet.",
            "items": {
              "$ref": "#/components/schemas/PerpOpenPosition"
            }
          }
        }
      },
      "LegacyAssetMovement": {
        "type": "object",
        "description": "One token leg inside a legacy trade response. Values may be raw integers or strings depending on chain and serializer.",
        "additionalProperties": true,
        "properties": {
          "symbol": {
            "type": "string",
            "description": "Token symbol for this leg."
          },
          "name": {
            "type": "string",
            "description": "Token name when available."
          },
          "decimals": {
            "type": "integer",
            "description": "Number of decimals used by the token."
          },
          "address": {
            "type": "string",
            "description": "Token mint or contract address."
          },
          "mint": {
            "type": "string",
            "description": "Mint or token contract address on some EVM responses."
          },
          "amount": {
            "type": [
              "number",
              "string"
            ],
            "description": "Raw token amount before decimal scaling."
          },
          "uiAmount": {
            "type": "number",
            "description": "Human-readable token amount after decimals are applied."
          },
          "price": {
            "type": [
              "number",
              "null"
            ],
            "description": "Indexed USD price for this token at the exact transaction time when available."
          },
          "nearestPrice": {
            "type": [
              "number",
              "null"
            ],
            "description": "Closest indexed USD price near the transaction time when the exact trade-time price is unavailable."
          },
          "changeAmount": {
            "type": [
              "number",
              "string"
            ],
            "description": "Signed raw balance change for this leg in the wallet or swap flow."
          },
          "uiChangeAmount": {
            "type": "number",
            "description": "Signed human-readable balance change for this leg."
          },
          "feeInfo": {
            "type": [
              "object",
              "null"
            ],
            "description": "Optional fee metadata for this leg.",
            "additionalProperties": true
          },
          "type": {
            "type": "string",
            "description": "Low-level event type for this leg such as `log`, `burn`, `mintTo`, or `transfer`."
          },
          "typeSwap": {
            "type": "string",
            "description": "Legacy swap direction marker for this leg, such as `from` or `to`."
          },
          "type_swap": {
            "type": "string",
            "description": "Swap direction marker for this leg in snake_case responses, such as `from` or `to`."
          },
          "isScaledUiToken": {
            "type": "boolean",
            "description": "Whether this token uses Solana Token-2022 scaled UI amounts."
          },
          "multiplier": {
            "type": [
              "number",
              "null"
            ],
            "description": "Scaled UI multiplier for Token-2022 assets when available."
          }
        }
      },
      "LegacyTokenTradeItem": {
        "type": "object",
        "description": "One trade returned by token transaction endpoints.",
        "additionalProperties": true,
        "properties": {
          "quote": {
            "$ref": "#/components/schemas/LegacyAssetMovement"
          },
          "base": {
            "$ref": "#/components/schemas/LegacyAssetMovement"
          },
          "from": {
            "$ref": "#/components/schemas/LegacyAssetMovement"
          },
          "to": {
            "$ref": "#/components/schemas/LegacyAssetMovement"
          },
          "basePrice": {
            "type": [
              "number",
              "null"
            ],
            "description": "Indexed USD price of the base token at the transaction time."
          },
          "quotePrice": {
            "type": [
              "number",
              "null"
            ],
            "description": "Indexed USD price of the quote token at the transaction time."
          },
          "txHash": {
            "type": "string",
            "description": "Transaction signature or hash."
          },
          "source": {
            "type": "string",
            "description": "DEX, AMM, or protocol source of the trade."
          },
          "blockUnixTime": {
            "type": "integer",
            "description": "Block timestamp in Unix seconds."
          },
          "txType": {
            "type": "string",
            "description": "Transaction classification, typically `swap`."
          },
          "owner": {
            "type": "string",
            "description": "Primary wallet that initiated or owned the trade flow."
          },
          "side": {
            "type": "string",
            "description": "Trade side relative to the requested token, such as `buy` or `sell`."
          },
          "alias": {
            "type": [
              "string",
              "null"
            ],
            "description": "Optional label for the owner wallet when available."
          },
          "pricePair": {
            "type": [
              "number",
              "null"
            ],
            "description": "Executed pair price derived from the traded base and quote amounts."
          },
          "tokenPrice": {
            "type": [
              "number",
              "null"
            ],
            "description": "Indexed USD price of the requested token at the transaction time."
          },
          "poolId": {
            "type": [
              "string",
              "null"
            ],
            "description": "Pool or market address associated with the trade."
          }
        }
      },
      "LegacyPairTradeItem": {
        "type": "object",
        "description": "One trade returned by pair transaction endpoints.",
        "additionalProperties": true,
        "properties": {
          "txHash": {
            "type": "string",
            "description": "Transaction signature or hash."
          },
          "source": {
            "type": "string",
            "description": "DEX, AMM, or venue source."
          },
          "blockUnixTime": {
            "type": "integer",
            "description": "Block timestamp in Unix seconds."
          },
          "txType": {
            "type": "string",
            "description": "Transaction classification, typically `swap`."
          },
          "address": {
            "type": "string",
            "description": "Pair or market address the trade belongs to."
          },
          "owner": {
            "type": "string",
            "description": "Primary wallet that initiated or owned the trade flow."
          },
          "from": {
            "$ref": "#/components/schemas/LegacyAssetMovement"
          },
          "to": {
            "$ref": "#/components/schemas/LegacyAssetMovement"
          }
        }
      },
      "LegacyTokenTradeListResponse": {
        "type": "object",
        "required": [
          "success",
          "data"
        ],
        "properties": {
          "success": {
            "type": "boolean",
            "description": "Whether the request succeeded."
          },
          "data": {
            "type": "object",
            "properties": {
              "items": {
                "type": "array",
                "description": "Trades for the requested token, ordered by the endpoint's default sort.",
                "items": {
                  "$ref": "#/components/schemas/LegacyTokenTradeItem"
                }
              },
              "hasNext": {
                "type": "boolean",
                "description": "Whether more records are available for pagination."
              }
            }
          }
        }
      },
      "LegacyPairTradeListResponse": {
        "type": "object",
        "required": [
          "success",
          "data"
        ],
        "properties": {
          "success": {
            "type": "boolean",
            "description": "Whether the request succeeded."
          },
          "data": {
            "type": "object",
            "properties": {
              "items": {
                "type": "array",
                "description": "Trades for the requested pair, ordered by the endpoint's default sort.",
                "items": {
                  "$ref": "#/components/schemas/LegacyPairTradeItem"
                }
              },
              "hasNext": {
                "type": "boolean",
                "description": "Whether more records are available for pagination."
              }
            }
          }
        }
      },
      "V3AssetMovement": {
        "type": "object",
        "description": "One token leg inside a V3 trade response. Uses snake_case field names and may include signers on Solana.",
        "additionalProperties": true,
        "properties": {
          "symbol": {
            "type": "string",
            "description": "Token symbol for this leg."
          },
          "name": {
            "type": "string",
            "description": "Token name when available."
          },
          "address": {
            "type": "string",
            "description": "Token mint or contract address."
          },
          "decimals": {
            "type": "integer",
            "description": "Number of token decimals."
          },
          "price": {
            "type": [
              "number",
              "null"
            ],
            "description": "Indexed USD price of the token at the transaction time."
          },
          "amount": {
            "type": [
              "number",
              "string"
            ],
            "description": "Raw token amount before decimal scaling."
          },
          "ui_amount": {
            "type": "number",
            "description": "Human-readable token amount after decimals are applied."
          },
          "ui_change_amount": {
            "type": "number",
            "description": "Signed human-readable balance change for this leg."
          },
          "nearest_price": {
            "type": [
              "number",
              "null"
            ],
            "description": "Closest indexed USD price near the transaction time when available."
          },
          "change_amount": {
            "type": [
              "number",
              "string"
            ],
            "description": "Signed raw balance change for this leg when returned."
          },
          "type": {
            "type": "string",
            "description": "Low-level event type for this leg such as `split`, `burn`, or `transfer`."
          },
          "type_swap": {
            "type": "string",
            "description": "Swap direction marker for this leg, such as `from` or `to`."
          },
          "is_scaled_ui_token": {
            "type": "boolean",
            "description": "Whether this token uses Solana Token-2022 scaled UI amounts."
          },
          "multiplier": {
            "type": [
              "number",
              "null"
            ],
            "description": "Scaled UI multiplier for Token-2022 assets when available."
          }
        }
      },
      "V3TradeItem": {
        "type": "object",
        "description": "One trade returned by V3 trade endpoints.",
        "additionalProperties": true,
        "properties": {
          "base": {
            "$ref": "#/components/schemas/V3AssetMovement"
          },
          "quote": {
            "$ref": "#/components/schemas/V3AssetMovement"
          },
          "from": {
            "$ref": "#/components/schemas/V3AssetMovement"
          },
          "to": {
            "$ref": "#/components/schemas/V3AssetMovement"
          },
          "tx_type": {
            "type": "string",
            "description": "Trade classification such as `buy`, `sell`, or `swap`."
          },
          "tx_hash": {
            "type": "string",
            "description": "Transaction signature or hash."
          },
          "ins_index": {
            "type": [
              "integer",
              "null"
            ],
            "description": "Instruction index within the transaction."
          },
          "inner_ins_index": {
            "type": [
              "integer",
              "null"
            ],
            "description": "Inner instruction index when the trade happened inside a nested call."
          },
          "block_unix_time": {
            "type": "integer",
            "description": "Block timestamp in Unix seconds."
          },
          "block_number": {
            "type": "integer",
            "description": "Block or slot number for the transaction."
          },
          "volume_usd": {
            "type": "number",
            "description": "Trade value in USD."
          },
          "volume": {
            "type": "number",
            "description": "Trade size in token units for the requested context."
          },
          "owner": {
            "type": "string",
            "description": "Primary wallet that initiated or owned the trade flow."
          },
          "signers": {
            "type": "array",
            "description": "Signer accounts attached to the transaction when available, primarily on Solana.",
            "items": {
              "type": "string"
            }
          },
          "source": {
            "type": "string",
            "description": "DEX, AMM, or protocol source."
          },
          "side": {
            "type": "string",
            "description": "Trade side relative to the requested token when available."
          },
          "alias": {
            "type": [
              "string",
              "null"
            ],
            "description": "Optional human-readable label for the owner wallet."
          },
          "price_pair": {
            "type": [
              "number",
              "null"
            ],
            "description": "Executed pair price derived from the traded amounts."
          },
          "base_price": {
            "type": [
              "number",
              "null"
            ],
            "description": "Indexed USD price of the base token at the transaction time."
          },
          "quote_price": {
            "type": [
              "number",
              "null"
            ],
            "description": "Indexed USD price of the quote token at the transaction time."
          },
          "pool_id": {
            "type": [
              "string",
              "null"
            ],
            "description": "Pool or market address associated with the trade."
          },
          "address": {
            "type": [
              "string",
              "null"
            ],
            "description": "Pool, pair, or contract address associated with the transaction context."
          },
          "interacted_program_id": {
            "type": [
              "string",
              "null"
            ],
            "description": "Program or contract address directly interacted with by the transaction."
          }
        }
      },
      "V3TradeListResponse": {
        "type": "object",
        "required": [
          "success",
          "data"
        ],
        "properties": {
          "success": {
            "type": "boolean",
            "description": "Whether the request succeeded."
          },
          "data": {
            "type": "object",
            "properties": {
              "items": {
                "type": "array",
                "description": "Trades returned by the V3 endpoint.",
                "items": {
                  "$ref": "#/components/schemas/V3TradeItem"
                }
              },
              "has_next": {
                "type": "boolean",
                "description": "Whether more records are available for pagination in snake_case responses."
              },
              "hasNext": {
                "type": "boolean",
                "description": "Whether more records are available for pagination in camelCase responses."
              }
            },
            "additionalProperties": true
          }
        }
      },
      "MemeCreatedAtObject": {
        "type": "object",
        "additionalProperties": true,
        "properties": {
          "block_time": {
            "type": [
              "integer",
              "null"
            ],
            "description": "Block timestamp in Unix seconds for the recorded event."
          },
          "slot": {
            "type": [
              "integer",
              "null"
            ],
            "description": "Solana slot for the recorded event."
          },
          "tx_hash": {
            "type": [
              "string",
              "null"
            ],
            "description": "Transaction signature that recorded the event."
          }
        }
      },
      "MemePoolObject": {
        "type": "object",
        "additionalProperties": true,
        "properties": {
          "address": {
            "type": [
              "string",
              "null"
            ],
            "description": "Pool address associated with the meme token launch."
          },
          "real_sol_reserves": {
            "type": [
              "string",
              "null"
            ],
            "description": "Observed SOL reserves in the bonding curve or launch pool."
          },
          "real_token_reserves": {
            "type": [
              "string",
              "null"
            ],
            "description": "Observed token reserves in the launch pool."
          },
          "virtual_token_reserves": {
            "type": [
              "string",
              "null"
            ],
            "description": "Virtual token reserves used by the launch mechanism when applicable."
          },
          "token_total_supply": {
            "type": [
              "string",
              "null"
            ],
            "description": "Total token supply tracked by the launch pool."
          }
        }
      },
      "MemeInfoObject": {
        "type": "object",
        "additionalProperties": true,
        "properties": {
          "created_at": {
            "type": "object",
            "additionalProperties": true,
            "properties": {
              "block_time": {
                "type": [
                  "integer",
                  "null"
                ],
                "description": "Block timestamp in Unix seconds for the recorded event."
              },
              "slot": {
                "type": [
                  "integer",
                  "null"
                ],
                "description": "Solana slot for the recorded event."
              },
              "tx_hash": {
                "type": [
                  "string",
                  "null"
                ],
                "description": "Transaction signature that recorded the event."
              }
            }
          },
          "creator": {
            "type": "string",
            "description": "Creator wallet that launched the meme token."
          },
          "address": {
            "type": "string",
            "description": "Token address for the meme asset."
          },
          "creation_time": {
            "type": "integer",
            "description": "Unix timestamp in seconds when the token was created."
          },
          "graduated": {
            "type": "boolean",
            "description": "Whether the token has graduated out of the launch platform."
          },
          "pool": {
            "type": "object",
            "additionalProperties": true,
            "properties": {
              "address": {
                "type": [
                  "string",
                  "null"
                ],
                "description": "Pool address associated with the meme token launch."
              },
              "real_sol_reserves": {
                "type": [
                  "string",
                  "null"
                ],
                "description": "Observed SOL reserves in the bonding curve or launch pool."
              },
              "real_token_reserves": {
                "type": [
                  "string",
                  "null"
                ],
                "description": "Observed token reserves in the launch pool."
              },
              "virtual_token_reserves": {
                "type": [
                  "string",
                  "null"
                ],
                "description": "Virtual token reserves used by the launch mechanism when applicable."
              },
              "token_total_supply": {
                "type": [
                  "string",
                  "null"
                ],
                "description": "Total token supply tracked by the launch pool."
              }
            }
          },
          "progress_percent": {
            "type": "number",
            "description": "Bonding-curve or launch progress as a percentage."
          },
          "source": {
            "type": "string",
            "description": "Launch platform or source for the meme token."
          },
          "platform_id": {
            "type": "string",
            "description": "Platform program or contract identifier for the launch source."
          },
          "graduated_time": {
            "type": [
              "integer",
              "null"
            ],
            "description": "Unix timestamp in seconds when the token graduated, if it has graduated."
          },
          "updated_at": {
            "type": "object",
            "additionalProperties": true,
            "properties": {
              "tx_hash": {
                "type": [
                  "string",
                  "null"
                ],
                "description": "Transaction signature of the last tracked metadata update."
              },
              "slot": {
                "type": [
                  "integer",
                  "null"
                ],
                "description": "Slot of the last tracked metadata update."
              }
            }
          },
          "graduated_at": {
            "type": "object",
            "additionalProperties": true,
            "properties": {
              "block_time": {
                "type": [
                  "integer",
                  "null"
                ],
                "description": "Block timestamp in Unix seconds for the recorded event."
              },
              "slot": {
                "type": [
                  "integer",
                  "null"
                ],
                "description": "Solana slot for the recorded event."
              },
              "tx_hash": {
                "type": [
                  "string",
                  "null"
                ],
                "description": "Transaction signature that recorded the event."
              }
            }
          }
        }
      },
      "MemeTokenItem": {
        "type": "object",
        "additionalProperties": true,
        "properties": {
          "address": {
            "type": "string",
            "description": "Token mint address."
          },
          "logo_uri": {
            "type": "string",
            "description": "Logo URL for the token."
          },
          "name": {
            "type": "string",
            "description": "Display name of the token."
          },
          "symbol": {
            "type": "string",
            "description": "Ticker symbol of the token."
          },
          "decimals": {
            "type": "integer",
            "description": "Number of token decimals."
          },
          "extensions": {
            "type": [
              "object",
              "null"
            ],
            "description": "Optional social links and external metadata.",
            "additionalProperties": {
              "type": [
                "string",
                "number",
                "boolean",
                "null"
              ]
            }
          },
          "market_cap": {
            "type": "number",
            "description": "Current market capitalization in USD."
          },
          "fdv": {
            "type": "number",
            "description": "Fully diluted valuation in USD."
          },
          "total_supply": {
            "type": "number",
            "description": "Current total token supply."
          },
          "circulating_supply": {
            "type": "number",
            "description": "Current circulating supply."
          },
          "liquidity": {
            "type": "number",
            "description": "Current token liquidity in USD."
          },
          "last_trade_unix_time": {
            "type": "integer",
            "description": "Unix timestamp in seconds of the latest observed trade."
          },
          "global_fees_paid": {
            "type": "number",
            "description": "Global fees paid by the token, in SOL-equivalent units where available."
          },
          "holder": {
            "type": "integer",
            "description": "Current holder count."
          },
          "recent_listing_time": {
            "type": "integer",
            "description": "Unix timestamp in seconds when the token was recently listed."
          },
          "price": {
            "type": "number",
            "description": "Latest token price in USD."
          },
          "meme_info": {
            "type": "object",
            "additionalProperties": true,
            "properties": {
              "created_at": {
                "type": "object",
                "additionalProperties": true,
                "properties": {
                  "block_time": {
                    "type": [
                      "integer",
                      "null"
                    ],
                    "description": "Block timestamp in Unix seconds for the recorded event."
                  },
                  "slot": {
                    "type": [
                      "integer",
                      "null"
                    ],
                    "description": "Solana slot for the recorded event."
                  },
                  "tx_hash": {
                    "type": [
                      "string",
                      "null"
                    ],
                    "description": "Transaction signature that recorded the event."
                  }
                }
              },
              "creator": {
                "type": "string",
                "description": "Creator wallet that launched the meme token."
              },
              "address": {
                "type": "string",
                "description": "Token address for the meme asset."
              },
              "creation_time": {
                "type": "integer",
                "description": "Unix timestamp in seconds when the token was created."
              },
              "graduated": {
                "type": "boolean",
                "description": "Whether the token has graduated out of the launch platform."
              },
              "pool": {
                "type": "object",
                "additionalProperties": true,
                "properties": {
                  "address": {
                    "type": [
                      "string",
                      "null"
                    ],
                    "description": "Pool address associated with the meme token launch."
                  },
                  "real_sol_reserves": {
                    "type": [
                      "string",
                      "null"
                    ],
                    "description": "Observed SOL reserves in the bonding curve or launch pool."
                  },
                  "real_token_reserves": {
                    "type": [
                      "string",
                      "null"
                    ],
                    "description": "Observed token reserves in the launch pool."
                  },
                  "virtual_token_reserves": {
                    "type": [
                      "string",
                      "null"
                    ],
                    "description": "Virtual token reserves used by the launch mechanism when applicable."
                  },
                  "token_total_supply": {
                    "type": [
                      "string",
                      "null"
                    ],
                    "description": "Total token supply tracked by the launch pool."
                  }
                }
              },
              "progress_percent": {
                "type": "number",
                "description": "Bonding-curve or launch progress as a percentage."
              },
              "source": {
                "type": "string",
                "description": "Launch platform or source for the meme token."
              },
              "platform_id": {
                "type": "string",
                "description": "Platform program or contract identifier for the launch source."
              },
              "graduated_time": {
                "type": [
                  "integer",
                  "null"
                ],
                "description": "Unix timestamp in seconds when the token graduated, if it has graduated."
              },
              "updated_at": {
                "type": "object",
                "additionalProperties": true,
                "properties": {
                  "tx_hash": {
                    "type": [
                      "string",
                      "null"
                    ],
                    "description": "Transaction signature of the last tracked metadata update."
                  },
                  "slot": {
                    "type": [
                      "integer",
                      "null"
                    ],
                    "description": "Slot of the last tracked metadata update."
                  }
                }
              },
              "graduated_at": {
                "type": "object",
                "additionalProperties": true,
                "properties": {
                  "block_time": {
                    "type": [
                      "integer",
                      "null"
                    ],
                    "description": "Block timestamp in Unix seconds for the recorded event."
                  },
                  "slot": {
                    "type": [
                      "integer",
                      "null"
                    ],
                    "description": "Solana slot for the recorded event."
                  },
                  "tx_hash": {
                    "type": [
                      "string",
                      "null"
                    ],
                    "description": "Transaction signature that recorded the event."
                  }
                }
              }
            }
          },
          "volume_1m_usd": {
            "type": "number",
            "description": "USD trading volume during the latest 1m window."
          },
          "volume_1m_change_percent": {
            "type": [
              "number",
              "null"
            ],
            "description": "Percentage change in USD trading volume versus the previous 1m window."
          },
          "price_change_1m_percent": {
            "type": "number",
            "description": "Percentage change in token price versus 1m ago."
          },
          "volume_5m_usd": {
            "type": "number",
            "description": "USD trading volume during the latest 5m window."
          },
          "volume_5m_change_percent": {
            "type": [
              "number",
              "null"
            ],
            "description": "Percentage change in USD trading volume versus the previous 5m window."
          },
          "price_change_5m_percent": {
            "type": "number",
            "description": "Percentage change in token price versus 5m ago."
          },
          "volume_30m_usd": {
            "type": "number",
            "description": "USD trading volume during the latest 30m window."
          },
          "volume_30m_change_percent": {
            "type": [
              "number",
              "null"
            ],
            "description": "Percentage change in USD trading volume versus the previous 30m window."
          },
          "price_change_30m_percent": {
            "type": "number",
            "description": "Percentage change in token price versus 30m ago."
          },
          "volume_1h_usd": {
            "type": "number",
            "description": "USD trading volume during the latest 1h window."
          },
          "volume_1h_change_percent": {
            "type": [
              "number",
              "null"
            ],
            "description": "Percentage change in USD trading volume versus the previous 1h window."
          },
          "price_change_1h_percent": {
            "type": "number",
            "description": "Percentage change in token price versus 1h ago."
          },
          "volume_2h_usd": {
            "type": "number",
            "description": "USD trading volume during the latest 2h window."
          },
          "volume_2h_change_percent": {
            "type": [
              "number",
              "null"
            ],
            "description": "Percentage change in USD trading volume versus the previous 2h window."
          },
          "price_change_2h_percent": {
            "type": "number",
            "description": "Percentage change in token price versus 2h ago."
          },
          "volume_4h_usd": {
            "type": "number",
            "description": "USD trading volume during the latest 4h window."
          },
          "volume_4h_change_percent": {
            "type": [
              "number",
              "null"
            ],
            "description": "Percentage change in USD trading volume versus the previous 4h window."
          },
          "price_change_4h_percent": {
            "type": "number",
            "description": "Percentage change in token price versus 4h ago."
          },
          "volume_8h_usd": {
            "type": "number",
            "description": "USD trading volume during the latest 8h window."
          },
          "volume_8h_change_percent": {
            "type": [
              "number",
              "null"
            ],
            "description": "Percentage change in USD trading volume versus the previous 8h window."
          },
          "price_change_8h_percent": {
            "type": "number",
            "description": "Percentage change in token price versus 8h ago."
          },
          "volume_24h_usd": {
            "type": "number",
            "description": "USD trading volume during the latest 24h window."
          },
          "volume_24h_change_percent": {
            "type": [
              "number",
              "null"
            ],
            "description": "Percentage change in USD trading volume versus the previous 24h window."
          },
          "price_change_24h_percent": {
            "type": "number",
            "description": "Percentage change in token price versus 24h ago."
          },
          "volume_7d_usd": {
            "type": "number",
            "description": "USD trading volume during the latest 7d window."
          },
          "volume_7d_change_percent": {
            "type": [
              "number",
              "null"
            ],
            "description": "Percentage change in USD trading volume versus the previous 7d window."
          },
          "price_change_7d_percent": {
            "type": "number",
            "description": "Percentage change in token price versus 7d ago."
          },
          "volume_30d_usd": {
            "type": "number",
            "description": "USD trading volume during the latest 30d window."
          },
          "volume_30d_change_percent": {
            "type": [
              "number",
              "null"
            ],
            "description": "Percentage change in USD trading volume versus the previous 30d window."
          },
          "price_change_30d_percent": {
            "type": "number",
            "description": "Percentage change in token price versus 30d ago."
          },
          "trade_1m_count": {
            "type": "integer",
            "description": "Total trade count during the latest 1m window."
          },
          "trade_5m_count": {
            "type": "integer",
            "description": "Total trade count during the latest 5m window."
          },
          "trade_30m_count": {
            "type": "integer",
            "description": "Total trade count during the latest 30m window."
          },
          "trade_1h_count": {
            "type": "integer",
            "description": "Total trade count during the latest 1h window."
          },
          "trade_2h_count": {
            "type": "integer",
            "description": "Total trade count during the latest 2h window."
          },
          "trade_4h_count": {
            "type": "integer",
            "description": "Total trade count during the latest 4h window."
          },
          "trade_8h_count": {
            "type": "integer",
            "description": "Total trade count during the latest 8h window."
          },
          "trade_24h_count": {
            "type": "integer",
            "description": "Total trade count during the latest 24h window."
          },
          "trade_7d_count": {
            "type": "integer",
            "description": "Total trade count during the latest 7d window."
          },
          "trade_30d_count": {
            "type": "integer",
            "description": "Total trade count during the latest 30d window."
          },
          "buy_24h": {
            "type": "integer",
            "description": "Buy-side trade count during the latest 24h window."
          },
          "buy_24h_change_percent": {
            "type": [
              "number",
              "null"
            ],
            "description": "Percentage change in buy-side trade count versus the previous 24h window."
          },
          "volume_buy_24h_usd": {
            "type": "number",
            "description": "Buy-side USD volume during the latest 24h window."
          },
          "volume_buy_24h_change_percent": {
            "type": [
              "number",
              "null"
            ],
            "description": "Percentage change in buy-side USD volume versus the previous 24h window."
          },
          "sell_24h": {
            "type": "integer",
            "description": "Sell-side trade count during the latest 24h window."
          },
          "sell_24h_change_percent": {
            "type": [
              "number",
              "null"
            ],
            "description": "Percentage change in sell-side trade count versus the previous 24h window."
          },
          "volume_sell_24h_usd": {
            "type": "number",
            "description": "Sell-side USD volume during the latest 24h window."
          },
          "volume_sell_24h_change_percent": {
            "type": [
              "number",
              "null"
            ],
            "description": "Percentage change in sell-side USD volume versus the previous 24h window."
          },
          "buy_7d": {
            "type": "integer",
            "description": "Buy-side trade count during the latest 7d window."
          },
          "buy_7d_change_percent": {
            "type": [
              "number",
              "null"
            ],
            "description": "Percentage change in buy-side trade count versus the previous 7d window."
          },
          "volume_buy_7d_usd": {
            "type": "number",
            "description": "Buy-side USD volume during the latest 7d window."
          },
          "volume_buy_7d_change_percent": {
            "type": [
              "number",
              "null"
            ],
            "description": "Percentage change in buy-side USD volume versus the previous 7d window."
          },
          "sell_7d": {
            "type": "integer",
            "description": "Sell-side trade count during the latest 7d window."
          },
          "sell_7d_change_percent": {
            "type": [
              "number",
              "null"
            ],
            "description": "Percentage change in sell-side trade count versus the previous 7d window."
          },
          "volume_sell_7d_usd": {
            "type": "number",
            "description": "Sell-side USD volume during the latest 7d window."
          },
          "volume_sell_7d_change_percent": {
            "type": [
              "number",
              "null"
            ],
            "description": "Percentage change in sell-side USD volume versus the previous 7d window."
          },
          "buy_30d": {
            "type": "integer",
            "description": "Buy-side trade count during the latest 30d window."
          },
          "buy_30d_change_percent": {
            "type": [
              "number",
              "null"
            ],
            "description": "Percentage change in buy-side trade count versus the previous 30d window."
          },
          "volume_buy_30d_usd": {
            "type": "number",
            "description": "Buy-side USD volume during the latest 30d window."
          },
          "volume_buy_30d_change_percent": {
            "type": [
              "number",
              "null"
            ],
            "description": "Percentage change in buy-side USD volume versus the previous 30d window."
          },
          "sell_30d": {
            "type": "integer",
            "description": "Sell-side trade count during the latest 30d window."
          },
          "sell_30d_change_percent": {
            "type": [
              "number",
              "null"
            ],
            "description": "Percentage change in sell-side trade count versus the previous 30d window."
          },
          "volume_sell_30d_usd": {
            "type": "number",
            "description": "Sell-side USD volume during the latest 30d window."
          },
          "volume_sell_30d_change_percent": {
            "type": [
              "number",
              "null"
            ],
            "description": "Percentage change in sell-side USD volume versus the previous 30d window."
          },
          "unique_wallet_24h": {
            "type": "integer",
            "description": "Number of distinct wallets that traded the token during the latest 24-hour window."
          },
          "unique_wallet_24h_change_percent": {
            "type": [
              "number",
              "null"
            ],
            "description": "Percentage change in distinct trading wallets versus the previous 24-hour window."
          }
        }
      },
      "DefiMemeListSchemaResponse": {
        "type": "object",
        "required": [
          "success",
          "data"
        ],
        "properties": {
          "success": {
            "type": "boolean",
            "description": "Whether the request succeeded."
          },
          "data": {
            "type": "object",
            "properties": {
              "items": {
                "type": "array",
                "description": "Meme tokens returned for the requested sort and filters.",
                "items": {
                  "$ref": "#/components/schemas/MemeTokenItem"
                }
              },
              "has_next": {
                "type": "boolean",
                "description": "Whether more tokens are available for pagination."
              }
            }
          }
        }
      },
      "DefiMemeDetailSchemaResponse": {
        "type": "object",
        "required": [
          "success",
          "data"
        ],
        "properties": {
          "success": {
            "type": "boolean",
            "description": "Whether the request succeeded."
          },
          "data": {
            "allOf": [
              {
                "$ref": "#/components/schemas/MemeTokenItem"
              }
            ],
            "description": "Detailed meme-token profile for the requested token address."
          }
        }
      },
      "SmartMoneyTokenItem": {
        "type": "object",
        "additionalProperties": true,
        "properties": {
          "token": {
            "type": "string",
            "description": "Token mint or contract address."
          },
          "price": {
            "type": "number",
            "description": "Latest token price in USD."
          },
          "liquidity": {
            "type": "number",
            "description": "Current token liquidity in USD."
          },
          "market_cap": {
            "type": "number",
            "description": "Current token market capitalization in USD."
          },
          "net_flow": {
            "type": "number",
            "description": "Net smart-money flow for the selected time window and cohort."
          },
          "smart_traders_no": {
            "type": "integer",
            "description": "Number of smart-trader wallets contributing to the signal."
          },
          "trader_style": {
            "type": "string",
            "description": "Smart-money cohort or trader-style label used for the ranking."
          },
          "volume_usd": {
            "type": "number",
            "description": "Total USD trading volume associated with the smart-money activity."
          },
          "volume_buy_usd": {
            "type": "number",
            "description": "Buy-side USD volume attributed to smart-money wallets."
          },
          "volume_sell_usd": {
            "type": "number",
            "description": "Sell-side USD volume attributed to smart-money wallets."
          },
          "symbol": {
            "type": "string",
            "description": "Token symbol."
          },
          "name": {
            "type": "string",
            "description": "Token display name."
          },
          "logo_uri": {
            "type": "string",
            "description": "Token logo URL."
          },
          "price_change_percent": {
            "type": "number",
            "description": "Price change percentage over the requested ranking window."
          }
        }
      },
      "SmartMoneyTokenListResponse": {
        "type": "object",
        "required": [
          "success",
          "data"
        ],
        "properties": {
          "success": {
            "type": "boolean",
            "description": "Whether the request succeeded."
          },
          "data": {
            "type": "array",
            "description": "Ranked smart-money token list for the requested chain and filter set.",
            "items": {
              "$ref": "#/components/schemas/SmartMoneyTokenItem"
            }
          }
        }
      },
      "WalletTokenHolding": {
        "type": "object",
        "additionalProperties": true,
        "properties": {
          "address": {
            "type": "string",
            "description": "Token mint or contract address."
          },
          "decimals": {
            "type": "integer",
            "description": "Number of token decimals."
          },
          "balance": {
            "type": [
              "number",
              "string"
            ],
            "description": "Raw token balance before decimal scaling."
          },
          "uiAmount": {
            "type": "number",
            "description": "Human-readable token amount after decimals are applied."
          },
          "chainId": {
            "type": "string",
            "description": "Network identifier for the token balance."
          },
          "network": {
            "type": "string",
            "description": "Network name when the response uses `network` instead of `chainId`."
          },
          "name": {
            "type": "string",
            "description": "Token display name."
          },
          "symbol": {
            "type": "string",
            "description": "Token symbol."
          },
          "icon": {
            "type": "string",
            "description": "Icon URL for the token when returned."
          },
          "logoURI": {
            "type": "string",
            "description": "Logo URL for the token when using camelCase fields."
          },
          "logo_uri": {
            "type": "string",
            "description": "Logo URL for the token when using snake_case fields."
          },
          "priceUsd": {
            "type": "number",
            "description": "Latest token price in USD."
          },
          "price": {
            "type": "number",
            "description": "Latest token price in USD when the response uses `price`."
          },
          "valueUsd": {
            "type": "number",
            "description": "Current USD value of the token balance."
          },
          "value": {
            "type": [
              "number",
              "string"
            ],
            "description": "Current USD value of the token balance when the response uses `value`."
          },
          "amount": {
            "type": "number",
            "description": "Human-readable token amount when the response uses `amount`."
          },
          "isScaledUiToken": {
            "type": "boolean",
            "description": "Whether the token uses Solana Token-2022 scaled UI amounts."
          },
          "multiplier": {
            "type": [
              "number",
              "null"
            ],
            "description": "Scaled UI multiplier for Token-2022 assets when available."
          }
        }
      },
      "WalletTokenListResponseSchema": {
        "type": "object",
        "required": [
          "success",
          "data"
        ],
        "properties": {
          "success": {
            "type": "boolean",
            "description": "Whether the request succeeded."
          },
          "data": {
            "type": "object",
            "additionalProperties": true,
            "properties": {
              "wallet": {
                "type": "string",
                "description": "Wallet address when echoed by the endpoint."
              },
              "totalUsd": {
                "type": "number",
                "description": "Total USD value of all returned token balances."
              },
              "items": {
                "type": "array",
                "description": "Token balances currently held by the wallet.",
                "items": {
                  "$ref": "#/components/schemas/WalletTokenHolding"
                }
              }
            }
          }
        }
      },
      "WalletTokenSingleResponseSchema": {
        "type": "object",
        "required": [
          "success",
          "data"
        ],
        "properties": {
          "success": {
            "type": "boolean",
            "description": "Whether the request succeeded."
          },
          "data": {
            "$ref": "#/components/schemas/WalletTokenHolding"
          }
        }
      },
      "WalletTxListResponseSchema": {
        "type": "object",
        "required": [
          "success",
          "data"
        ],
        "properties": {
          "success": {
            "type": "boolean",
            "description": "Whether the request succeeded."
          },
          "data": {
            "type": "object",
            "description": "Transactions grouped by chain family or source bucket.",
            "additionalProperties": {
              "type": "array",
              "items": {
                "type": "object",
                "additionalProperties": true,
                "properties": {
                  "txHash": {
                    "type": "string",
                    "description": "Transaction signature or hash."
                  },
                  "blockNumber": {
                    "type": [
                      "integer",
                      "string"
                    ],
                    "description": "Block or slot number."
                  },
                  "blockTime": {
                    "type": [
                      "integer",
                      "string"
                    ],
                    "description": "Block time or timestamp for the transaction."
                  },
                  "status": {
                    "type": "boolean",
                    "description": "Whether the transaction succeeded."
                  },
                  "from": {
                    "type": "string",
                    "description": "Sender wallet or account address."
                  },
                  "to": {
                    "type": "string",
                    "description": "Recipient wallet or account address."
                  },
                  "fee": {
                    "type": [
                      "number",
                      "string"
                    ],
                    "description": "Transaction fee paid on-chain."
                  },
                  "mainAction": {
                    "type": "string",
                    "description": "Primary interpreted action of the transaction."
                  },
                  "balanceChange": {
                    "type": "array",
                    "description": "Balance changes associated with the transaction.",
                    "items": {
                      "type": "object",
                      "additionalProperties": true
                    }
                  },
                  "contractLabel": {
                    "type": [
                      "string",
                      "null"
                    ],
                    "description": "Optional human-readable contract or protocol label."
                  },
                  "tokenTransfers": {
                    "type": "array",
                    "description": "Token transfer events parsed from the transaction.",
                    "items": {
                      "type": "object",
                      "additionalProperties": true
                    }
                  }
                }
              }
            }
          }
        }
      },
      "WalletBalanceChangeResponseSchema": {
        "type": "object",
        "required": [
          "success",
          "data"
        ],
        "properties": {
          "success": {
            "type": "boolean",
            "description": "Whether the request succeeded."
          },
          "data": {
            "type": "object",
            "properties": {
              "items": {
                "type": "array",
                "description": "Balance-change events for the requested wallet.",
                "items": {
                  "type": "object",
                  "additionalProperties": true,
                  "properties": {
                    "time": {
                      "type": "string",
                      "description": "Human-readable event time."
                    },
                    "block_number": {
                      "type": [
                        "integer",
                        "string"
                      ],
                      "description": "Block or slot number of the event."
                    },
                    "block_unix_time": {
                      "type": "integer",
                      "description": "Block timestamp in Unix seconds."
                    },
                    "address": {
                      "type": "string",
                      "description": "Wallet address whose balance changed."
                    },
                    "token_account": {
                      "type": "string",
                      "description": "Token account or balance slot address."
                    },
                    "tx_hash": {
                      "type": "string",
                      "description": "Transaction signature or hash."
                    },
                    "pre_balance": {
                      "type": [
                        "number",
                        "string"
                      ],
                      "description": "Balance before the change."
                    },
                    "post_balance": {
                      "type": [
                        "number",
                        "string"
                      ],
                      "description": "Balance after the change."
                    },
                    "amount": {
                      "type": [
                        "number",
                        "string"
                      ],
                      "description": "Signed balance delta for the event."
                    },
                    "token_info": {
                      "type": "object",
                      "additionalProperties": true,
                      "description": "Metadata for the token whose balance changed."
                    },
                    "type": {
                      "type": "string",
                      "description": "Machine-readable event type."
                    },
                    "type_text": {
                      "type": "string",
                      "description": "Human-readable event type."
                    },
                    "change_type": {
                      "type": "string",
                      "description": "Machine-readable change-direction classification."
                    },
                    "change_type_text": {
                      "type": "string",
                      "description": "Human-readable change-direction label."
                    }
                  }
                }
              }
            }
          }
        }
      },
      "WalletCurrentNetWorthResponseSchema": {
        "type": "object",
        "required": [
          "success",
          "data"
        ],
        "properties": {
          "success": {
            "type": "boolean",
            "description": "Whether the request succeeded."
          },
          "data": {
            "type": "object",
            "properties": {
              "wallet_address": {
                "type": "string",
                "description": "Wallet address whose net worth was calculated."
              },
              "currency": {
                "type": "string",
                "description": "Display currency used for valuation."
              },
              "total_value": {
                "type": [
                  "number",
                  "string"
                ],
                "description": "Current total net worth in the selected currency."
              },
              "current_timestamp": {
                "type": "string",
                "description": "Timestamp when the valuation snapshot was computed."
              },
              "items": {
                "type": "array",
                "description": "Assets contributing to the current net-worth snapshot.",
                "items": {
                  "$ref": "#/components/schemas/WalletTokenHolding"
                }
              }
            }
          },
          "pagination": {
            "type": "object",
            "properties": {
              "limit": {
                "type": "integer",
                "description": "Requested page size."
              },
              "offset": {
                "type": "integer",
                "description": "Requested pagination offset."
              },
              "total": {
                "type": "integer",
                "description": "Total number of available asset rows."
              }
            }
          }
        }
      },
      "MultipleNetworthSummaryResponseSchema": {
        "type": "object",
        "required": [
          "success",
          "data"
        ],
        "properties": {
          "success": {
            "type": "boolean",
            "description": "Whether the request succeeded."
          },
          "data": {
            "type": "object",
            "properties": {
              "currency": {
                "type": "string",
                "description": "Display currency used for valuation."
              },
              "current_timestamp": {
                "type": "string",
                "description": "Timestamp when the valuation snapshot was computed."
              },
              "wallets": {
                "type": "object",
                "description": "Map keyed by wallet address to current net-worth summary.",
                "additionalProperties": {
                  "type": "object",
                  "additionalProperties": true,
                  "properties": {
                    "value": {
                      "type": [
                        "number",
                        "string"
                      ],
                      "description": "Current net worth of the wallet in the selected currency."
                    }
                  }
                }
              }
            }
          }
        }
      },
      "WalletNetWorthHistoryResponseSchema": {
        "type": "object",
        "required": [
          "success",
          "data"
        ],
        "properties": {
          "success": {
            "type": "boolean",
            "description": "Whether the request succeeded."
          },
          "data": {
            "type": "object",
            "properties": {
              "wallet_address": {
                "type": "string",
                "description": "Wallet address whose history was requested."
              },
              "currency": {
                "type": "string",
                "description": "Display currency used for valuation."
              },
              "current_timestamp": {
                "type": "string",
                "description": "Timestamp of the latest history point in the response."
              },
              "past_timestamp": {
                "type": "string",
                "description": "Start timestamp of the requested comparison window."
              },
              "history": {
                "type": "array",
                "description": "Historical net-worth points for the wallet.",
                "items": {
                  "type": "object",
                  "properties": {
                    "timestamp": {
                      "type": "string",
                      "description": "Timestamp of the history point."
                    },
                    "net_worth": {
                      "type": [
                        "number",
                        "string"
                      ],
                      "description": "Net worth at this timestamp."
                    },
                    "net_worth_change": {
                      "type": [
                        "number",
                        "string"
                      ],
                      "description": "Absolute net-worth change versus the comparison baseline."
                    },
                    "net_worth_change_percent": {
                      "type": [
                        "number",
                        "string"
                      ],
                      "description": "Percentage net-worth change versus the comparison baseline."
                    }
                  }
                }
              }
            }
          }
        }
      },
      "WalletNetWorthDetailResponseSchema": {
        "type": "object",
        "required": [
          "success",
          "data"
        ],
        "properties": {
          "success": {
            "type": "boolean",
            "description": "Whether the request succeeded."
          },
          "data": {
            "type": "object",
            "properties": {
              "wallet_address": {
                "type": "string",
                "description": "Wallet address whose detail snapshot was requested."
              },
              "currency": {
                "type": "string",
                "description": "Display currency used for valuation."
              },
              "net_worth": {
                "type": "number",
                "description": "Net worth at the resolved timestamp."
              },
              "requested_timestamp": {
                "type": "string",
                "description": "Timestamp originally requested by the caller."
              },
              "resolved_timestamp": {
                "type": "string",
                "description": "Timestamp actually used after alignment to an available snapshot."
              },
              "net_assets": {
                "type": "array",
                "description": "Asset rows contributing to the net-worth snapshot.",
                "items": {
                  "type": "object",
                  "properties": {
                    "symbol": {
                      "type": "string",
                      "description": "Token symbol."
                    },
                    "token_address": {
                      "type": "string",
                      "description": "Token mint or contract address."
                    },
                    "decimal": {
                      "type": "integer",
                      "description": "Number of token decimals."
                    },
                    "balance": {
                      "type": [
                        "number",
                        "string"
                      ],
                      "description": "Raw or human-readable asset balance, depending on the endpoint serializer."
                    },
                    "price": {
                      "type": [
                        "number",
                        "string"
                      ],
                      "description": "Indexed token price in the selected currency."
                    },
                    "value": {
                      "type": [
                        "number",
                        "string"
                      ],
                      "description": "Asset valuation in the selected currency."
                    }
                  }
                }
              }
            }
          },
          "pagination": {
            "type": "object",
            "properties": {
              "limit": {
                "type": "integer",
                "description": "Requested page size."
              },
              "offset": {
                "type": "integer",
                "description": "Requested pagination offset."
              },
              "total": {
                "type": "integer",
                "description": "Total number of available asset rows."
              }
            }
          }
        }
      },
      "WalletPnlResponseSchema": {
        "type": "object",
        "required": [
          "success",
          "data"
        ],
        "properties": {
          "success": {
            "type": "boolean",
            "description": "Whether the request succeeded."
          },
          "data": {
            "type": "object",
            "properties": {
              "meta": {
                "type": "object",
                "description": "Resolved wallet and valuation context for the response.",
                "properties": {
                  "address": {
                    "type": "string",
                    "description": "Wallet address whose PnL was requested."
                  },
                  "currency": {
                    "type": "string",
                    "description": "Display currency used for valuation."
                  },
                  "holding_check": {
                    "type": "boolean",
                    "description": "Whether current holdings were included in the PnL calculation."
                  },
                  "time": {
                    "type": "string",
                    "description": "Timestamp of the PnL snapshot."
                  }
                }
              },
              "tokens": {
                "type": "object",
                "description": "Map keyed by token address to per-token PnL details.",
                "additionalProperties": {
                  "$ref": "#/components/schemas/WalletPnlToken"
                }
              }
            }
          }
        }
      },
      "WalletPnlDetailsResponseSchema": {
        "type": "object",
        "required": [
          "data"
        ],
        "properties": {
          "success": {
            "type": "boolean",
            "description": "Whether the request succeeded."
          },
          "data": {
            "type": "object",
            "properties": {
              "meta": {
                "type": "object",
                "description": "Resolved wallet and valuation context for the response.",
                "properties": {
                  "address": {
                    "type": "string",
                    "description": "Wallet address whose PnL was requested."
                  },
                  "currency": {
                    "type": "string",
                    "description": "Display currency used for valuation."
                  },
                  "holding_check": {
                    "type": "boolean",
                    "description": "Whether current holdings were included in the PnL calculation."
                  },
                  "time": {
                    "type": "string",
                    "description": "Timestamp of the PnL snapshot."
                  }
                }
              },
              "tokens": {
                "type": "array",
                "description": "Per-token PnL rows.",
                "items": {
                  "$ref": "#/components/schemas/WalletPnlToken"
                }
              },
              "summary": {
                "type": "object",
                "additionalProperties": true,
                "description": "Aggregated PnL summary across every token included in the request scope.",
                "properties": {
                  "unique_tokens": {
                    "type": "integer",
                    "description": "Number of unique tokens included in the PnL summary."
                  },
                  "counts": {
                    "type": "object",
                    "additionalProperties": true,
                    "properties": {
                      "total_buy": {
                        "type": [
                          "number",
                          "string"
                        ],
                        "description": "Total number of buy trades."
                      },
                      "total_sell": {
                        "type": [
                          "number",
                          "string"
                        ],
                        "description": "Total number of sell trades."
                      },
                      "total_trade": {
                        "type": [
                          "number",
                          "string"
                        ],
                        "description": "Combined total number of buy and sell trades."
                      },
                      "total_win": {
                        "type": [
                          "number",
                          "string"
                        ],
                        "description": "Number of realized winning trades or tokens."
                      },
                      "total_loss": {
                        "type": [
                          "number",
                          "string"
                        ],
                        "description": "Number of realized losing trades or tokens."
                      },
                      "win_rate": {
                        "type": [
                          "number",
                          "string"
                        ],
                        "description": "Winning rate across realized trades or tokens."
                      }
                    }
                  },
                  "cashflow_usd": {
                    "type": "object",
                    "additionalProperties": true,
                    "properties": {
                      "total_invested": {
                        "type": [
                          "number",
                          "string"
                        ],
                        "description": "USD spent on all buys."
                      },
                      "total_sold": {
                        "type": [
                          "number",
                          "string"
                        ],
                        "description": "USD received from all sells."
                      },
                      "current_value": {
                        "type": [
                          "number",
                          "string"
                        ],
                        "description": "Current USD value of open positions when included in the response."
                      }
                    }
                  },
                  "pnl": {
                    "type": "object",
                    "additionalProperties": true,
                    "properties": {
                      "realized_profit_usd": {
                        "type": [
                          "number",
                          "string"
                        ],
                        "description": "Realized profit and loss in USD."
                      },
                      "realized_profit_percent": {
                        "type": [
                          "number",
                          "string"
                        ],
                        "description": "Realized profit and loss percentage."
                      },
                      "unrealized_usd": {
                        "type": [
                          "number",
                          "string"
                        ],
                        "description": "Unrealized profit and loss in USD."
                      },
                      "total_usd": {
                        "type": [
                          "number",
                          "string"
                        ],
                        "description": "Combined realized and unrealized profit and loss in USD."
                      },
                      "avg_profit_per_trade_usd": {
                        "type": [
                          "number",
                          "string"
                        ],
                        "description": "Average realized profit and loss per trade in USD."
                      }
                    }
                  }
                }
              }
            }
          }
        }
      },
      "WalletPnlChartResponseSchema": {
        "type": "object",
        "required": [
          "data"
        ],
        "properties": {
          "success": {
            "type": "boolean",
            "description": "Whether the request succeeded."
          },
          "data": {
            "type": "array",
            "description": "Time-series points for realized PnL and trading activity.",
            "items": {
              "type": "object",
              "properties": {
                "timestamp": {
                  "type": "string",
                  "description": "End timestamp for the aggregation bucket."
                },
                "realized_pnl": {
                  "type": "number",
                  "description": "Realized PnL accumulated in the bucket."
                },
                "total_volume_usd": {
                  "type": "number",
                  "description": "Total USD trading volume in the bucket."
                },
                "total_token_traded": {
                  "type": "number",
                  "description": "Number of unique tokens traded in the bucket."
                },
                "total_tx_count": {
                  "type": "number",
                  "description": "Number of transactions in the bucket."
                }
              }
            }
          }
        }
      },
      "WalletPnlSummaryResponseSchema": {
        "type": "object",
        "required": [
          "success",
          "data"
        ],
        "properties": {
          "success": {
            "type": "boolean",
            "description": "Whether the request succeeded."
          },
          "data": {
            "type": "object",
            "description": "PnL summary payload for the requested wallet scope.",
            "properties": {
              "summary": {
                "type": "object",
                "additionalProperties": true,
                "description": "Aggregated PnL summary across the tokens included in this request.",
                "properties": {
                  "unique_tokens": {
                    "type": "integer",
                    "description": "Number of unique tokens included in the PnL summary."
                  },
                  "counts": {
                    "type": "object",
                    "additionalProperties": true,
                    "properties": {
                      "total_buy": {
                        "type": [
                          "number",
                          "string"
                        ],
                        "description": "Total number of buy trades."
                      },
                      "total_sell": {
                        "type": [
                          "number",
                          "string"
                        ],
                        "description": "Total number of sell trades."
                      },
                      "total_trade": {
                        "type": [
                          "number",
                          "string"
                        ],
                        "description": "Combined total number of buy and sell trades."
                      },
                      "total_win": {
                        "type": [
                          "number",
                          "string"
                        ],
                        "description": "Number of realized winning trades or tokens."
                      },
                      "total_loss": {
                        "type": [
                          "number",
                          "string"
                        ],
                        "description": "Number of realized losing trades or tokens."
                      },
                      "win_rate": {
                        "type": [
                          "number",
                          "string"
                        ],
                        "description": "Winning rate across realized trades or tokens."
                      }
                    }
                  },
                  "cashflow_usd": {
                    "type": "object",
                    "additionalProperties": true,
                    "properties": {
                      "total_invested": {
                        "type": [
                          "number",
                          "string"
                        ],
                        "description": "USD spent on all buys."
                      },
                      "total_sold": {
                        "type": [
                          "number",
                          "string"
                        ],
                        "description": "USD received from all sells."
                      },
                      "current_value": {
                        "type": [
                          "number",
                          "string"
                        ],
                        "description": "Current USD value of open positions when included in the response."
                      }
                    }
                  },
                  "pnl": {
                    "type": "object",
                    "additionalProperties": true,
                    "properties": {
                      "realized_profit_usd": {
                        "type": [
                          "number",
                          "string"
                        ],
                        "description": "Realized profit and loss in USD."
                      },
                      "realized_profit_percent": {
                        "type": [
                          "number",
                          "string"
                        ],
                        "description": "Realized profit and loss percentage."
                      },
                      "unrealized_usd": {
                        "type": [
                          "number",
                          "string"
                        ],
                        "description": "Unrealized profit and loss in USD."
                      },
                      "total_usd": {
                        "type": [
                          "number",
                          "string"
                        ],
                        "description": "Combined realized and unrealized profit and loss in USD."
                      },
                      "avg_profit_per_trade_usd": {
                        "type": [
                          "number",
                          "string"
                        ],
                        "description": "Average realized profit and loss per trade in USD."
                      }
                    }
                  }
                }
              }
            }
          }
        }
      },
      "MultipleWalletPnlResponseSchema": {
        "type": "object",
        "required": [
          "success",
          "data"
        ],
        "properties": {
          "success": {
            "type": "boolean",
            "description": "Whether the request succeeded."
          },
          "data": {
            "type": "object",
            "properties": {
              "token_metadata": {
                "type": "object",
                "description": "Token identity shared by every wallet row in the response.",
                "properties": {
                  "symbol": {
                    "type": "string",
                    "description": "Token symbol for the requested token."
                  },
                  "decimals": {
                    "type": "integer",
                    "description": "Number of token decimals for the requested token."
                  }
                }
              },
              "data": {
                "type": "object",
                "description": "Map keyed by wallet address to per-wallet PnL metrics for the requested token.",
                "additionalProperties": {
                  "type": "object",
                  "description": "PnL, position, and trading metrics for one wallet on the requested token.",
                  "properties": {
                    "counts": {
                      "type": "object",
                      "additionalProperties": true,
                      "properties": {
                        "total_buy": {
                          "type": [
                            "number",
                            "string"
                          ],
                          "description": "Total number of buy trades."
                        },
                        "total_sell": {
                          "type": [
                            "number",
                            "string"
                          ],
                          "description": "Total number of sell trades."
                        },
                        "total_trade": {
                          "type": [
                            "number",
                            "string"
                          ],
                          "description": "Combined total number of buy and sell trades."
                        },
                        "total_win": {
                          "type": [
                            "number",
                            "string"
                          ],
                          "description": "Number of realized winning trades or tokens."
                        },
                        "total_loss": {
                          "type": [
                            "number",
                            "string"
                          ],
                          "description": "Number of realized losing trades or tokens."
                        },
                        "win_rate": {
                          "type": [
                            "number",
                            "string"
                          ],
                          "description": "Winning rate across realized trades or tokens."
                        }
                      }
                    },
                    "quantity": {
                      "type": "object",
                      "additionalProperties": true,
                      "properties": {
                        "total_bought_amount": {
                          "type": [
                            "number",
                            "string"
                          ],
                          "description": "Total token quantity bought."
                        },
                        "total_sold_amount": {
                          "type": [
                            "number",
                            "string"
                          ],
                          "description": "Total token quantity sold."
                        },
                        "holding": {
                          "type": [
                            "number",
                            "string"
                          ],
                          "description": "Current token quantity still held."
                        }
                      }
                    },
                    "cashflow_usd": {
                      "type": "object",
                      "additionalProperties": true,
                      "properties": {
                        "cost_of_quantity_sold": {
                          "type": [
                            "number",
                            "string"
                          ],
                          "description": "Cost basis in USD for the quantity that has been sold."
                        },
                        "total_invested": {
                          "type": [
                            "number",
                            "string"
                          ],
                          "description": "Total USD spent on buys."
                        },
                        "total_sold": {
                          "type": [
                            "number",
                            "string"
                          ],
                          "description": "Total USD received from sells."
                        },
                        "current_value": {
                          "type": [
                            "number",
                            "string"
                          ],
                          "description": "Current USD market value of the remaining position."
                        }
                      }
                    },
                    "pnl": {
                      "type": "object",
                      "additionalProperties": true,
                      "properties": {
                        "realized_profit_usd": {
                          "type": [
                            "number",
                            "string"
                          ],
                          "description": "Realized profit and loss in USD."
                        },
                        "realized_profit_percent": {
                          "type": [
                            "number",
                            "string"
                          ],
                          "description": "Realized profit and loss percentage relative to sold cost basis."
                        },
                        "unrealized_usd": {
                          "type": [
                            "number",
                            "string"
                          ],
                          "description": "Unrealized mark-to-market profit and loss in USD."
                        },
                        "unrealized_percent": {
                          "type": [
                            "number",
                            "string"
                          ],
                          "description": "Unrealized mark-to-market profit and loss percentage."
                        },
                        "total_usd": {
                          "type": [
                            "number",
                            "string"
                          ],
                          "description": "Combined realized and unrealized profit and loss in USD."
                        },
                        "total_percent": {
                          "type": [
                            "number",
                            "string"
                          ],
                          "description": "Combined realized and unrealized profit and loss percentage."
                        },
                        "avg_profit_per_trade_usd": {
                          "type": [
                            "number",
                            "string"
                          ],
                          "description": "Average profit and loss per trade in USD."
                        }
                      }
                    },
                    "pricing": {
                      "type": "object",
                      "additionalProperties": true,
                      "properties": {
                        "current_price": {
                          "type": [
                            "number",
                            "null"
                          ],
                          "description": "Current indexed token price in USD."
                        },
                        "avg_buy_cost": {
                          "type": [
                            "number",
                            "null"
                          ],
                          "description": "Average buy cost per token in USD."
                        },
                        "avg_sell_cost": {
                          "type": [
                            "number",
                            "null"
                          ],
                          "description": "Average sell price per token in USD."
                        }
                      }
                    }
                  }
                }
              }
            }
          }
        }
      },
      "WalletTokenBalanceListResponseSchema": {
        "type": "object",
        "required": [
          "success",
          "data"
        ],
        "properties": {
          "success": {
            "type": "boolean",
            "description": "Whether the request succeeded."
          },
          "data": {
            "type": "array",
            "description": "Token balances returned for the requested wallet and token filter.",
            "items": {
              "$ref": "#/components/schemas/WalletTokenHolding"
            }
          }
        }
      },
      "WalletTxFirstFundedResponseSchema": {
        "type": "object",
        "required": [
          "success",
          "data"
        ],
        "properties": {
          "success": {
            "type": "boolean",
            "description": "Whether the request succeeded."
          },
          "data": {
            "type": "object",
            "description": "Map keyed by wallet address to the first-funding transaction details.",
            "additionalProperties": {
              "type": "object",
              "properties": {
                "tx_hash": {
                  "type": "string",
                  "description": "Transaction hash of the first funding event."
                },
                "block_unix_time": {
                  "type": "integer",
                  "description": "Unix timestamp in seconds of the first funding event."
                },
                "block_number": {
                  "type": "integer",
                  "description": "Block or slot number of the first funding event."
                },
                "balance_change": {
                  "type": [
                    "number",
                    "string"
                  ],
                  "description": "Balance change caused by the first funding event."
                },
                "token_address": {
                  "type": "string",
                  "description": "Token address that funded the wallet."
                },
                "token_decimals": {
                  "type": "integer",
                  "description": "Number of token decimals for the funding asset."
                }
              }
            }
          }
        }
      },
      "TransferListResponseSchema": {
        "type": "object",
        "required": [
          "success",
          "data"
        ],
        "properties": {
          "success": {
            "type": "boolean",
            "description": "Whether the request succeeded."
          },
          "data": {
            "type": "array",
            "description": "Transfer events matching the request filters.",
            "items": {
              "type": "object",
              "additionalProperties": true,
              "properties": {
                "time": {
                  "type": "string",
                  "description": "Human-readable time of the transfer."
                },
                "block_number": {
                  "type": "integer",
                  "description": "Block or slot number of the transfer."
                },
                "unix_time": {
                  "type": "integer",
                  "description": "Unix timestamp in seconds of the transfer."
                },
                "token_address": {
                  "type": "string",
                  "description": "Token mint or contract address being transferred."
                },
                "from_address": {
                  "type": "string",
                  "description": "Sender wallet address."
                },
                "to_address": {
                  "type": "string",
                  "description": "Recipient wallet address."
                },
                "from_token_account": {
                  "type": "string",
                  "description": "Source token account when the chain exposes token-account addresses."
                },
                "to_token_account": {
                  "type": "string",
                  "description": "Destination token account when the chain exposes token-account addresses."
                },
                "amount": {
                  "type": [
                    "number",
                    "string"
                  ],
                  "description": "Raw token amount transferred."
                },
                "ui_amount": {
                  "type": "number",
                  "description": "Human-readable token amount transferred."
                },
                "price": {
                  "type": "number",
                  "description": "Indexed token price in USD at the transfer time."
                },
                "value": {
                  "type": "number",
                  "description": "USD value of the transfer at the transfer time."
                },
                "tx_hash": {
                  "type": "string",
                  "description": "Transaction signature or hash of the transfer."
                },
                "flow": {
                  "type": "string",
                  "description": "Direction of the transfer relative to the queried wallet, such as `in` or `out`."
                },
                "token_info": {
                  "type": "object",
                  "additionalProperties": true,
                  "description": "Token metadata for the transferred asset."
                },
                "action": {
                  "type": "string",
                  "description": "Interpreted transfer action label."
                }
              }
            }
          }
        }
      },
      "TotalTransferResponseSchema": {
        "type": "object",
        "required": [
          "success",
          "data"
        ],
        "properties": {
          "success": {
            "type": "boolean",
            "description": "Whether the request succeeded."
          },
          "data": {
            "type": "object",
            "properties": {
              "total": {
                "type": "integer",
                "description": "Total number of transfer records matching the filters."
              }
            }
          }
        }
      },
      "WalletLeaderboardResponseSchema": {
        "type": "object",
        "required": [
          "success",
          "data"
        ],
        "properties": {
          "success": {
            "type": "boolean",
            "description": "Whether the request succeeded."
          },
          "data": {
            "type": "array",
            "description": "Ranked wallets for the requested leaderboard scope.",
            "items": {
              "type": "object",
              "required": [
                "owner",
                "total_value",
                "trade_count",
                "volume_usd",
                "realized_pnl",
                "unrealized_pnl"
              ],
              "properties": {
                "owner": {
                  "type": "string",
                  "description": "Wallet address in the leaderboard.",
                  "example": "3QG3aFvShbd6SxN3SdPowYQbokfReLGV6L141kMJQoLc"
                },
                "total_value": {
                  "type": "number",
                  "format": "double",
                  "description": "Total wallet value in USD.",
                  "example": 5235177.875046033
                },
                "trade_count": {
                  "type": "integer",
                  "format": "uint64",
                  "description": "Total number of trades.",
                  "example": 82
                },
                "volume_usd": {
                  "type": "number",
                  "format": "double",
                  "description": "Total trading volume in USD.",
                  "example": 2528308.586962412
                },
                "realized_pnl": {
                  "type": "number",
                  "format": "double",
                  "description": "Realized profit and loss in USD.",
                  "example": -236.30401229077495
                },
                "unrealized_pnl": {
                  "type": "number",
                  "format": "double",
                  "description": "Unrealized profit and loss in USD.",
                  "example": 0
                }
              }
            }
          }
        }
      },
      "WalletPnlToken": {
        "type": "object",
        "additionalProperties": true,
        "description": "Per-token PnL, position, and trading metrics for one wallet-token pair.",
        "properties": {
          "symbol": {
            "type": "string",
            "description": "Token symbol."
          },
          "decimals": {
            "type": "integer",
            "description": "Number of token decimals."
          },
          "address": {
            "type": "string",
            "description": "Token mint or contract address."
          },
          "counts": {
            "type": "object",
            "additionalProperties": true,
            "properties": {
              "total_buy": {
                "type": [
                  "number",
                  "string"
                ],
                "description": "Total number of buy trades."
              },
              "total_sell": {
                "type": [
                  "number",
                  "string"
                ],
                "description": "Total number of sell trades."
              },
              "total_trade": {
                "type": [
                  "number",
                  "string"
                ],
                "description": "Combined total number of buy and sell trades."
              },
              "total_win": {
                "type": [
                  "number",
                  "string"
                ],
                "description": "Number of realized winning trades or tokens."
              },
              "total_loss": {
                "type": [
                  "number",
                  "string"
                ],
                "description": "Number of realized losing trades or tokens."
              },
              "win_rate": {
                "type": [
                  "number",
                  "string"
                ],
                "description": "Winning rate across realized trades or tokens."
              }
            }
          },
          "quantity": {
            "type": "object",
            "additionalProperties": true,
            "properties": {
              "total_bought_amount": {
                "type": [
                  "number",
                  "string"
                ],
                "description": "Total token quantity bought."
              },
              "total_sold_amount": {
                "type": [
                  "number",
                  "string"
                ],
                "description": "Total token quantity sold."
              },
              "holding": {
                "type": [
                  "number",
                  "string"
                ],
                "description": "Current token quantity still held."
              }
            }
          },
          "cashflow_usd": {
            "type": "object",
            "additionalProperties": true,
            "properties": {
              "cost_of_quantity_sold": {
                "type": [
                  "number",
                  "string"
                ],
                "description": "Cost basis in USD for the quantity that has been sold."
              },
              "total_invested": {
                "type": [
                  "number",
                  "string"
                ],
                "description": "Total USD spent on buys."
              },
              "total_sold": {
                "type": [
                  "number",
                  "string"
                ],
                "description": "Total USD received from sells."
              },
              "current_value": {
                "type": [
                  "number",
                  "string"
                ],
                "description": "Current USD market value of the remaining position."
              }
            }
          },
          "pnl": {
            "type": "object",
            "additionalProperties": true,
            "properties": {
              "realized_profit_usd": {
                "type": [
                  "number",
                  "string"
                ],
                "description": "Realized profit and loss in USD."
              },
              "realized_profit_percent": {
                "type": [
                  "number",
                  "string"
                ],
                "description": "Realized profit and loss percentage relative to sold cost basis."
              },
              "unrealized_usd": {
                "type": [
                  "number",
                  "string"
                ],
                "description": "Unrealized mark-to-market profit and loss in USD."
              },
              "unrealized_percent": {
                "type": [
                  "number",
                  "string"
                ],
                "description": "Unrealized mark-to-market profit and loss percentage."
              },
              "total_usd": {
                "type": [
                  "number",
                  "string"
                ],
                "description": "Combined realized and unrealized profit and loss in USD."
              },
              "total_percent": {
                "type": [
                  "number",
                  "string"
                ],
                "description": "Combined realized and unrealized profit and loss percentage."
              },
              "avg_profit_per_trade_usd": {
                "type": [
                  "number",
                  "string"
                ],
                "description": "Average profit and loss per trade in USD."
              }
            }
          },
          "pricing": {
            "type": "object",
            "additionalProperties": true,
            "properties": {
              "current_price": {
                "type": [
                  "number",
                  "null"
                ],
                "description": "Current indexed token price in USD."
              },
              "avg_buy_cost": {
                "type": [
                  "number",
                  "null"
                ],
                "description": "Average buy cost per token in USD."
              },
              "avg_sell_cost": {
                "type": [
                  "number",
                  "null"
                ],
                "description": "Average sell price per token in USD."
              }
            }
          }
        }
      },
      "WalletFundedByResponseSchema": {
        "type": "object",
        "required": [
          "success",
          "data"
        ],
        "properties": {
          "success": {
            "type": "boolean",
            "description": "Whether the request succeeded."
          },
          "data": {
            "type": "object",
            "properties": {
              "funders": {
                "type": "array",
                "description": "Wallets associated with the first funding event.",
                "items": {
                  "type": "object",
                  "required": [
                    "funder",
                    "funder_name"
                  ],
                  "properties": {
                    "funder": {
                      "type": "string",
                      "description": "Address of the wallet that funded the requested wallet."
                    },
                    "funder_name": {
                      "type": "string",
                      "description": "Known name or label of the funding wallet, if available."
                    }
                  }
                }
              },
              "token_address": {
                "type": "string",
                "description": "Token address used to fund the wallet."
              },
              "token_decimals": {
                "type": "integer",
                "description": "Number of decimals for the funding token."
              },
              "block_number": {
                "type": "integer",
                "description": "Block or slot number of the first funding event."
              },
              "unix_time": {
                "type": "integer",
                "description": "Unix timestamp in seconds of the first funding event."
              },
              "amount": {
                "type": [
                  "number",
                  "string"
                ],
                "description": "Amount transferred in the first funding event, in the token's smallest unit."
              },
              "tx_hash": {
                "type": "string",
                "description": "Transaction hash of the first funding event."
              }
            }
          }
        }
      },
      "TokenWalletTagsTrackerResponse": {
        "type": "object",
        "required": [
          "success",
          "data"
        ],
        "properties": {
          "success": {
            "type": "boolean",
            "description": "Whether the request succeeded."
          },
          "data": {
            "type": "object",
            "properties": {
              "token_address": {
                "type": "string",
                "description": "The token mint address the series were computed for."
              },
              "time_frame": {
                "type": "string",
                "description": "The time frame each bucket covers. Echoed back under the same name the request used: callers passing the legacy `interval` receive `interval` instead.",
                "example": "1m"
              },
              "groups": {
                "type": "object",
                "description": "The three wallet groupings. They overlap with each other by design, so never sum one block into another.",
                "properties": {
                  "tags": {
                    "type": "object",
                    "description": "One series per tag, keyed by tag name. Supported tags: `dev`, `sniper`, `smart_trader`, `kol`. Only the tags requested via the tags parameter are returned. OVERLAPPING: a wallet tagged both dev and sniper is counted in both series, so summing across these keys double-counts. Use tag_combinations when you need a total.",
                    "properties": {
                      "dev": {
                        "type": "array",
                        "description": "Time series of buckets, ordered by time ascending. Buckets with no activity are omitted.",
                        "items": {
                          "type": "object",
                          "description": "One time bucket of trading activity for a wallet group. Volumes are leg-based and gross: a transaction that both buys and sells counts on both sides, with no netting.",
                          "properties": {
                            "unix_time": {
                              "type": "integer",
                              "description": "Bucket open time as a unix timestamp in seconds."
                            },
                            "volume_buy": {
                              "type": "number",
                              "description": "Token amount bought by the group in this bucket."
                            },
                            "volume_sell": {
                              "type": "number",
                              "description": "Token amount sold by the group in this bucket."
                            },
                            "volume_buy_usd": {
                              "type": "number",
                              "description": "USD value of the buy volume in this bucket."
                            },
                            "volume_sell_usd": {
                              "type": "number",
                              "description": "USD value of the sell volume in this bucket."
                            },
                            "wallet_buy_count": {
                              "type": "integer",
                              "description": "Number of distinct wallets in the group with a buy leg in this bucket."
                            },
                            "wallet_sell_count": {
                              "type": "integer",
                              "description": "Number of distinct wallets in the group with a sell leg in this bucket."
                            },
                            "tx_buy_count": {
                              "type": "integer",
                              "description": "Number of (wallet, transaction) pairs with a buy leg. A bundled transaction touching N wallets counts N times, so this is not a distinct transaction count."
                            },
                            "tx_sell_count": {
                              "type": "integer",
                              "description": "Number of (wallet, transaction) pairs with a sell leg. A bundled transaction touching N wallets counts N times, so this is not a distinct transaction count."
                            }
                          }
                        }
                      },
                      "sniper": {
                        "type": "array",
                        "description": "Time series of buckets, ordered by time ascending. Buckets with no activity are omitted.",
                        "items": {
                          "type": "object",
                          "description": "One time bucket of trading activity for a wallet group. Volumes are leg-based and gross: a transaction that both buys and sells counts on both sides, with no netting.",
                          "properties": {
                            "unix_time": {
                              "type": "integer",
                              "description": "Bucket open time as a unix timestamp in seconds."
                            },
                            "volume_buy": {
                              "type": "number",
                              "description": "Token amount bought by the group in this bucket."
                            },
                            "volume_sell": {
                              "type": "number",
                              "description": "Token amount sold by the group in this bucket."
                            },
                            "volume_buy_usd": {
                              "type": "number",
                              "description": "USD value of the buy volume in this bucket."
                            },
                            "volume_sell_usd": {
                              "type": "number",
                              "description": "USD value of the sell volume in this bucket."
                            },
                            "wallet_buy_count": {
                              "type": "integer",
                              "description": "Number of distinct wallets in the group with a buy leg in this bucket."
                            },
                            "wallet_sell_count": {
                              "type": "integer",
                              "description": "Number of distinct wallets in the group with a sell leg in this bucket."
                            },
                            "tx_buy_count": {
                              "type": "integer",
                              "description": "Number of (wallet, transaction) pairs with a buy leg. A bundled transaction touching N wallets counts N times, so this is not a distinct transaction count."
                            },
                            "tx_sell_count": {
                              "type": "integer",
                              "description": "Number of (wallet, transaction) pairs with a sell leg. A bundled transaction touching N wallets counts N times, so this is not a distinct transaction count."
                            }
                          }
                        }
                      },
                      "smart_trader": {
                        "type": "array",
                        "description": "Time series of buckets, ordered by time ascending. Buckets with no activity are omitted.",
                        "items": {
                          "type": "object",
                          "description": "One time bucket of trading activity for a wallet group. Volumes are leg-based and gross: a transaction that both buys and sells counts on both sides, with no netting.",
                          "properties": {
                            "unix_time": {
                              "type": "integer",
                              "description": "Bucket open time as a unix timestamp in seconds."
                            },
                            "volume_buy": {
                              "type": "number",
                              "description": "Token amount bought by the group in this bucket."
                            },
                            "volume_sell": {
                              "type": "number",
                              "description": "Token amount sold by the group in this bucket."
                            },
                            "volume_buy_usd": {
                              "type": "number",
                              "description": "USD value of the buy volume in this bucket."
                            },
                            "volume_sell_usd": {
                              "type": "number",
                              "description": "USD value of the sell volume in this bucket."
                            },
                            "wallet_buy_count": {
                              "type": "integer",
                              "description": "Number of distinct wallets in the group with a buy leg in this bucket."
                            },
                            "wallet_sell_count": {
                              "type": "integer",
                              "description": "Number of distinct wallets in the group with a sell leg in this bucket."
                            },
                            "tx_buy_count": {
                              "type": "integer",
                              "description": "Number of (wallet, transaction) pairs with a buy leg. A bundled transaction touching N wallets counts N times, so this is not a distinct transaction count."
                            },
                            "tx_sell_count": {
                              "type": "integer",
                              "description": "Number of (wallet, transaction) pairs with a sell leg. A bundled transaction touching N wallets counts N times, so this is not a distinct transaction count."
                            }
                          }
                        }
                      },
                      "kol": {
                        "type": "array",
                        "description": "Time series of buckets, ordered by time ascending. Buckets with no activity are omitted.",
                        "items": {
                          "type": "object",
                          "description": "One time bucket of trading activity for a wallet group. Volumes are leg-based and gross: a transaction that both buys and sells counts on both sides, with no netting.",
                          "properties": {
                            "unix_time": {
                              "type": "integer",
                              "description": "Bucket open time as a unix timestamp in seconds."
                            },
                            "volume_buy": {
                              "type": "number",
                              "description": "Token amount bought by the group in this bucket."
                            },
                            "volume_sell": {
                              "type": "number",
                              "description": "Token amount sold by the group in this bucket."
                            },
                            "volume_buy_usd": {
                              "type": "number",
                              "description": "USD value of the buy volume in this bucket."
                            },
                            "volume_sell_usd": {
                              "type": "number",
                              "description": "USD value of the sell volume in this bucket."
                            },
                            "wallet_buy_count": {
                              "type": "integer",
                              "description": "Number of distinct wallets in the group with a buy leg in this bucket."
                            },
                            "wallet_sell_count": {
                              "type": "integer",
                              "description": "Number of distinct wallets in the group with a sell leg in this bucket."
                            },
                            "tx_buy_count": {
                              "type": "integer",
                              "description": "Number of (wallet, transaction) pairs with a buy leg. A bundled transaction touching N wallets counts N times, so this is not a distinct transaction count."
                            },
                            "tx_sell_count": {
                              "type": "integer",
                              "description": "Number of (wallet, transaction) pairs with a sell leg. A bundled transaction touching N wallets counts N times, so this is not a distinct transaction count."
                            }
                          }
                        }
                      }
                    }
                  },
                  "tag_combinations": {
                    "type": "object",
                    "description": "One series per exact tag set, keyed by the tags joined with an underscore in the order dev, sniper, smart_trader, kol (for example `dev`, `dev_sniper`, `dev_sniper_smart_trader_kol`). DISJOINT: every wallet falls into exactly one key, so summing across keys yields the token total. Returned only when include_tag_combinations=true.",
                    "additionalProperties": {
                      "type": "array",
                      "description": "Time series of buckets, ordered by time ascending. Buckets with no activity are omitted.",
                      "items": {
                        "type": "object",
                        "description": "One time bucket of trading activity for a wallet group. Volumes are leg-based and gross: a transaction that both buys and sells counts on both sides, with no netting.",
                        "properties": {
                          "unix_time": {
                            "type": "integer",
                            "description": "Bucket open time as a unix timestamp in seconds."
                          },
                          "volume_buy": {
                            "type": "number",
                            "description": "Token amount bought by the group in this bucket."
                          },
                          "volume_sell": {
                            "type": "number",
                            "description": "Token amount sold by the group in this bucket."
                          },
                          "volume_buy_usd": {
                            "type": "number",
                            "description": "USD value of the buy volume in this bucket."
                          },
                          "volume_sell_usd": {
                            "type": "number",
                            "description": "USD value of the sell volume in this bucket."
                          },
                          "wallet_buy_count": {
                            "type": "integer",
                            "description": "Number of distinct wallets in the group with a buy leg in this bucket."
                          },
                          "wallet_sell_count": {
                            "type": "integer",
                            "description": "Number of distinct wallets in the group with a sell leg in this bucket."
                          },
                          "tx_buy_count": {
                            "type": "integer",
                            "description": "Number of (wallet, transaction) pairs with a buy leg. A bundled transaction touching N wallets counts N times, so this is not a distinct transaction count."
                          },
                          "tx_sell_count": {
                            "type": "integer",
                            "description": "Number of (wallet, transaction) pairs with a sell leg. A bundled transaction touching N wallets counts N times, so this is not a distinct transaction count."
                          }
                        }
                      }
                    }
                  },
                  "top_10_holder": {
                    "type": "array",
                    "description": "Single series for the token's top 10 holders. An independent dimension that overlaps with the tag blocks. Returned only when top_10_holder=true.",
                    "items": {
                      "type": "object",
                      "description": "One time bucket of trading activity for a wallet group. Volumes are leg-based and gross: a transaction that both buys and sells counts on both sides, with no netting.",
                      "properties": {
                        "unix_time": {
                          "type": "integer",
                          "description": "Bucket open time as a unix timestamp in seconds."
                        },
                        "volume_buy": {
                          "type": "number",
                          "description": "Token amount bought by the group in this bucket."
                        },
                        "volume_sell": {
                          "type": "number",
                          "description": "Token amount sold by the group in this bucket."
                        },
                        "volume_buy_usd": {
                          "type": "number",
                          "description": "USD value of the buy volume in this bucket."
                        },
                        "volume_sell_usd": {
                          "type": "number",
                          "description": "USD value of the sell volume in this bucket."
                        },
                        "wallet_buy_count": {
                          "type": "integer",
                          "description": "Number of distinct wallets in the group with a buy leg in this bucket."
                        },
                        "wallet_sell_count": {
                          "type": "integer",
                          "description": "Number of distinct wallets in the group with a sell leg in this bucket."
                        },
                        "tx_buy_count": {
                          "type": "integer",
                          "description": "Number of (wallet, transaction) pairs with a buy leg. A bundled transaction touching N wallets counts N times, so this is not a distinct transaction count."
                        },
                        "tx_sell_count": {
                          "type": "integer",
                          "description": "Number of (wallet, transaction) pairs with a sell leg. A bundled transaction touching N wallets counts N times, so this is not a distinct transaction count."
                        }
                      }
                    }
                  }
                }
              },
              "has_more": {
                "type": "boolean",
                "description": "Whether more buckets exist after the returned range."
              },
              "next_time_from": {
                "type": "integer",
                "description": "Pass back as time_from to fetch the next page. Present only when has_more is true. Echoed under the name matching the request: callers using the legacy from_time receive next_from_time instead."
              }
            }
          }
        }
      },
      "IdentitySingleResponse": {
        "type": "object",
        "required": [
          "success",
          "data"
        ],
        "properties": {
          "success": {
            "type": "boolean"
          },
          "data": {
            "type": "object",
            "properties": {
              "address": {
                "type": "string",
                "description": "The resolved wallet address."
              },
              "input_domain": {
                "type": "string",
                "description": "Present only when a .sol domain was passed as the input; the domain that resolved to this address."
              },
              "type": {
                "type": "string",
                "enum": [
                  "wallet",
                  "exchange",
                  "protocol",
                  "token",
                  "program",
                  "unknown"
                ],
                "description": "Identity class of the address. Drives how a client should render it. `unknown` means no identity is known."
              },
              "entity": {
                "type": "string",
                "description": "The named owner when known (e.g. Binance, Jupiter, Astralane). Absent for anonymous wallets."
              },
              "label": {
                "type": "string",
                "description": "Human-readable display name. For a wallet identified only by a .sol domain, this is its first (shortest) domain."
              },
              "category": {
                "type": "string",
                "description": "Broad grouping behind the type (e.g. Wallet, Exchange, Protocol, Token)."
              },
              "tags": {
                "type": "array",
                "items": {
                  "type": "string"
                },
                "description": "Extra descriptors attached to the identity (e.g. a KOL's name, deposit). Empty array when none apply."
              },
              "domains": {
                "type": "array",
                "items": {
                  "type": "string"
                },
                "description": "The .sol domains a wallet owns — a preview capped at 20, ordered shortest-first then alphabetical. Returned only for type=wallet; use the domains endpoint for the full list."
              },
              "domains_total": {
                "type": "integer",
                "description": "True number of .sol domains the wallet owns (the domains array above is a capped preview)."
              }
            }
          }
        }
      },
      "IdentityMultipleResponse": {
        "type": "object",
        "required": [
          "success",
          "data"
        ],
        "properties": {
          "success": {
            "type": "boolean"
          },
          "data": {
            "type": "object",
            "additionalProperties": {
              "type": "object",
              "properties": {
                "address": {
                  "type": "string",
                  "description": "The resolved wallet address."
                },
                "input_domain": {
                  "type": "string",
                  "description": "Present only when a .sol domain was passed as the input; the domain that resolved to this address."
                },
                "type": {
                  "type": "string",
                  "enum": [
                    "wallet",
                    "exchange",
                    "protocol",
                    "token",
                    "program",
                    "unknown"
                  ],
                  "description": "Identity class of the address. Drives how a client should render it. `unknown` means no identity is known."
                },
                "entity": {
                  "type": "string",
                  "description": "The named owner when known (e.g. Binance, Jupiter, Astralane). Absent for anonymous wallets."
                },
                "label": {
                  "type": "string",
                  "description": "Human-readable display name. For a wallet identified only by a .sol domain, this is its first (shortest) domain."
                },
                "category": {
                  "type": "string",
                  "description": "Broad grouping behind the type (e.g. Wallet, Exchange, Protocol, Token)."
                },
                "tags": {
                  "type": "array",
                  "items": {
                    "type": "string"
                  },
                  "description": "Extra descriptors attached to the identity (e.g. a KOL's name, deposit). Empty array when none apply."
                },
                "domains": {
                  "type": "array",
                  "items": {
                    "type": "string"
                  },
                  "description": "The .sol domains a wallet owns — a preview capped at 20, ordered shortest-first then alphabetical. Returned only for type=wallet; use the domains endpoint for the full list."
                },
                "domains_total": {
                  "type": "integer",
                  "description": "True number of .sol domains the wallet owns (the domains array above is a capped preview)."
                }
              }
            },
            "description": "Map keyed by address → identity. Addresses with no identity (type=unknown) are omitted."
          }
        }
      },
      "IdentityDomainsResponse": {
        "type": "object",
        "required": [
          "success",
          "data"
        ],
        "properties": {
          "success": {
            "type": "boolean"
          },
          "data": {
            "type": "object",
            "required": [
              "address",
              "total",
              "offset",
              "limit",
              "domains"
            ],
            "properties": {
              "address": {
                "type": "string",
                "description": "The wallet the domains belong to."
              },
              "total": {
                "type": "integer",
                "description": "True number of .sol domains the wallet owns across all pages."
              },
              "offset": {
                "type": "integer",
                "description": "The pagination offset echoed back from the request."
              },
              "limit": {
                "type": "integer",
                "description": "The page size echoed back from the request."
              },
              "domains": {
                "type": "array",
                "items": {
                  "type": "string"
                },
                "description": "The requested page of domain names, ordered shortest-first then alphabetical. Page 1 (offset=0) matches the domains preview from the single/multiple endpoints."
              }
            }
          }
        }
      },
      "TokenWalletTagsTrackerDetailsResponse": {
        "type": "object",
        "required": [
          "success",
          "data"
        ],
        "properties": {
          "success": {
            "type": "boolean",
            "description": "Whether the request succeeded."
          },
          "data": {
            "type": "object",
            "properties": {
              "token_address": {
                "type": "string",
                "description": "The token mint address the drilldown was computed for."
              },
              "time_frame": {
                "type": "string",
                "description": "The time frame each bucket covers, echoing the request.",
                "example": "1D"
              },
              "items": {
                "type": "array",
                "description": "Time buckets in the requested window, ordered by time ascending. Buckets with no activity are omitted; at most limit_bucket buckets are returned.",
                "items": {
                  "type": "object",
                  "description": "One time bucket with the wallets that traded in it.",
                  "properties": {
                    "unix_time": {
                      "type": "integer",
                      "description": "Bucket open time as a unix timestamp in seconds."
                    },
                    "wallets": {
                      "type": "array",
                      "description": "Wallets active in this bucket, ordered by USD volume descending, capped by limit_wallet.",
                      "items": {
                        "type": "object",
                        "description": "One tagged wallet's trading activity inside a single time bucket.",
                        "properties": {
                          "wallet": {
                            "type": "string",
                            "description": "Wallet address."
                          },
                          "volume_buy": {
                            "type": "number",
                            "description": "Token amount bought by the wallet in this bucket."
                          },
                          "volume_sell": {
                            "type": "number",
                            "description": "Token amount sold by the wallet in this bucket."
                          },
                          "volume_buy_usd": {
                            "type": "number",
                            "description": "USD value of the buy volume in this bucket."
                          },
                          "volume_sell_usd": {
                            "type": "number",
                            "description": "USD value of the sell volume in this bucket."
                          },
                          "tx_buy_count": {
                            "type": "integer",
                            "description": "Number of buy transactions by the wallet in this bucket."
                          },
                          "tx_sell_count": {
                            "type": "integer",
                            "description": "Number of sell transactions by the wallet in this bucket."
                          },
                          "tags": {
                            "type": "array",
                            "description": "Wallet tags for this token. Supported tags: `dev`, `sniper`, `smart_trader`, `kol`.",
                            "items": {
                              "type": "string",
                              "enum": [
                                "dev",
                                "sniper",
                                "smart_trader",
                                "kol"
                              ]
                            }
                          },
                          "is_top_10_holder": {
                            "type": "boolean",
                            "description": "True when the wallet is one of the token's top 10 holders. Present only when top_10_holder=true."
                          }
                        }
                      }
                    }
                  }
                }
              },
              "has_more": {
                "type": "boolean",
                "description": "Whether more buckets exist after the returned range."
              },
              "next_time_from": {
                "type": "integer",
                "description": "Pass back as time_from to fetch the next page. Present only when has_more is true."
              }
            }
          }
        }
      }
    }
  },
  "security": [
    {
      "apiKeyAuth": []
    }
  ],
  "x-extras": {
    "websocket": {
      "ohlcv": {
        "summary": "Price (Token/Pairs)",
        "description": "Receive real-time updates of candles for tokens or token pairs.",
        "operationId": "subscribe-price"
      },
      "txs": {
        "summary": "Transactions",
        "description": "Receive real-time updates of token transactions. ",
        "operationId": "subscribe_txs"
      },
      "base_quote_price": {
        "summary": "Base/Quote Price",
        "description": "Receive real-time updates of candles for any token pairs without needing to input a specific pair address.",
        "operationId": "subscribe_base_quote_price"
      },
      "token_new_listing": {
        "summary": "New Token Listings",
        "description": "Receive real-time updates of newly listed tokens.",
        "operationId": "subscribe_token_new_listing"
      },
      "new_pair": {
        "summary": "New Trading Pairs",
        "description": "Receive real-time updates of newly traded pairs.",
        "operationId": "subscribe_new_pair"
      },
      "large_trade_txs": {
        "summary": "Large Trade Transactions",
        "description": "Receive real-time updates for for large trade transactions exceeding a specified threshold.",
        "operationId": "subscribe_large_trade_txs"
      },
      "wallet_txs": {
        "summary": "Wallet Transactions",
        "description": "Receive real-time transaction updates for specific wallet addresses.",
        "operationId": "subscribe_wallet_txs"
      },
      "token_stats": {
        "summary": "Token Stats",
        "description": "Receive real-time updates on statistics of one or many tokens.",
        "operationId": "subscribe_token_stats"
      }
    },
    "ranks": [
      "/defi/token_overview",
      "/defi/multi_price",
      "/defi/historical_price_unix",
      "/defi/ohlcv",
      "/defi/ohlcv/base_quote",
      "/defi/v3/token/trade-data/multiple",
      "/defi/price",
      "/defi/token_security",
      "/defi/history_price",
      "/defi/v3/token/market-data",
      "/defi/token_creation_info",
      "/defi/v3/token/trade-data/single",
      "/defi/txs/token",
      "/defi/v3/token/holder",
      "/v1/wallet/token_list",
      "/defi/v2/markets",
      "/defi/token_trending",
      "/defi/tokenlist",
      "/defi/v3/token/market-data/multiple",
      "/defi/ohlcv/pair",
      "/defi/v3/liquidity/ohlc/pair",
      "/defi/v3/liquidity/ohlc/token",
      "/defi/v3/liquidity/history/token",
      "/defi/v3/liquidity/latest/token",
      "/defi/txs/pair",
      "/defi/price_volume/multi",
      "/defi/txs/token/seek_by_time",
      "/defi/v3/token/meta-data/single",
      "/v1/wallet/tx_list",
      "/defi/price_volume/single",
      "/defi/v3/search",
      "/defi/v3/pair/overview/single",
      "/defi/v3/token/meta-data/multiple",
      "/defi/v2/tokens/new_listing",
      "/defi/v3/token/txs",
      "/defi/v2/tokens/top_traders",
      "/defi/v3/token/list/scroll",
      "/v1/wallet/token_balance",
      "/defi/v3/token/list",
      "/defi/v3/pair/overview/multiple",
      "/trader/txs/seek_by_time",
      "/trader/gainers-losers",
      "/defi/v3/txs",
      "/defi/v3/token/mint-burn-txs",
      "/defi/txs/pair/seek_by_time",
      "/defi/networks",
      "/defi/v3/all-time/trades/multiple",
      "/defi/v3/all-time/trades/single",
      "/defi/v3/txs/latest-block",
      "/v1/wallet/list_supported_chain"
    ]
  },
  "x-samples-languages": [
    "shell",
    "python",
    "javascript",
    "go"
  ]
}
