GET
/
tokens
/
default
Get hourly, daily and weekly price change for default listed tokens
curl --request GET \
  --url https://api.saucerswap.finance/tokens/default \
  --header 'x-api-key: <x-api-key>'
[
  {
    "id": "0.0.731861",
    "symbol": "SAUCE",
    "priceUsd": 0.0177,
    "liquidityUsd": 2880053.73,
    "priceChangeHour": 0.01,
    "priceChangeDay": 0.04,
    "priceChangeWeek": 0.11
  }
]
Hedera NetworkBase URL
Mainnethttps://api.saucerswap.finance
Testnethttps://test-api.saucerswap.finance
PreviewnetNot supported

Headers

x-api-key
string
default:875e1017-87b8-4b12-8301-6aa1f1aa073b
required

API key for authentication. The demo api key provided is globally rate limited. Do not use in production.

Response

200 - application/json

Successful response

id
string
required

Token id (shard.realm.num)

Example:

"0.0.731861"

symbol
string
required

Token symbol

Example:

"SAUCE"

priceUsd
number
required

Token price in USD

Example:

0.0177

liquidityUsd
number
required

Token liquidity in USD

Example:

2880053.73

priceChangeHour
number
required

Price change % for the past hour

Example:

0.01

priceChangeDay
number
required

Price change % for the past day

Example:

0.04

priceChangeWeek
number
required

Price change % for the past week

Example:

0.11