JustLend DAO Docs
JustLend DAOAuditWhat's New
  • GETTING STARTED
    • Overview
    • Concepts
      • Supply
      • Borrow
      • Withdraw
      • Repay
      • Liquidations
      • Risks
      • Staked TRX
      • Energy Rental
    • Whitepaper
    • FAQs
      • ​​Wallet Connection Questions
      • More Questions
  • GOVERNANCE
    • JIPs
    • Tokenomics
    • Community Forum
  • DEVELOPERS
    • Contracts Overview
    • Supply and Borrow Market
      • SBM
      • Interest Rate Model
      • Governance
      • Price Oracle
      • Comptroller
    • Staked TRX
    • Energy Rental
    • Deployed Contracts
    • APIs
      • Supply and Borrow Market
        • Get Supply and Borrow Market Information
        • Get Account Information
        • Get Market Mining APY Information
        • Get User Supply Mining Reward Information
        • Get User Supply Mining Reward Distributions
      • Staked TRX and Energy Rental Market
        • Get Staked TRX and Energy Rental Markets Information
        • Get User Data of sTRX Liquidity Staking
        • Get User Data of Resource Rent
  • Resources
    • Community
      • Links
      • Wallet Integration Cooperation
    • Risk Warning
    • Audits
      • Supply & Borrow
      • Staked TRX
    • Terms of Service
      • Terms of Service
      • Privacy Policy
Powered by GitBook
On this page
  1. DEVELOPERS
  2. APIs
  3. Supply and Borrow Market

Get User Supply Mining Reward Information

PreviousGet Market Mining APY InformationNextGet User Supply Mining Reward Distributions

Last updated 2 months ago

Get User Supply Mining Reward Information

get

Query to get user's the latest usdd mining reward information, which includes the current mining phase and its rewards, mining start time and end time. (To pass parameters to obtain specific information, please click 「Test」and fill in the address information in the Query parameters section)

Path parameters
addressstringOptional

Query of the user address.

Query parameters
addressstringOptional

Query of the user address.

Responses
200
Returns the user's supply mining reward information.
application/json
400
Bad Request
application/json
get
GET /mining/reward HTTP/1.1
Host: openapi.just.network
Accept: */*
{
  "code": 0,
  "data": {
    "TKFRELGGoRgiayhwJTNNLqCNjFoLBh3Mnf": {
      "currEndTime": "2025-05-18T11:45:42.721Z",
      "currPhase": 64,
      "currReward": 0,
      "currRewardStatus": 1,
      "currStartTime": "2025-05-18T11:45:42.721Z",
      "lastEndTime": "2025-05-18T11:45:42.721Z",
      "lastReward": 0,
      "lastRewardStatus": 2,
      "lastStartTime": "2025-05-18T11:45:42.721Z",
      "price": 1
    }
  },
  "message": "SUCCESS"
}