Skip to main content
GET
/
v0
/
prod-ips
ZBD IP Address
curl --request GET \
  --url https://api.zebedee.io/v0/prod-ips \
  --header 'apikey: <apikey>'
{
    "success": true,
    "data": {
        "ips": [
            "3.225.112.64"
        ]
    }
}

Documentation Index

Fetch the complete documentation index at: https://docs.zbdpay.com/llms.txt

Use this file to discover all available pages before exploring further.

Description

The ZBD API relies on callback URLs for keeping you informed about updates that occur to any Charges, Payments, or Withdrawals you’ve created. In order to ensure that any incoming callback message is indeed from a trusted ZBD API infrastructure server, we provide this API endpoint for you to know which IP addresses real requests come from.

Usage

The idea is to use this API endpoint to fetch the production IP addresses for ZBD servers, such that when you receive a callback about a payment having settled, you can check the originating IP address and confirm it indeed came from ZBD.
ZBD has a static set of IP addresses so, though possible, it is unlikely we will be changing these IPs often.

Configuration

Header Parameters

apikey
string
required
ZBD Project API Key
{
    "success": true,
    "data": {
        "ips": [
            "3.225.112.64"
        ]
    }
}