Skip to main content
POST
/
api
/
zerion
/
fungibles
/
search
/zerion/fungibles/search
curl --request POST \
  --url https://api.anysite.io/api/zerion/fungibles/search \
  --header 'Content-Type: application/json' \
  --header 'access-token: <api-key>' \
  --data '
{
  "keyword": "<string>",
  "count": 2,
  "timeout": 300,
  "currency": "usd"
}
'
[
  {
    "id": "<string>",
    "@type": "ZerionSearchFungible",
    "name": "<string>",
    "symbol": "<string>",
    "image": "<string>",
    "contracts": {}
  }
]

Authorizations

access-token
string
header
required

API token from the dashboard

Headers

access-token
string
required

Body

application/json
keyword
string
required

Token name, symbol or contract address to search for

Minimum string length: 1
count
integer
required

Max number of tokens to return

Required range: x >= 1
timeout
integer
default:300

Max scrapping execution timeout (in seconds)

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

Currency context for the search

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:ZerionSearchFungible
name
string | null
symbol
string | null
image
string | null
contracts
object