Skip to main content

Documentation Index

Fetch the complete documentation index at: https://polynode.mintlify.app/llms.txt

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

Remove one or more wallets from your BYOL set. They will no longer appear in your leaderboard queries.
DELETE /v2/leaderboard/wallets

Authentication

Pass your API key via query parameter ?key=, header x-api-key, or Authorization: Bearer.

Request body

{
  "wallets": [
    "0x94f199fb7789f1aef7fff6b758d6b375100f4c7a",
    "0xe9ad918c7678cd38b12603a762e638a5d1ee7091"
  ]
}
wallets
string[]
required
Array of wallet addresses to remove from your set.

Response

{
  "removed": 2,
  "total": 104
}
FieldTypeDescription
removednumberNumber of wallets removed
totalnumberRemaining wallets in your set

Examples

curl -X DELETE "https://api.polynode.dev/v2/leaderboard/wallets?key=YOUR_API_KEY" \
  -H "Content-Type: application/json" \
  -d '{
    "wallets": [
      "0x94f199fb7789f1aef7fff6b758d6b375100f4c7a",
      "0xe9ad918c7678cd38b12603a762e638a5d1ee7091"
    ]
  }'
Removing a wallet from your set does not affect other API keys that may be tracking the same wallet.