Quick Start Guide
1. Obtain an API Key
To get started with zkOrigoPlus:
- Visit zkorigoapi.com
- Select a pricing plan (Starter, Professional, or Enterprise)
- Complete checkout via Stripe
- Receive your API key via email (format: zk_live_...)
2. Make Your First Request
curl -X POST https://api.zkorigoapi.com/v1/chain/btc/validate \
-H "x-api-key: YOUR_API_KEY" \
-H "Content-Type: application/json" \
-d '{"address": "1A1zP1eP5QGefi2DMPTfTL5SLmv7DivfNa"}'
3. Check Your Usage
curl https://api.zkorigoapi.com/v1/usage \
-H "x-api-key: YOUR_API_KEY"
Sandbox vs Production
Sandbox Environment
- Endpoint: https://api.zkorigoapi.com/sandbox/*
- Authentication: None required
- Rate Limit: 30 requests/second per IP
- Purpose: Testing and evaluation
- Data: Real blockchain validation, no mock data
Production Environment
- Endpoint: https://api.zkorigoapi.com/v1/*
- Authentication: API key required (x-api-key header)
- Rate Limits: Based on plan tier (10-50 req/sec)
- Usage Quotas: 2,500 - 50,000 calls/month
Usage Limits Explained
Starter Plan
- 2,500 API calls per month
- 10 requests/second rate limit
- Resets on the 1st of each month
Professional Plan
- 10,000 API calls per month
- 25 requests/second rate limit
- Priority support
Enterprise Plan
- 50,000 API calls per month
- 50 requests/second rate limit
- Dedicated support channel
What Happens When I Hit My Limit?
When you exceed your monthly quota, the API returns:
HTTP 429 Too Many Requests
{
"error": "Monthly quota exceeded",
"quota": 2500,
"used": 2501
}
Upgrade your plan or wait until the next billing cycle.
Testing Guide
Test Blockchain Addresses
- Bitcoin: 1A1zP1eP5QGefi2DMPTfTL5SLmv7DivfNa (Genesis block)
- Ethereum: 0x742d35Cc6634C0532925a3b844Bc9e7595f0bEb
- Stellar: GDRXE2BQUC3AZNPVFSCEZ76NJ3WWL25FYFK6RGZGIEKWE4SOOHSUJUJ6
- XRPL: rN7n7otQDd6FczFgLdlqtyMVrn3HMfXEEK
Test AML Check
curl -X POST https://api.zkorigoapi.com/sandbox/aml-unified/check \
-H "Content-Type: application/json" \
-d '{
"address": "1A1zP1eP5QGefi2DMPTfTL5SLmv7DivfNa",
"chain": "btc"
}'
Frequently Asked Questions
Q: How do I rotate my API key?
Contact support at
admin@autodigitalcoin.com to request a key rotation. We will issue a new key and provide a grace period for migration.
Q: Does zkOrigoPlus store my transaction data?
No. zkOrigoPlus operates on a zero-data-retention architecture. No wallet addresses, transaction details, or compliance results are stored. See
Security Documentation.
Q: What blockchains are supported?
Bitcoin (BTC), Ethereum (ETH), Stellar (XLM), XRP Ledger (XRPL), Hedera (HBAR), and Polygon (MATIC).
Q: Can I use the sandbox for production?
No. The sandbox is for testing only. It has no authentication and is rate-limited per IP. Production workloads require an API key and paid plan.
Q: What is the API uptime SLA?
zkOrigoPlus is currently in Beta. No SLA guarantees are provided. See
System Status for real-time availability.
Q: How do I cancel my subscription?
Q: Is there a free tier?
Yes. The sandbox environment is free with 30 req/sec rate limit. No API key required.
← Back to Home