GET
/
triggers
/
{id}
Get Trigger
curl --request GET \
  --url https://xbt-mainnet.gomaestro-api.org/v0/eventmanager/triggers/{id} \
  --header 'api-key: <api-key>'
{
  "data": {
    "id": "<string>",
    "name": "<string>",
    "chain": "bitcoin",
    "network": "mainnet",
    "type": "transaction",
    "webhook_url": "https://webhook.site/your-endpoint",
    "filters": [
      {
        "key": "sender",
        "operator": "=",
        "value": "<string>"
      }
    ],
    "status": "active",
    "event_count": "40",
    "confirmations": "5"
  }
}

Authorizations

api-key
string
header
required

Path Parameters

id
string
required

Response

200
application/json

Success

The response is of type object.