Get Transfer Matches
GET
/api/v1/unified/transfers
const url = 'https://api.qeychain.xyz/api/v1/unified/transfers';const options = {method: 'GET'};
try { const response = await fetch(url, options); const data = await response.json(); console.log(data);} catch (error) { console.error(error);}curl --request GET \ --url https://api.qeychain.xyz/api/v1/unified/transfersGet CEX↔chain transfer matches for review.
Returns auto-matched transfers (high confidence) and suggested matches (medium/low confidence) needing user confirmation.
Note: In the current implementation, matches are computed on-the-fly during sync. A future version will persist matches for review.
Responses
Section titled “Responses”Successful Response
Media typeapplication/json
Examplegenerated
example