Creating a cross-chain translation
Last updated
Last updated
The method allows you to create a cross-chain transfer. Cross-chain transfer allows you to transfer your assets from one network to another
Public API-key
Signing the request body with a private API-key
Request content type
application/json
The body of the request to create a cross-chain transfer
Unique transaction identifier in the merchant system, to prevent duplication of creation
merchant_unique_id
Identifier of the outgoing address in the system, in the specified coin and network when creating the commission token. The specified amount will be debited from this address
c4179377-b199-455b-ab08-16c517bb3f1b
Identifier of the destination address in the system where the coins should be delivered
e8d2b5dd-c193-4c5f-bcc9-d4f1f9250d58
Commission Token
U2FsdGVkX19VvcCWnLRiHnRCJ/vLfvjsxJAV1dWMrbi7jWw0uLEgcELTnb+aKkDj78X1gjlsgQsC92FgpuzDsCH1bBS3/m3mq7Lp8pqSUBKm4VooESYf52+6xYCrCFiEYOYVrp1mtRZHqwdwORvT8HN1Vtcr/SoMoXeYdZ+1wk469t81wcoP/44Xbdd77N84HqSpeDumhTFUPfzFFnfKXvmqxLhiYQzrWFcd7tf6cqE=
URL address for operation status notification
https://merchant.domain/webhooks/bridge
POST /api-gateway/bridge/create HTTP/1.1
Host: app.apollopayment.io
Content-Type: application/json
Accept: */*
Content-Length: 446
{
"clientId": "merchant_unique_id",
"addressFromId": "c4179377-b199-455b-ab08-16c517bb3f1b",
"addressToId": "e8d2b5dd-c193-4c5f-bcc9-d4f1f9250d58",
"feeToken": "U2FsdGVkX19VvcCWnLRiHnRCJ/vLfvjsxJAV1dWMrbi7jWw0uLEgcELTnb+aKkDj78X1gjlsgQsC92FgpuzDsCH1bBS3/m3mq7Lp8pqSUBKm4VooESYf52+6xYCrCFiEYOYVrp1mtRZHqwdwORvT8HN1Vtcr/SoMoXeYdZ+1wk469t81wcoP/44Xbdd77N84HqSpeDumhTFUPfzFFnfKXvmqxLhiYQzrWFcd7tf6cqE=",
"webhookUrl": "https://merchant.domain/webhooks/bridge"
}
{
"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"
}
}