Skip to main content
GET
/
api
/
webhook-subscriptions
List Webhook Subscriptions
curl --request GET \
  --url https://auth.exchangeratesapi.com.au/api/webhook-subscriptions \
  --header 'Authorization: Bearer <token>'
{
  "success": true,
  "subscriptions": [
    {
      "id": "a1b2c3d4e5f6a7b8c9d0e1f2a3b4c5d6",
      "url": "https://hooks.example.com/rba",
      "currencies": [
        "USD",
        "JPY"
      ],
      "description": "Prod hook",
      "isActive": true,
      "failureCount": 0,
      "lastSuccessAt": "2026-06-23T07:00:20.000Z",
      "createdAt": "2026-06-20T01:00:00Z"
    }
  ],
  "limit": 3
}

Overview

Returns your subscriptions, including isActive and failureCount so you can spot a subscription that has been auto-deactivated after repeated delivery failures. The signing secret is never returned - it is shown only once at creation.
Authenticate with your API key - the same Authorization: Bearer YOUR_API_KEY you use for the rest of the API. You can also manage webhooks from your dashboard.

Authorizations

Authorization
string
header
required

API key authentication using Bearer token

Response

Subscriptions