Skip to main content
This guide walks you from “I just got credentials” to “I just received a successful transaction response.”

1. Get your credentials

After signing up at pontisglobe.com and completing KYC, open Developer Tools to find:
Treat all three secrets like passwords. They give full access to your account. If a value leaks, use Regenerate All Credentials immediately.

2. Set up the request helper

Each call does three things: encrypt the body with AES-256-GCM, sign timestamp + "." + encrypted_body with HMAC-SHA256, then POST. Pick your language — the snippet below is a self-contained helper you can drop in and call from anywhere in your code.

3. Log in

Response:

4. Send a transaction

Response:

5. Get the status

Response:

What to do next