Getting information about cross-chain exchange
The method allows you to get information on a previously created cross-chain exchange
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
Request body for getting exchange data
idstringRequiredExample:
Swap ID
6bcc7475-e3f5-4251-bbc9-fe113cf82af5
Responses
200Success
application/json
post
POST /api-gateway/swaps/get HTTP/1.1
Host: ocp.onchainpay.io
Content-Type: application/json
Accept: */*
Content-Length: 45
{
"id": "6bcc7475-e3f5-4251-bbc9-fe113cf82af5"
}
200Success
{
"success": true,
"response": {
"id": "6bcc7475-e3f5-4251-bbc9-fe113cf82af5",
"clientId": "merchant_unique_id",
"addressFromId": "3632eaf6-402b-4479-9b3d-a54c9eba4c95",
"addressToId": "3dc3182e-315e-4f93-9fa2-848bc125805b",
"currencyFrom": "USDT",
"currencyTo": "USDC",
"networkFrom": "ethereum",
"networkTo": "tron",
"status": "PENDING",
"rejectMessage": "null",
"amountFrom": "200",
"amountTo": "200",
"price": "1",
"serviceBlockchainFeeSource": "ADVANCE",
"serviceBlockchainFee": "2",
"serviceBlockchainFeeUSD": "2",
"providerBlockchainFeeSource": "AMOUNT",
"providerBlockchainFee": "2",
"providerBlockchainFeeUSD": "2",
"serviceFeeSource": "ADVANCE",
"serviceFee": "2",
"serviceFeeUSD": "2",
"webhookUrl": "https://merchant.domain/webhooks/swap",
"createdAt": "2025-06-09T11:38:26.571Z"
}
}
Last updated