Skip to Content
API ReferenceOverview

API Reference

The Burn & Claim API is a REST API served over HTTPS. All endpoints live under a single base path.

Base URL

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

Content type

All request and response bodies are JSON:

Content-Type: application/json

Authentication

Every request must include one of:

HeaderCredentialUse from
X-Api-Key: ak_...API keyServer only
Authorization: Bearer <token>Session tokenBrowser / mobile

See Authentication for details.

Versioning

The API is versioned via the URL path (/api/v1/). Breaking changes will be introduced under a new version prefix. Non-breaking additions (new fields, new endpoints) are added to the current version without a version bump.

Endpoints

Sessions

MethodPathDescription
POST/sessionsCreate a session token (API key only)

Wallet

MethodPathDescription
GET/wallet/:address/assetsGet burnable assets in a wallet
POST/wallet/:address/transactionsBuild unsigned transactions
POST/wallet/:address/transactions/submitSubmit signed transactions

Read-only

MethodPathDescription
GET/statsPlatform statistics
GET/leaderboardWallet leaderboard

Common response headers

HeaderPresent whenDescription
Retry-After429 responsesSeconds until the rate limit resets
X-RateLimit-LimitAll responsesRequests allowed per minute for your tier
X-RateLimit-RemainingAll responsesRequests remaining in the current window
Last updated on