Getting information about cross-chain transfer
Last updated
Last updated
The method allows you to get information on a previously created cross-chain transfer
Public API-key
Signing the request body with a private API-key
Request content type
application/json
Request body for getting cross-chain transfer data
Cross-chain transfer ID
fc49109f-f441-40f7-b2ea-db3e7049cd73
POST /api-gateway/bridge/get HTTP/1.1
Host: app.apollopayment.io
Content-Type: application/json
Accept: */*
Content-Length: 45
{
"id": "fc49109f-f441-40f7-b2ea-db3e7049cd73"
}
{
"success": true,
"response": {
"id": "fc49109f-f441-40f7-b2ea-db3e7049cd73",
"clientId": "merchant_unique_id",
"currency": "USDT",
"networkFrom": "ethereum",
"networkTo": "tron",
"status": "PENDING",
"rejectMessage": null,
"amount": "200",
"amountUSD": "200",
"blockchainFee": "2",
"blockchainFeeUSD": "2.12",
"serviceFeeUSD": "0.50",
"webhookUrl": "https://merchant.domain/webhooks/bridge",
"createdAt": "2025-06-09T13:18:29.430Z"
}
}