get
https://public-api.birdeye.so/blockchain/v1/account/detail
Returns account details for a Solana address.
Recent Requests
Log in to see full request history
| Time | Status | User Agent | |
|---|---|---|---|
Retrieving recent requests… | |||
Loading…
- Returns one Solana account by raw address, including both the base64 account data and Birdeye's parsed view when a decoder is available.
data_parseddepends on the owning program and account layout; unknown layouts may only return rawdata.is_on_curvehelps distinguish normal keypair addresses from PDAs and program-owned derived accounts.decode_errormay appear when the account exists but its data could not be parsed into a known schema.
- Standard
- Lite
- Starter
- Premium
- Business
- Enterprise
Solana
Use Cases 💡
- Inspect any Solana account before deciding whether it is a wallet, PDA, mint, vault, or custom program account.
- Read parsed launchpad, AMM, staking, or token-program state without building your own decoder first.
- Debug protocol integrations by comparing raw base64 data with Birdeye's parsed fields.
- Power block explorers, internal tooling, and support workflows that need fast account introspection.
How to Use 🛠️
- Pass the Solana address in
address. - Read
ownerfirst to understand which program controls the account. - Use
data_parsedwhen present for structured fields; fall back to rawdatawhen you need your own decoder. - Check
executableandis_on_curvebefore treating the address like a normal wallet account.
Best Practices ✅
- Cache static or rarely changing accounts, especially metadata-like state and immutable PDAs.
- Treat
data_parsedas program-specific, not a universal schema across all account owners. - Use this endpoint together with token metadata, transaction detail, and token-account lookups to reconstruct full protocol state.
Limitations ⚠️
- Solana only.
