// API_DOCUMENTATION_ACTIVE_
Fiduciary Data API
Welcome to the institutional endpoint. Use the following specifications to construct your requests, authenticate your connection, and integrate fiduciary-grade asset intelligence directly into your infrastructure.
Instant Data Preview (ETH)
Test your integration immediately using our open Ethereum sandbox. No API key required for this specific endpoint. Use this to verify your JSON parsing logic against our live data structure.
// READY_FOR_PRODUCTION_DEPLOYMENT?
Unlock the full Institutional Cap Index™ and integrate the Fiduciary Compliance Wrap™ into your live environment.
[ SECURE TIER 1 API KEY ]Authentication Protocol
All requests require your private institutional key to be passed securely in the HTTP header. Unauthorized requests will be rejected at the server level.
X-API-KEY: [YOUR_PRIVATE_KEY]
Endpoint & Parameters
Construct your GET request using the base endpoint, appending the required asset ticker directly to the URL path.
REQUIRED PATH VARIABLE:
{symbol} (string) - The ticker of the asset (e.g., BTC, ETH, SOL)
Standard JSON Response
A successful query returns a structured JSON payload containing the most recent Asset Dossier intelligence.
The Developer Sandbox
Embed the Ontological Standard directly into your existing ERP, Treasury Management System, or custom application. The Fiduciary Compliance Wrap API is RESTful, deterministic, and responds with a strictly typed JSON payload.
AUTHENTICATION REQUIRED: Pass your active License Key in the header of every request using Mepr-Api-Key.
// Base URL: https://www.mrblockchainman.com/wp-json/fiduciary/v1/wrap/{symbol}
curl --location 'https://www.mrblockchainman.com/wp-json/fiduciary/v1/wrap/BTC' \
--header 'Mepr-Api-Key: YOUR_LICENSE_KEY_HERE'
import requests
url = "https://www.mrblockchainman.com/wp-json/fiduciary/v1/wrap/ETH"
headers = {
"Mepr-Api-Key": "YOUR_LICENSE_KEY_HERE"
}
# Request the Fiduciary Payload
response = requests.get(url, headers=headers)
payload = response.json()
print(f"Status Code: {response.status_code}")
print(f"Fiduciary Grade: {payload['data']['fiduciary_grade']}")
$curl = curl_init();
curl_setopt_array($curl, array(
CURLOPT_URL => 'https://www.mrblockchainman.com/wp-json/fiduciary/v1/wrap/SOL',
CURLOPT_RETURNTRANSFER => true,
CURLOPT_HTTPHEADER => array(
'Mepr-Api-Key: YOUR_LICENSE_KEY_HERE'
),
));
$response = curl_exec($curl);
curl_close($curl);
echo $response;
// SYSTEM: DAC_GENESIS_BLOCK_
Initialize Charter Download
Provide your institutional credentials to dispatch the DAC Charter v1.0 to your secure inbox.