Skip to main content
GET
/
v1
/
users
/
{userId}
/
contracts
Get deposit addresses
curl --request GET \
  --url https://api.ledger.so/v1/users/{userId}/contracts \
  --header 'Api-Key: <api-key>'
{
  "userId": "<string>",
  "contracts": [
    {
      "chainId": 123,
      "depositAddress": "<string>",
      "tokens": [
        {
          "address": "<string>",
          "symbol": "<string>",
          "balance": "<string>"
        }
      ]
    }
  ]
}

Authorizations

Api-Key
string
header
required

API key for authentication. Get your key from the Dashboard.

Path Parameters

userId
string
required

The user ID

Response

User contracts

userId
string
required
contracts
object[]
required