Aller au contenu
GET /v1/markers

Registry of on-chain markers (tokenized assets)

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/provenance-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/provenance-api/v1/markers" \
  -H "x-oanor-key: oanor_test_..."
await fetch("https://api.oanor.com/provenance-api/v1/markers", {
  headers: { "x-oanor-key": "oanor_test_..." }
});
$ch = curl_init("https://api.oanor.com/provenance-api/v1/markers");
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/provenance-api/v1/markers",
    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": "pio-mainnet-1",
        "count": 20,
        "markers": [
            {
                "type": "RESTRICTED",
                "denom": "pm.securitization.contribution.6wi2sn3h1tusfhzsco70sy",
                "status": "ACTIVE",
                "supply": 1,
                "address": "pb1qqqymljjzmvqllqhu3yut5wug64pa4lsyncg6c",
                "manager": null,
                "supply_fixed": false,
                "required_attributes": [],
                "allow_forced_transfer": false,
                "allow_governance_control": true
            },
            {
                "type": "RESTRICTED",
                "denom": "pm.pool.asset.71v20ylsgiqgov0rwtgdtd",
                "status": "ACTIVE",
                "supply": 1,
                "address": "pb1qqqm9w7nc4sattkfwmsjpgtc4rrukg00m0p4xt",
                "manager": null,
                "supply_fixed": false,
                "required_attributes": [],
                "allow_forced_transfer": false,
                "allow_governance_control": true
            },
            {
                "type": "RESTRICTED",
                "denom": "pm.securitization.contribution.359upvwllo0kochlvxjkcv",
                "status": "ACTIVE",
                "supply": 1,
                "address": "pb1qqpdcxw0rtcrrylu89krj8jmmmvcegcz57aa7e",
                "manager": null,
                "supply_fixed": false,
                "required_attributes": [],
                "allow_forced_transfer": false,
                "allow_governance_control": true
            },
            {
                "type": "RESTRICTED",
                "denom": "pm.securitization.contribution.5hze8ow8hwe5uosoexmx5c",
                "status": "ACTIVE",
                "supply": 1,
                "address": "pb1qqpj6dvpj8djcjvwd58tn54wlrjfcxwg656ejz",
                "manager": null,
                "supply_fixed": false,
                "required_attributes": [],
                "allow_forced_transfer": false,
                "allow_governance_control": true
            },
            {
                "type": "RESTRICTED",
                "denom": "pm.securitization.contribution.6as4h6rcwtmvruwwanw2xu",
                "status": "ACTIVE",
                "supply": 1,
                "address": "pb1qqzqsc94xxsl0ncj07mh93swh2cc847jp0d862",
                "manager": null,
                "supply_fixed": false,
                "required_attributes": [],
                "allow_forced_transfer": false,
                "allow_governance_control": true
            },
            {
                "type": "RESTRICTED",
                "denom": "pm.sale.pool.4bv3h46a83glbjtdg2r0oa",
                "status": "ACTIVE",
                "supply": 1,
                "address": "pb1qqzwl5qglsd2gxw9tg5l8zv44l2sca8g3ayl09",
                "manager": null,
                "supply_fixed": false,
                "required_attributes": [],
                "allow_forced_transfer": false,
                "al
…