Zizy API Documentation
  • 👋Welcome!
  • Get started
  • 📖API
    • POST "/transaction"
    • Examples
  • ⁉️FAQ
Powered by GitBook
On this page
  • Get your API keys
  • Make your first request

Get started

Get your API keys

Your API requests are authenticated using API keys. Any request that doesn't include an API key will return an error.

You can get a new API key from our team at any time. Contact us.

Make your first request

To make your first request, send an authenticated request to the transaction endpoint.

Take a look at how you might call this method via curl:

curl --location --request POST 'https://api.zizy.io/transaction' \
--header 'x-api-key: YOUR_API_KEY' \
--header 'Content-Type: application/json' \
--data-raw '{
    "merchant_name": "APPLE.COM/BILL",
    "transaction_type": "CARD_TRANSACTION",
    "transaction_id": "3214314312",
    "merchant_category_code": "5735"
}'
PreviousWelcome!NextPOST "/transaction"

Last updated 2 years ago