GET
/
tokens
/
known
Get default listed token data
curl --request GET \
  --url https://api.saucerswap.finance/tokens/known \
  --header 'x-api-key: <x-api-key>'
[
  {
    "id": "0.0.731861",
    "name": "SAUCE",
    "symbol": "SAUCE",
    "icon": "/images/tokens/sauce.svg",
    "decimals": 6,
    "price": "36806544",
    "priceUsd": 0.01763457,
    "dueDiligenceComplete": true,
    "isFeeOnTransferToken": false,
    "description": "SaucerSwap is an open source and non-custodial AMM protocol native to Hedera.",
    "website": "https://www.saucerswap.finance/",
    "sentinelReport": "https://sentinel.headstarter.org/details/saucerswap",
    "twitterHandle": "SaucerSwapLabs"
  }
]
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"

name
string
required

Token name

Example:

"SAUCE"

symbol
string
required

Token symbol

Example:

"SAUCE"

icon
string
required

Relative path to the token icon

Example:

"/images/tokens/sauce.svg"

decimals
integer
required

Token decimal places

Example:

6

price
string
required

Token price in tinybar

Example:

"36806544"

priceUsd
number
required

Token price in terms of USD

Example:

0.01763457

dueDiligenceComplete
boolean
required

Token due diligence completed?

Example:

true

isFeeOnTransferToken
boolean
required

Token has fees on transfer?

Example:

false

description
string
required

Token description

Example:

"SaucerSwap is an open source and non-custodial AMM protocol native to Hedera."

website
string
required

Token website link

Example:

"https://www.saucerswap.finance/"

sentinelReport
string
required

Token sentinel report link

Example:

"https://sentinel.headstarter.org/details/saucerswap"

twitterHandle
string
required

Token sentinel report link

Example:

"SaucerSwapLabs"