Skip to content
GET /v1/markers

Registry of on-chain markers (tokenized assets)

Try it live

10 free calls per day — no sign-up, no API key. Goes through the oanor gateway.

Custom headers (optional)
api.oanor.com/provenance-api

It works. Grab an API key and use it in your project.

Get an API key

Code snippets

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_..."}
)

Example response

A real response from this endpoint, captured by the latest 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
…