Funny Fun
  1. Token
Funny Fun
  • Overview
  • Token
    • Get tokens
      GET
    • Create token
      POST
    • Create token metadata
      POST
    • Get token holders
      GET
    • Get token
      GET
    • Token charts
      GET
    • Token holders
      GET
    • Token comments
      GET
    • Token comment likes
      POST
    • Token comments
      POST
    • Token favorites
      POST
    • Delete token favorites
      DELETE
  • Authentication
    • Check authentication status
      GET
    • Request nonce for authentication
      POST
  • Withdrawals
    • Get withdrawals
      GET
    • Create withdrawal
      POST
  • Users
    • Get user by address
      GET
    • Update user
      PUT
    • user preference
      PUT
  • Airdrop
    • Airdrop tasks
      GET
    • Airdrop claims
      POST
    • Airdrop leaderboard
      GET
  • Markets
    • Markets
      GET
    • Market buy price
      POST
    • Premarket buy amount
      POST
    • Market buy amount
      POST
    • Market sell price
      POST
    • Market sell amount
      POST
  • Deposits
    • Create deposit
    • list of deposit
  • Config
    GET
  • Blockchains
    GET
  • Orders
    POST
  • Accounts
    GET
  • Trades
    GET
  • Transactions
    GET
  1. Token

Token charts

GET
/token-charts
Token charts
Request Request Example
Shell
JavaScript
Java
Swift
curl --location --request GET 'https://api.nusabyte.com/api/v1/token-charts?tokenId&timeframe=1d&maxTime=1620000000&limit=3&page=1'
Response Response Example
[
    {
        "open": "1500.00",
        "high": "1550.00",
        "low": "1480.00",
        "close": "1520.00",
        "volume": "1000",
        "time": 1714305600,
        "timeframeDuration": 60
    }
]

Request

Query Params
tokenId
string 
optional
timeframe
enum<string> 
optional
Allowed values:
5m1h6m1d
Example:
1d
maxTime
string 
optional
In milliseconds (Date.now())
Example:
1620000000
limit
string 
optional
Example:
3
page
string 
optional
Example:
1

Responses

🟢200Success
application/json
Body
array of:
open
string 
optional
high
string 
optional
low
string 
optional
close
string 
optional
volume
string 
optional
time
integer 
optional
timeframeDuration
integer 
optional
Modified at 2025-04-28 07:52:10
Previous
Get token
Next
Token holders
Built with