Public Litecoin APIs used by OpS Crypt

Documentation of the internet-facing Litecoin network endpoints that power balance, UTXOs, history and broadcast in OpS Crypt LTC. This page is documentation — not a private backend that holds keys.

Important: OpS Crypt is non-custodial. Private keys never go to these APIs. Only public addresses and already-signed transactions are sent over the internet.

1. Official project links

2. Providers (fallback order)

#ProviderBase URLRole
1Litecoin Spacehttps://litecoinspace.org/apiPrimary (mempool-style)
2BlockCypherhttps://api.blockcypher.com/v1/ltc/mainFallback
3Blockchairhttps://api.blockchair.com/litecoinFallback
Coinbase / CoinGeckoprice APIsUSD display only

3. Endpoint catalog

GET Address balance

https://litecoinspace.org/api/address/{ADDRESS}
https://api.blockcypher.com/v1/ltc/main/addrs/{ADDRESS}/balance
https://api.blockchair.com/litecoin/dashboards/address/{ADDRESS}

Returns funded/spent totals (or balance in litoshis). OpS normalizes to confirmed / unconfirmed / total.

GET UTXOs

https://litecoinspace.org/api/address/{ADDRESS}/utxo
https://api.blockcypher.com/v1/ltc/main/addrs/{ADDRESS}?unspentOnly=true&includeScript=true

Unspent outputs used to build a send transaction.

GET Transaction hex (for legacy inputs)

https://litecoinspace.org/api/tx/{TXID}/hex
https://api.blockcypher.com/v1/ltc/main/txs/{TXID}?includeHex=true

GET History

https://api.blockcypher.com/v1/ltc/main/addrs/{ADDRESS}?limit=20
https://litecoinspace.org/api/address/{ADDRESS}/txs

POST Broadcast signed transaction

POST https://litecoinspace.org/api/tx
Body: raw transaction hex (text/plain)

POST https://api.blockcypher.com/v1/ltc/main/txs/push
Body: {"tx":""}

POST https://api.blockchair.com/litecoin/push/transaction
Body: data=

Only a fully signed transaction is submitted — never a private key.

GET LTC/USD price

https://api.coinbase.com/v2/prices/LTC-USD/spot
https://api.coingecko.com/api/v3/simple/price?ids=litecoin&vs_currencies=usd

4. Example (curl)

curl -s "https://api.blockcypher.com/v1/ltc/main/addrs/LTC_ADDRESS_HERE/balance"
curl -s "https://litecoinspace.org/api/address/LTC_ADDRESS_HERE"

5. Quick live test (balance)

Paste a public Litecoin address (not a private key):

Result will appear here…

6. Units

APIs públicas de Litecoin usadas no OpS Crypt

Documentação dos endpoints da rede Litecoin na internet que alimentam saldo, UTXOs, histórico e transmissão no OpS Crypt LTC. Esta página é documentação — não é um backend que guarda chaves.

Importante: o OpS Crypt é não-custodial. Chaves privadas nunca vão para essas APIs. Só endereços públicos e transações já assinadas trafegam na internet.

1. Links oficiais do projeto

2. Provedores (ordem de fallback)

#ProvedorURL baseFunção
1Litecoin Spacehttps://litecoinspace.org/apiPrincipal
2BlockCypherhttps://api.blockcypher.com/v1/ltc/mainReserva
3Blockchairhttps://api.blockchair.com/litecoinReserva
Coinbase / CoinGeckoAPIs de preçoSó cotação USD

3. Catálogo de endpoints

GET Saldo do endereço

https://litecoinspace.org/api/address/{ENDERECO}
https://api.blockcypher.com/v1/ltc/main/addrs/{ENDERECO}/balance
https://api.blockchair.com/litecoin/dashboards/address/{ENDERECO}

GET UTXOs

https://litecoinspace.org/api/address/{ENDERECO}/utxo
https://api.blockcypher.com/v1/ltc/main/addrs/{ENDERECO}?unspentOnly=true&includeScript=true

POST Transmitir transação assinada

POST https://litecoinspace.org/api/tx
Corpo: hex da tx (text/plain)

POST https://api.blockcypher.com/v1/ltc/main/txs/push
Corpo: {"tx":""}

Só a transação já assinada — nunca a chave privada.

4. Exemplo (curl)

curl -s "https://api.blockcypher.com/v1/ltc/main/addrs/ENDERECO_LTC/balance"

5. Teste ao vivo (saldo)

Cole um endereço Litecoin público (não a chave privada):

O resultado aparece aqui…

6. Unidades