Delete a webhook subscription
Delete one of the caller's subscriptions by id. Returns 204 on success, 404 if the id is not one of the caller's subscriptions.
Authorization
bearerAuth API key for authentication.
In: header
Path Parameters
Response Body
application/json
application/json
curl -X DELETE "https://api.staging.across.to/v1/webhooks/subscriptions/whsub_1a2b3c4d5e6f7a8b9c0d1e2f3a4b5c6d"{
"error": "UnauthorizedError",
"message": "A valid Authorization: Bearer <apiKey> header is required."
}{
"error": "NotFoundError",
"message": "Subscription not found."
}List webhook subscriptions GET
List the webhook subscriptions owned by the caller's API key, oldest first. The raw signing secret is never included — only its `secretHash`.
Get all details for a single deposit GET
Returns a single deposit matching the provided query parameters. Searches across all deposit types: Across intents (V3FundsDeposited), CCTP (DepositForBurn), OFT (OFTSent). At least one of the following parameter combinations is required: 1. `depositTxnRef` 2. `depositId` AND `originChainId` 3. `relayDataHash` 4. `sweepTxnRef` Supply one selector per request (`depositId` + `originChainId` count as one). If a lookup can identify multiple transfers — for example a sweep transaction that executed several deposit-address transfers — use `/deposits` instead.