/v1/markers
Registry of on-chain markers (tokenized assets)
Provalo dal vivo
10 chiamate gratuite al giorno — senza registrazione, senza chiave API. Passa dal gateway oanor.
Funziona. Prendi una chiave API e usala nel tuo progetto.
Ottieni una chiave APIFrammenti di codice
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_..."}
)
Risposta di esempio
Una risposta reale di questo endpoint, acquisita dall'ultimo health check.
{
"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
…