Skip to main content
GET
https://api.uniblock.dev
/
uni
/
v1
/
ton-http
/
*path
curl --location \
'https://api.uniblock.dev/uni/v1/ton-http/v2/status?chainId=ton' \
--header 'x-api-key: YOUR_API_KEY' \
--header 'Content-Type: application/json'
{
  "rest_online": true,
  "indexing_latency": 0
}
Access all TON API endpoints through Uniblock’s unified interface. This playground allows you to test any TON API endpoint interactively. For complete endpoint documentation, visit TON API Docs.

Parameters

chainId
string
default:"ton"
required
Network identifier. Use ton for mainnet or ton-testnet for testnet.
*path
string
default:"v2/status"
required
TON API endpoint path. Examples:
  • v2/status - Get API status
  • v2/accounts/{account_id} - Get account information
  • v2/blockchain/masterchain-head - Get masterchain head
  • v2/rates - Get exchange rates
See the TON Overview for all available endpoints.

Common Endpoints

Account Endpoints

  • v2/accounts/{account_id} - Get account information
  • v2/accounts/{account_id}/events - Get account events
  • v2/accounts/{account_id}/jettons - Get account jettons
  • v2/accounts/{account_id}/nfts - Get account NFTs
  • v2/accounts/{account_id}/transactions - Get account transactions

Blockchain Endpoints

  • v2/blockchain/masterchain-head - Get masterchain head
  • v2/blockchain/blocks/{block_id} - Get block information
  • v2/blockchain/transactions/{transaction_id} - Get transaction details
  • v2/blockchain/validators - Get validators list

Jetton Endpoints

  • v2/jettons - Get jettons list
  • v2/jettons/{account_id} - Get jetton information
  • v2/jettons/{account_id}/holders - Get jetton holders

NFT Endpoints

  • v2/nfts/collections - Get NFT collections
  • v2/nfts/collections/{account_id} - Get collection information
  • v2/nfts/{account_id} - Get NFT information

Other Endpoints

  • v2/status - Get API status
  • v2/rates - Get exchange rates
  • v2/dns/{domain_name} - Resolve DNS name
  • v2/staking/pools - Get staking pools

Returns

result
object
Response varies by endpoint. See TON API Docs for specific endpoint responses.
curl --location \
'https://api.uniblock.dev/uni/v1/ton-http/v2/status?chainId=ton' \
--header 'x-api-key: YOUR_API_KEY' \
--header 'Content-Type: application/json'
{
  "rest_online": true,
  "indexing_latency": 0
}