Aller au contenu
GET /v1/tokens-by-issuer

Smart tokens issued by an address

Essayez-le en direct

10 appels gratuits par jour — sans inscription, sans clé API. Passe par la passerelle oanor.

En-têtes personnalisés (facultatif)
api.oanor.com/coreum-api

Ça marche. Récupérez une clé API et utilisez-la dans votre projet.

Obtenez une clé API

Extraits de code

curl "https://api.oanor.com/coreum-api/v1/tokens-by-issuer" \
  -H "x-oanor-key: oanor_test_..."
await fetch("https://api.oanor.com/coreum-api/v1/tokens-by-issuer", {
  headers: { "x-oanor-key": "oanor_test_..." }
});
$ch = curl_init("https://api.oanor.com/coreum-api/v1/tokens-by-issuer");
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/coreum-api/v1/tokens-by-issuer",
    headers={"x-oanor-key": "oanor_test_..."}
)

Exemple de réponse

Une réponse réelle de ce endpoint, capturée lors du dernier contrôle de santé.

{
    "data": {
        "chain": "coreum-mainnet-1",
        "count": 1,
        "total": 1,
        "issuer": "core1hxmw2fe3unnsw8uq522l9t2cfwaqgddne8nlqq",
        "tokens": [
            {
                "uri": "https://www.instagram.com/magnetictoneofpurpose/",
                "admin": "core1hxmw2fe3unnsw8uq522l9t2cfwaqgddne8nlqq",
                "denom": "aloha22-core1hxmw2fe3unnsw8uq522l9t2cfwaqgddne8nlqq",
                "issuer": "core1hxmw2fe3unnsw8uq522l9t2cfwaqgddne8nlqq",
                "symbol": "Hoailona",
                "subunit": "aloha22",
                "version": 1,
                "features": [
                    "burning",
                    "ibc",
                    "dex_unified_ref_amount_change"
                ],
                "burn_rate": 0.001,
                "precision": 8,
                "description": "Ho'Ailona is a Native Hawai'ian (kama'aina) Owned Physical + Digital Specialty Boutique Featuring The Most Exclusive Limited Edition Hawai'ian Apparel and Art Collections.",
                "globally_frozen": false,
                "send_commission_rate": 0.001
            }
        ]
    },
    "meta": {
        "timestamp": "2026-06-15T02:10:18.759Z",
        "request_id": "9990d187-e5e3-488a-aacf-0b5f05f3cadc"
    },
    "status": "ok",
    "message": "Tokens by issuer retrieved successfully",
    "success": true
}