Skip to main content

API

This section contains the JSON-RPC API technical documentation for Litecoin wallets.

info

Click here to learn how to authenticate and send JSON-RPC requests.

Endpoint

The JSON-RPC API is exposed at https://api.coinrpc.com/litecoin.

Transaction Object

Below describes a transaction object returned by some API methods.

  • amount: (string) The amount of tokens transacted.
  • block_number: (int) The number of the block containing the transaction. null when transaction is not yet in a block.
  • category: (string) The type of transaction. SEND or RECEIVE.
  • comment: (string) Optional comment only visible to the wallet owner.
  • confirmed_at: (int) The unix timestamp of when the transaction was confirmed by the platform. null when status is PENDING.
  • created_at: (int) The unix timestamp of when the transaction was first seen by the platform.
  • currency: (string) The currency_id of tokens transacted.
  • guid: (string) The unique transaction ID on the platform.
  • network_fee: (string) The network fee paid for the transaction. Paid in LTC.
  • recipient: (string) The address of the receipient.
  • service_fee: (string) The service fee paid for the transaction. Paid in currency. If SEND, the service fee is paid in addition to the amount. If RECEIVE, the service fee is paid from the amount.
  • status: (string) The status of the transaction. PENDING, SUCCESS or FAILED.
  • tx_hash: (string) The transaction hash on the blockchain.
{
"amount": "1",
"block_number": 2778168,
"category": "RECEIVE",
"comment": "my transaction",
"confirmed_at": 1698953511,
"created_at": 1698953511,
"currency": "LTC",
"guid": "ABCD1234ABCD",
"network_fee": "0.0000165",
"recipient": "ltc1qftyt6dvuy66qe2m8vn99ed0hs5kjgj2hf436y3",
"sender": "ltc1q84dv4ejv8j740nzxwum3nhcrkzx6t3vyrv79p9",
"service_fee": "0",
"status": "SUCCESS",
"tx_hash": "9f54f3268ef2a741867ae155d1e8dc6c9480c167b5007699a6218b9f0c0f43d9",
}