Skip to main content
POST
/
transactions
/
deposit-address
/
reindex
cURL
curl --request POST \
  --url https://api.relay.link/transactions/deposit-address/reindex \
  --header 'Content-Type: application/json' \
  --data '
{
  "chainId": 123,
  "depositAddress": "<string>"
}
'
{
  "message": "<string>",
  "triggeredCurrencies": [
    {
      "currency": "<string>",
      "symbol": "<string>",
      "balance": "<string>"
    }
  ],
  "checkedCurrencies": 123,
  "failedCurrencies": 123
}

Documentation Index

Fetch the complete documentation index at: https://docs.relay.link/llms.txt

Use this file to discover all available pages before exploring further.

What are deposit addresses?

Body

application/json
chainId
number
required

Chain ID the deposit address was originally registered on.

depositAddress
string
required

The deposit address to reindex.

sweep
boolean

Deprecated. No longer supported on this endpoint.

targetChainId
number

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.

currency
string

Address of a specific currency to reindex. Defaults to checking every depositable currency on the chain.

Response

Default Response

message
string

Human-readable summary of the reindex outcome.

triggeredCurrencies
object[]

Currencies for which a withdrawal was queued.

checkedCurrencies
number

Total number of currencies whose balance was checked.

failedCurrencies
number

Number of currencies whose balance check failed.