Skip to Content
Introduction

Burn & Claim Developer Documentation

The Burn & Claim API lets you integrate Solana token burning and SOL reclamation directly into your application. Users can close empty token accounts, burn worthless tokens and NFTs, and reclaim the rent SOL locked inside them.

Install the SDK

npm install @burnandclaim/sdk

How it works

  1. Your backend authenticates with a long-lived API key and creates a short-lived session token scoped to a single wallet.
  2. Your frontend uses that session token to discover burnable assets, build unsigned transactions, prompt the user to sign, and submit them.
  3. The user reclaims SOL. You can optionally route a donation percentage to your project.

Base URL

All API requests go to:

https://api.aerosol.com/api/v1/burner

Authentication at a glance

CredentialHeaderLifetimeUse from
API KeyX-Api-Key: ak_...Long-livedServer only
Session TokenAuthorization: Bearer <token>5 min default, 1 hr maxBrowser / mobile

See Authentication for the full guide.

Last updated on