Examples

1. Basic example - Only mandatory request data fields

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"
}'

response:

{
    "visual_enrichments": {
        "merchant_clean_name": "Apple",
        "merchant_logo_link": "https://storage.googleapis.com/demozizy/1227.png",
        "merchant_category": "NOT_FOUND",
        "merchant_website": "www.apple.com",
        "google_places_id": "NOT_FOUND"
    },
    "merchant_location": {
        "enabled": false
    },
    "subscriptions": {
        "enabled": false
    },
    "co2_footprint": {
        "enabled": false
    }
}

2. Same example - with MCC

response:

3. Visual enrichments & subscription

response:

4. Visual enrichments with merchant location & co2 footprint

response:

Last updated