curl --request GET \
--url https://xbt-mainnet.gomaestro-api.org/v0/eventmanager/triggers \
--header 'api-key: <api-key>'{
"data": [
{
"id": "<string>",
"name": "<string>",
"chain": "bitcoin",
"network": "mainnet",
"type": "transaction",
"webhook_url": "<string>",
"filters": [
{
"key": "sender",
"operator": "=",
"value": "<string>"
}
],
"status": "active",
"event_count": 123,
"confirmations": 123
}
]
}List all active event triggers configured for your account, with details about filters, webhooks, and trigger status.
curl --request GET \
--url https://xbt-mainnet.gomaestro-api.org/v0/eventmanager/triggers \
--header 'api-key: <api-key>'{
"data": [
{
"id": "<string>",
"name": "<string>",
"chain": "bitcoin",
"network": "mainnet",
"type": "transaction",
"webhook_url": "<string>",
"filters": [
{
"key": "sender",
"operator": "=",
"value": "<string>"
}
],
"status": "active",
"event_count": 123,
"confirmations": 123
}
]
}Success
Show child attributes
Blockchain to listen on (bitcoin)
bitcoin Network environment to listen on (mainnet)
mainnet, testnet Trigger type, e.g., transaction
transaction Webhook URL to receive events
Show child attributes
Condition to match on: sender, receiver, sender_or_receiver (addresses), transaction_id, total_input_volume, fee, size, weight
sender, receiver, sender_or_receiver, transaction_id, total_input_volume, fee, size, weight Condition operation: =, >, >=, <, <=. Fields like receiver and transaction_id can only be exact (=)
=, >, >=, <, <= Status of the trigger, either active or inactive
active, paused Number of events triggered by this trigger
Number of confirmations required for the transaction to be matched by this trigger
Was this page helpful?