For AI agents: a documentation index is available at the root level at /llms.txt and /llms-full.txt. Append /llms.txt to any URL for a page-level index, or .md for the markdown version of any page.
    • Home
    • API Basics
  • Products
    • Global Fiat Payouts
    • On-Ramps and Off-Ramps
  • Integration Guides
    • Global payouts integration guide
    • Country-specific details
  • API Reference
      • GETList Webhook Subscriptions
      • POSTCreate a Webhook Subscription
      • GETGet a Webhook Subscription
      • DELDelete a Webhook Subscription
LogoLogo
API ReferenceWebhooks

List Webhook Subscriptions

GET
https://api.latitude.xyz/v1/webhook_subscriptions
GET
/v1/webhook_subscriptions
$curl https://api.latitude.xyz/v1/webhook_subscriptions \
> -H "Content-Type: application/json"
200Retrieved
1[
2 {
3 "id": "whsub_9f8b7c6d5e4a3b2c1d0e",
4 "url": "https://webhooks.example.com/latitude/events",
5 "event_types": [
6 "transfer.created",
7 "transfer.completed",
8 "conversion.completed"
9 ],
10 "is_active": true,
11 "created_at": "2024-01-15T09:30:00Z",
12 "updated_at": "2024-04-10T14:45:00Z"
13 }
14]
Returns all webhook subscriptions for the customer
Was this page helpful?
Previous

Create a Webhook Subscription

Next
Built with

Response

List Webhook Subscriptions
idstring
Unique public identifier for the webhook subscription
urlstring
URL where webhook events are delivered
event_typeslist of enums
Event types this subscription receives
is_activeboolean
Whether the subscription is active
created_atstringformat: "date-time"
ISO 8601 timestamp when the subscription was created
updated_atstringformat: "date-time"
ISO 8601 timestamp when the subscription was last updated