Merchant360 API

Examples & recipes

Every tool, working live in test mode — no signup needed. Nothing here charges a card. When you’re ready to build, grab a free test key and read the API reference.

Quickstart — your first charge in ~5 lines

No merchant account, no SDK. Grab a test key and charge a test card.

  1. 1
    Get a free test key

    Open the developer sandbox and copy your m360_test_… key.

  2. 2
    Charge a test card
    curl https://cygma.cloud/api/m360/v1/payments \
      -H "Authorization: Bearer m360_test_..." \
      -H "Content-Type: application/json" \
      -d '{ "amount": 1999,
            "card": { "number": "4242424242424242",
                      "exp_month": 12, "exp_year": 30, "cvv": "123" } }'

    Returns { "status": "succeeded", … }. Test mode: 4000 0000 0000 0002 declines, nothing is charged.

  3. 3
    Go further

    Add save_card: true to vault a reusable card_token, redirect to a hosted Checkout Session, or listen for webhooks. Full API reference.

Explore each tool

© 1998–2026 Electronic Payments, Inc. All demos run in test mode.