Skip to main content
POST
/
api
/
zerion
/
fungibles
/zerion/fungibles
curl --request POST \
  --url https://api.anysite.io/api/zerion/fungibles \
  --header 'Content-Type: application/json' \
  --header 'access-token: <api-key>' \
  --data '
{
  "fungible_id": "<string>",
  "timeout": 300,
  "currency": "usd"
}
'
[
  {
    "id": "<string>",
    "@type": "ZerionFungible",
    "name": "<string>",
    "symbol": "<string>",
    "image": "<string>",
    "is_verified": true,
    "description": "<string>",
    "price": 123,
    "market_cap": 123,
    "fully_diluted_valuation": 123,
    "circulating_supply": 123,
    "total_supply": 123,
    "change_1d": 123,
    "change_30d": 123,
    "change_90d": 123,
    "change_365d": 123,
    "contracts": {}
  }
]

Authorizations

access-token
string
header
required

API token from the dashboard

Headers

access-token
string
required

Body

application/json
fungible_id
string
required

Zerion token id, as returned by the search endpoint

Minimum string length: 1
Examples:

"BTC-ee9702a0-c587-4c69-ac0c-ce820a50c95b"

"eth"

timeout
integer
default:300

Max scrapping execution timeout (in seconds)

Required range: 20 <= x <= 1500
currency
enum<string>
default:usd

Currency to denominate price and market data in

Available options:
usd,
eur,
gbp,
jpy,
aud,
cad,
chf,
cny,
inr,
krw,
rub,
brl,
try,
btc,
eth

Response

Successful Response

id
string
required
@type
string
default:ZerionFungible
name
string | null
symbol
string | null
image
string | null
is_verified
boolean | null
description
string | null
price
number | null
market_cap
number | null
fully_diluted_valuation
number | null
circulating_supply
number | null
total_supply
number | null
change_1d
number | null
change_30d
number | null
change_90d
number | null
change_365d
number | null
contracts
object