Blockchain - Account Detail

Returns account details for a Solana address.

Recent Requests
Log in to see full request history
TimeStatusUser Agent
Retrieving recent requests…
LoadingLoading…
  • Returns one Solana account by raw address, including both the base64 account data and Birdeye's parsed view when a decoder is available.
  • data_parsed depends on the owning program and account layout; unknown layouts may only return raw data.
  • is_on_curve helps distinguish normal keypair addresses from PDAs and program-owned derived accounts.
  • decode_error may appear when the account exists but its data could not be parsed into a known schema.
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 owner first to understand which program controls the account.
  • Use data_parsed when present for structured fields; fall back to raw data when you need your own decoder.
  • Check executable and is_on_curve before 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_parsed as 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.

Query Params
string
required

Solana account address.

Responses

Language
Credentials
Header
LoadingLoading…
Response
Click Try It! to start a request and see the response here! Or choose an example:
application/json