current location:Home >> Blockchain knowledge >> Solscan API Information

Solscan API Information

admin Blockchain knowledge 4254

Solscan is a popular block explorer for the Solana blockchain, and it offers an API for developers to access blockchain data programmatically.

Solscan API Basics

  • Solscan API Information

    Websitehttps://solscan.io/

  • API Documentation: While Solscan doesn't have official public documentation, developers have reverse-engineered many of its API endpoints.

Common API Endpoints

Here are some frequently used endpoints:

Account Information

https://api.solscan.io/account/?address={wallet_address}

Token Holdings

https://api.solscan.io/account/tokens?address={wallet_address}

Transaction History

https://api.solscan.io/account/transactions?address={wallet_address}&offset=0&limit=10

Token Information

https://api.solscan.io/token/{token_address}

Transaction Details

https://api.solscan.io/transaction/{tx_signature}

Usage Notes

  1. Rate Limits: Solscan's API has rate limits (exact limits not publicly documented)

  2. Authentication: Most endpoints don't require API keys, but this may change

  3. Alternatives: For production use, consider Solana's official RPC endpoints or other dedicated API services

Example Request

fetch('https://api.solscan.io/account/?address=your_wallet_address')
  .then(response => response.json())
  .then(data => console.log(data));

If you have any questions or uncertainties, please join the official Telegram group: https://t.me/GToken_EN

GTokenTool

GTokenTool is the most comprehensive one click coin issuance tool, supporting multiple public chains such as TON, SOL, BSC, etc. Function: Create tokensmarket value managementbatch airdropstoken pre-sales IDO、 Lockpledge mining, etc. Provide a visual interface that allows users to quickly create, deploy, and manage their own cryptocurrencies without writing code.

Similar recommendations