INKG checking…

The sovereign engines, as APIs.

Post-quantum signing & verification, on-chain attestation, mining stats and FX — the real motors of the INKG empire, exposed as metered APIs with a key.

Pay per use in WUSD · quantum-safe · zero third parties · runs on our own nodes.

Get your API key →
7Live APIs
ML-DSA-65Signature algo
Attested contracts
Active miners

Live APIs — every backend verified running

POST /api/v1/pqc/keypair · /sign · /verify

Quantum-Safe Signatures ML-DSA-65

Generate keypairs, sign and verify with NIST FIPS-204 CRYSTALS-Dilithium. Signatures that survive Shor's algorithm — signing as a service.

GET /api/v1/pqc/contracts/verify · /stats

Quantum Attestation on-chain

Verify the post-quantum attestation of any sovereign EVM contract by symbol or address. Proves authentic bytecode, catches tampering.

GET /api/v1/pqc/keypair

Key Encapsulation ML-KEM-768

ML-KEM-768 (CRYSTALS-Kyber) primitives for quantum-safe key exchange, backed by the same FIPS-203 sovereign service.

GET /api/v1/mining/stats

Mining Stats

Public aggregate network data: total tokens mined, blocks, active miners, 24h throughput. Aggregate only — no private data.

GET /api/v1/fx/tokens

FX & Token Rates

Live sovereign token catalog and USD rates (WMP, WUSD, IGCG…) for quoting and conversion in your app.

GET /api/v1/usage

Usage & Metering

Every authenticated call is metered per key, per endpoint, per month. Check your quota and consumption any time.

Get your API key

Enter your sovereign wallet address (or email) to mint a Free key — 100 calls/month, instantly. Upgrade to Pro or Enterprise below to raise your limits.

🔐 Your API key (store it safely — used as X-API-Key header):

Pricing — pay in WUSD, sovereign coins, 1% burn

Free

$0
  • 100 calls / month
  • All live APIs
  • PQC sign / verify / attestation
  • Mining + FX data
  • Metered usage panel
Get free key
No card. Just a wallet.

Pro

$49/mo
  • 50,000 calls / month
  • Priority routing
  • All quantum-safe APIs
  • Batch signing throughput
  • Email support
Paid in WUSD (1:1 USD) · 1% burn

Enterprise

$499/mo
  • Unlimited calls
  • Dedicated quota & SLA
  • On-prem sovereign deploy option
  • Custom endpoints
  • Priority engineering
Paid in WUSD · sovereign settlement

Sign in with your sovereign wallet to pay. Upgrades apply to the key registered under your wallet.

Docs — real curl examples

1 · Mint a key

curl -s -X POST https://futurebdetbank.com/api/v1/keys/issue \
  -H 'Content-Type: application/json' \
  -d '{"owner":"0xYourWallet"}'

2 · Quantum-safe sign

KP=$(curl -s -X POST https://futurebdetbank.com/api/v1/pqc/keypair \
  -H "X-API-Key: $KEY" -d '{}')
# use its secretKey to sign:
curl -s -X POST https://futurebdetbank.com/api/v1/pqc/sign \
  -H "X-API-Key: $KEY" -H 'Content-Type: application/json' \
  -d '{"secretKey":"...","message":"hello"}'

3 · Verify attestation

curl -s -H "X-API-Key: $KEY" \
  "https://futurebdetbank.com/api/v1/pqc/contracts/verify?symbol=YAYA"

4 · Mining stats

curl -s -H "X-API-Key: $KEY" \
  https://futurebdetbank.com/api/v1/mining/stats

5 · FX / token rates

curl -s -H "X-API-Key: $KEY" \
  https://futurebdetbank.com/api/v1/fx/tokens

6 · Check your usage

curl -s -H "X-API-Key: $KEY" \
  https://futurebdetbank.com/api/v1/usage

Every call requires the X-API-Key header. Over your monthly quota → HTTP 429. Revoked/expired → HTTP 403.