curl --request POST \
--url https://api.relay.link/transactions/deposit-address/reindex \
--header 'Content-Type: application/json' \
--data '
{
"chainId": 123,
"depositAddress": "<string>"
}
'const options = {
method: 'POST',
headers: {'Content-Type': 'application/json'},
body: JSON.stringify({chainId: 123, depositAddress: '<string>'})
};
fetch('https://api.relay.link/transactions/deposit-address/reindex', options)
.then(res => res.json())
.then(res => console.log(res))
.catch(err => console.error(err));import requests
url = "https://api.relay.link/transactions/deposit-address/reindex"
payload = {
"chainId": 123,
"depositAddress": "<string>"
}
headers = {"Content-Type": "application/json"}
response = requests.post(url, json=payload, headers=headers)
print(response.text){
"message": "<string>",
"triggeredCurrencies": [
{
"currency": "<string>",
"symbol": "<string>",
"balance": "<string>"
}
],
"checkedCurrencies": 123,
"failedCurrencies": 123
}{
"message": "<string>"
}{
"message": "<string>"
}{
"message": "<string>"
}{
"message": "<string>"
}{
"message": "<string>"
}Deposit Address Reindex
Reindex transactions for a deposit address
curl --request POST \
--url https://api.relay.link/transactions/deposit-address/reindex \
--header 'Content-Type: application/json' \
--data '
{
"chainId": 123,
"depositAddress": "<string>"
}
'const options = {
method: 'POST',
headers: {'Content-Type': 'application/json'},
body: JSON.stringify({chainId: 123, depositAddress: '<string>'})
};
fetch('https://api.relay.link/transactions/deposit-address/reindex', options)
.then(res => res.json())
.then(res => console.log(res))
.catch(err => console.error(err));import requests
url = "https://api.relay.link/transactions/deposit-address/reindex"
payload = {
"chainId": 123,
"depositAddress": "<string>"
}
headers = {"Content-Type": "application/json"}
response = requests.post(url, json=payload, headers=headers)
print(response.text){
"message": "<string>",
"triggeredCurrencies": [
{
"currency": "<string>",
"symbol": "<string>",
"balance": "<string>"
}
],
"checkedCurrencies": 123,
"failedCurrencies": 123
}{
"message": "<string>"
}{
"message": "<string>"
}{
"message": "<string>"
}{
"message": "<string>"
}{
"message": "<string>"
}Headers
Optional API key for authentication and higher rate limits.
Body
Chain ID the deposit address was originally registered on.
The deposit address to reindex.
Deprecated. No longer supported on this endpoint.
Chain ID to reindex on, when different from chainId. Use this if funds landed on a chain other than the one the deposit address was registered on. Defaults to chainId.
Address of a specific currency to reindex. Defaults to checking every depositable currency on the chain.
Response
Default Response
Human-readable summary of the reindex outcome.
Currencies for which a withdrawal was queued.
Show child attributes
Show child attributes
Total number of currencies whose balance was checked.
Number of currencies whose balance check failed.
Was this page helpful?