Creating a cross-chain translation
The method allows you to create a cross-chain transfer. Cross-chain transfer allows you to transfer your assets from one network to another
Header parameters
x-api-public-keystringOptional
Public API-key
x-api-signaturestringOptional
Signing the request body with a private API-key
Content-typestringOptionalExample:
Request content type
application/json
Body
The body of the request to create a cross-chain transfer
clientIdstringOptionalExample:
Unique transaction identifier in the merchant system, to prevent duplication of creation
merchant_unique_id
addressFromIdstringRequiredExample:
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
addressToIdstringRequiredExample:
Identifier of the destination address in the system where the coins should be delivered
e8d2b5dd-c193-4c5f-bcc9-d4f1f9250d58
feeTokenstringRequiredExample:
Commission Token
U2FsdGVkX19VvcCWnLRiHnRCJ/vLfvjsxJAV1dWMrbi7jWw0uLEgcELTnb+aKkDj78X1gjlsgQsC92FgpuzDsCH1bBS3/m3mq7Lp8pqSUBKm4VooESYf52+6xYCrCFiEYOYVrp1mtRZHqwdwORvT8HN1Vtcr/SoMoXeYdZ+1wk469t81wcoP/44Xbdd77N84HqSpeDumhTFUPfzFFnfKXvmqxLhiYQzrWFcd7tf6cqE=
webhookUrlstringOptionalExample:
URL address for operation status notification
https://merchant.domain/webhooks/bridge
Responses
200Success
application/json
post
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"
}
200Success
{
"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"
}
}
Last updated