/v1/markers
Registry of on-chain markers (tokenized assets)
Pruébalo en vivo
10 llamadas gratis al día — sin registro, sin clave API. Pasa por el gateway de oanor.
Funciona. Consigue una clave API y úsala en tu proyecto.
Obtener una clave APIFragmentos de código
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_..."}
)
Respuesta de ejemplo
Una respuesta real de este endpoint, capturada en la última comprobación de estado.
{
"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
…