Public docs
WebsiteTAAL PlatformWhatsOnChain
  • Welcome
  • Introduction
    • Get an API Key
  • Core Products
    • WhatsOnChain
      • Health
      • Chain Info
      • Block
      • Transaction
      • Mempool
      • (Un)Spent Transaction Outputs
      • Address
      • Script
      • Exchange Rate
      • Search
      • WoC Widgets
      • WoC Plugins
      • On-Chain Data
      • Output Tags
      • Stats
      • WebSockets
        • WoC Sockets V1 (Deprecated)
        • WoC Sockets V2 (Beta)
      • Tokens
        • 1Sat Ordinals (Beta)
        • BSV-21 (Beta)
        • STAS Tokens (Beta)
      • Change Log
      • Community Libraries
    • Transaction Processing
      • ARC Endpoints
      • Transaction format and fee rate
    • TAAL Wallet
      • Introduction
      • Architecture
      • Terminology
      • UI Elements
      • Tutorial
    • 1Sat Ordinals tokens API
      • Introduction
      • Terminology
      • Flow Diagram
      • Basic Tutorial - Node
      • Basic Tutorial - Postman
      • API
  • Resources
    • FAQ
    • Support
    • Glossary
    • Acronyms and Abbreviations
Powered by GitBook
On this page

Was this helpful?

Export as PDF
  1. Core Products
  2. Transaction Processing

Bitcoin Endpoints

Bitcoin endpoints (only with bitcoin-enabled APIKey)

curl -X POST https://api.taal.com/api/v1/bitcoin

The possible bitcoin RPC commands that are available are:

  • getbestblockhash

  • gettxout

  • gettxouts

  • decoderawtransaction

  • getrawtransaction

  • getmempoolancestors

  • getmempooldescendants

Examples:

curl \
	--header 'Authorization: {APIKey}' \
	--header 'Content-Type: application/json' \
	--data-binary '{"jsonrpc": "1.0", "id":"curltest", "method": "getinfo", "params": [] }' \
	https://api.taal.com/api/v1/bitcoin

curl \
	--header 'Authorization: {APIKey}' \
	--header 'Content-Type: application/json' \

Last updated 3 years ago

Was this helpful?