Skip to main content
GET
https://api.uniblock.dev
/
uni
/
v1
/
stellar-http
/
*path
curl --location \
'https://api.uniblock.dev/uni/v1/stellar-http/fee_stats?chainId=stellar' \
--header 'x-api-key: YOUR_API_KEY' \
--header 'Content-Type: application/json'
{
  "last_ledger": "50000000",
  "last_ledger_base_fee": "100",
  "ledger_capacity_usage": "0.97",
  "fee_charged": {
    "max": "100",
    "min": "100",
    "mode": "100",
    "p10": "100",
    "p20": "100",
    "p30": "100",
    "p40": "100",
    "p50": "100",
    "p60": "100",
    "p70": "100",
    "p80": "100",
    "p90": "100",
    "p95": "100",
    "p99": "100"
  },
  "max_fee": {
    "max": "100000",
    "min": "100",
    "mode": "100",
    "p10": "100",
    "p20": "100",
    "p30": "100",
    "p40": "100",
    "p50": "100",
    "p60": "100",
    "p70": "100",
    "p80": "100",
    "p90": "100",
    "p95": "100",
    "p99": "100"
  }
}
Access all Stellar Horizon API endpoints through Uniblock’s unified interface. This playground allows you to test any Stellar Horizon endpoint interactively. For complete endpoint documentation, visit Stellar Horizon API Docs.

Parameters

chainId
string
default:"stellar"
required
Network identifier. Use stellar for mainnet or stellar-testnet for testnet.
*path
string
default:"fee_stats"
required
Stellar Horizon API endpoint path. Examples:
  • fee_stats - Get fee statistics
  • accounts/{account_id} - Get account information
  • ledgers/{sequence} - Get ledger information
  • transactions/{transaction_hash} - Get transaction details
See the Stellar Overview for all available endpoints.

Common Endpoints

Account Endpoints

  • accounts/{account_id} - Get account information
  • accounts/{account_id}/transactions - Get account transactions
  • accounts/{account_id}/operations - Get account operations
  • accounts/{account_id}/payments - Get account payments
  • accounts/{account_id}/effects - Get account effects
  • accounts/{account_id}/offers - Get account offers
  • accounts/{account_id}/trades - Get account trades

Ledger Endpoints

  • ledgers - Get all ledgers
  • ledgers/{sequence} - Get specific ledger
  • ledgers/{sequence}/transactions - Get ledger transactions
  • ledgers/{sequence}/operations - Get ledger operations
  • ledgers/{sequence}/payments - Get ledger payments
  • ledgers/{sequence}/effects - Get ledger effects

Transaction Endpoints

  • transactions - Get all transactions
  • transactions/{transaction_hash} - Get specific transaction
  • transactions/{transaction_hash}/operations - Get transaction operations
  • transactions/{transaction_hash}/effects - Get transaction effects

Operation Endpoints

  • operations - Get all operations
  • operations/{id} - Get specific operation
  • operations/{id}/effects - Get operation effects
  • payments - Get all payments

Asset & Trading Endpoints

  • assets - Get all assets
  • offers - Get all offers
  • offers/{offer_id} - Get specific offer
  • offers/{offer_id}/trades - Get offer trades
  • trades - Get all trades
  • order_book - Get order book
  • trade_aggregations - Get trade aggregations

Liquidity Pool Endpoints

  • liquidity_pools - Get all liquidity pools
  • liquidity_pools/{liquidity_pool_id} - Get specific pool
  • liquidity_pools/{liquidity_pool_id}/effects - Get pool effects
  • liquidity_pools/{liquidity_pool_id}/transactions - Get pool transactions
  • liquidity_pools/{liquidity_pool_id}/operations - Get pool operations

Claimable Balance Endpoints

  • claimable_balances - Get all claimable balances
  • claimable_balances/{claimable_balance_id} - Get specific balance
  • claimable_balances/{claimable_balance_id}/transactions - Get balance transactions
  • claimable_balances/{claimable_balance_id}/operations - Get balance operations

Path Finding Endpoints

  • paths/strict-receive - Find payment paths (strict receive)
  • paths/strict-send - Find payment paths (strict send)

Other Endpoints

  • fee_stats - Get fee statistics
  • effects - Get all effects

Returns

result
object
Response varies by endpoint. See Stellar Horizon API Docs for specific endpoint responses.
curl --location \
'https://api.uniblock.dev/uni/v1/stellar-http/fee_stats?chainId=stellar' \
--header 'x-api-key: YOUR_API_KEY' \
--header 'Content-Type: application/json'
{
  "last_ledger": "50000000",
  "last_ledger_base_fee": "100",
  "ledger_capacity_usage": "0.97",
  "fee_charged": {
    "max": "100",
    "min": "100",
    "mode": "100",
    "p10": "100",
    "p20": "100",
    "p30": "100",
    "p40": "100",
    "p50": "100",
    "p60": "100",
    "p70": "100",
    "p80": "100",
    "p90": "100",
    "p95": "100",
    "p99": "100"
  },
  "max_fee": {
    "max": "100000",
    "min": "100",
    "mode": "100",
    "p10": "100",
    "p20": "100",
    "p30": "100",
    "p40": "100",
    "p50": "100",
    "p60": "100",
    "p70": "100",
    "p80": "100",
    "p90": "100",
    "p95": "100",
    "p99": "100"
  }
}