/v1/search
Search ASAs by name
Try it live
10 free calls per day — no sign-up, no API key. Goes through the oanor gateway.
It works. Grab an API key and use it in your project.
Get an API keyCode snippets
curl "https://api.oanor.com/algorandasa-api/v1/search" \ -H "x-oanor-key: oanor_test_..."
await fetch("https://api.oanor.com/algorandasa-api/v1/search", {
headers: { "x-oanor-key": "oanor_test_..." }
});
$ch = curl_init("https://api.oanor.com/algorandasa-api/v1/search");
curl_setopt($ch, CURLOPT_HTTPHEADER, ["x-oanor-key: oanor_test_..."]);
curl_setopt($ch, CURLOPT_RETURNTRANSFER, true);
$out = curl_exec($ch);
import requests
requests.get(
"https://api.oanor.com/algorandasa-api/v1/search",
headers={"x-oanor-key": "oanor_test_..."}
)
Example response
A real response from this endpoint, captured by the latest health check.
{
"data": {
"note": "Algorand Standard Assets whose name matches the query. Use /v1/asset with an id for full details. Note that anyone can create an ASA with any name, so verify the creator address for well-known tokens.",
"count": 20,
"query": "USDC",
"assets": [
{
"id": 31566704,
"name": "USDC",
"total": "18446744073709552000",
"creator": "2UEQTE5QDNXPI7M3TU44G6SYKLFWLPQO7EBZM7K7MHMQQMFI4QJPLHQFHM",
"decimals": 6,
"unit_name": "USDC"
},
{
"id": 359314135,
"name": "Tinyman Pool USDC-ALGO",
"total": "18446744073709552000",
"creator": "W3RTY34WM3WNAPESJX3NCHX6KP32O6V2RI5WNB3RBKKZE3RQAXYTLNUWCI",
"decimals": 6,
"unit_name": "TM1POOL"
},
{
"id": 359330978,
"name": "Tinyman Pool USDC-USDt",
"total": "18446744073709552000",
"creator": "527D3Q5UFOFDLQPF2ADXIHL4GSSBAKOR7ZAXPMDKWLT7L34SIIZEHCVXOU",
"decimals": 6,
"unit_name": "TM1POOL"
},
{
"id": 359363312,
"name": "Tinyman Pool SMILE-USDC",
"total": "18446744073709552000",
"creator": "A7TATMOKFGPEXRDRZIGISD7O3GXBNEM7D3KI32UXV2FHLKKSXRSCGB6YNI",
"decimals": 6,
"unit_name": "TM1POOL"
},
{
"id": 359376604,
"name": "Tinyman Pool XET-USDC",
"total": "18446744073709552000",
"creator": "PF4YI344AFMDUPNFQUJEOAZY5KNAXFFVUPTF7FSC4BS6U3TMLVLCTZ2JZA",
"decimals": 6,
"unit_name": "TM1POOL"
},
{
"id": 359380769,
"name": "Tinyman Pool YLDY-USDC",
"total": "18446744073709552000",
"creator": "RC7JNZWSFBRIEA5TXM24NW5ZRZOA3GZVEO562A54LPQI2ROOKEFIT3LRTA",
"decimals": 6,
"unit_name": "TM1POOL"
},
{
"id": 359395749,
"name": "Tinyman Pool GEMS-USDC",
"total": "18446744073709552000",
"creator": "G4UZX56J5BRVPMM7HMKMX4XFYG5EFOHW5R2TSGPHDD6KSVOWMFYM3YLXDE",
"decimals": 6,
"unit_name": "TM1POOL"
},
{
"id": 359399545,
"name": "Tinyman Pool Choice-USDC",
"total": "18446744073709552000",
"creator": "FRUG74S7Q3T5Y37GJAFQEFJCXXZ6K2PH4DRM67NL4HWZS5R4EPG6Z4H7KM",
"decimals": 6,
"unit_name": "TM1POOL"
},
{
"id": 359483182,
"name": "Tinyman Pool FAME-USDC",
"total": "18446744073709552000",
…