API Documentation v1.0.0

Dokumentasi API

Integrasikan pembayaran QRIS otomatis ke dalam aplikasi Anda hanya dengan beberapa baris kode. Cepat, aman, dan tanpa biaya per transaksi.

1

Ambil API Key

Daftar dan dapatkan kunci unik di menu Pengaturan.

2

Setup BaseQR

Input QRIS statis Gopay Merchant Anda di dashboard.

3

Panggil API

Gunakan endpoint di bawah untuk membuat transaksi.

Base Endpoint

https://api.gomerchant.web.id

Authentication

apikey (Body JSON)

API Reference

Mengambil informasi profil, paket langganan, dan sisa kuota harian Anda.

Parameters

KeyTypeDescription
apikeyRequiredstringAPI Key unik Anda.
Example cURL
curl -X POST https://api.gomerchant.web.id/profile \
  -H "Content-Type: application/json" \
  -d '{
    "apikey": "GO_your_api_key_here"
  }'
Request Body
{
    "apikey": "GO_your_api_key_here"
}
Response Preview
{
    "status": "Success",
    "data": {
        "name": "John Doe",
        "email": "user@example.com",
        "role": "USER",
        "plan": "Starter Plan",
        "usage": 5,
        "limit": 100
    }
}