Skip to main content
POST
/
api
/
webhooks
/
bridge
/
{providerKey}
Receive provider webhook callback
curl --request POST \
  --url https://api.example.com/api/webhooks/bridge/{providerKey} \
  --header 'Content-Type: application/json' \
  --data '
{
  "orderId": "bridge_20260511_0001",
  "providerOrderId": "across_789",
  "status": "completed",
  "sourceTxHash": "0x123",
  "destinationTxHash": "0x456"
}
'
{
  "code": 0,
  "msg": "ok",
  "data": {
    "accepted": true
  }
}

Documentation Index

Fetch the complete documentation index at: https://docs.nexfi.robert.dpdns.org/llms.txt

Use this file to discover all available pages before exploring further.

Path Parameters

providerKey
string
required

Bridge provider identifier.

Example:

"across"

Body

application/json

Provider-native webhook payload passed through adapter verification flow.

Response

200 - application/json

Webhook acceptance response

Standard response envelope.

code
integer
required

Business status code. 0 means success.

Example:

0

msg
string
required

Human-readable response message.

Example:

"ok"

data
object

Webhook acceptance result.