Skip to content

Check Deposit Status

GET /status/{address}

Server: https://bridge.openfish.fun (port 3004)

Tags: Bridge

Pass any of your chain-specific deposit addresses (EVM, Solana, or Bitcoin) to see whether incoming transactions have been detected, processed, and credited.


NameInTypeDescription
addresspathstringRequired. Deposit address (EVM, SVM, or BTC)

200 — A StatusResponse containing the transaction history for this deposit address.

{
"transactions": [
{
"fromChainId": "1",
"fromTokenAddress": "0xa0b8...",
"fromAmountBaseUnit": "1000000",
"toChainId": "137",
"toTokenAddress": "0x2791...",
"status": "COMPLETED",
"txHash": "0x123...",
"createdTimeMs": 1700000000000
}
]
}

Terminal window
curl "https://bridge.openfish.fun/status/0x23566f8b2E82aDfCf01846E54899d110e97AC053"