Skip to main content
Myaza API

What is Myaza?

Myaza provides a production-grade blockchain infrastructure API that lets businesses:
  • Accept crypto payments across Ethereum, Solana, Polygon, TRON, Stellar, and more
  • Generate and manage wallets without handling key infrastructure yourself
  • Bridge assets cross-chain via Wormhole
  • Stake tokens and earn yield programmatically
  • Monitor addresses and receive real-time webhook notifications
  • Run POS sessions for in-person or online crypto payment flows

Base URLs

EnvironmentURL
Sandboxhttps://myaza-blockchain-core.onrender.com/api/v1
Productionhttps://secureapi.gridlog.io/api/v1
Use the Sandbox environment for development and testing. Switch to Production when you are ready to go live.

Authentication

The Myaza API supports two authentication methods:

API Key

Use X-API-Key header for server-to-server calls. Best for production integrations.

JWT Bearer Token

Use Authorization: Bearer <token> for user-facing flows.

Quick Start

1

Get your API key

Sign in to the Myaza Dashboard and generate an API key under Settings → API Keys.
2

Make your first request

Generate a wallet to verify everything is working:
curl -X POST https://myaza-blockchain-core.onrender.com/api/v1/crypto/wallets/generate \
  -H "X-API-Key: YOUR_API_KEY" \
  -H "Content-Type: application/json" \
  -d '{"chain": "polygon"}'
3

Set up webhooks

Configure a webhook URL in your dashboard to start receiving real-time transaction notifications.

SDK Support

Native SDKs are coming soon. In the meantime, the REST API works with any HTTP client. See the Quickstart for code examples in Node.js, Python, and cURL.

Need Help?