npm package discovery and stats viewer.

Discover Tips

  • General search

    [free text search, go nuts!]

  • Package details

    pkg:[package-name]

  • User packages

    @[username]

Sponsor

Optimize Toolset

I’ve always been into building performant and accessible sites, but lately I’ve been taking it extremely seriously. So much so that I’ve been building a tool to help me optimize and monitor the sites that I build to make sure that I’m making an attempt to offer the best experience to those who visit them. If you’re into performant, accessible and SEO friendly sites, you might like it too! You can check it out at Optimize Toolset.

About

Hi, 👋, I’m Ryan Hefner  and I built this site for me, and you! The goal of this site was to provide an easy way for me to check the stats on my npm packages, both for prioritizing issues and updates, and to give me a little kick in the pants to keep up on stuff.

As I was building it, I realized that I was actually using the tool to build the tool, and figured I might as well put this out there and hopefully others will find it to be a fast and useful way to search and browse npm packages as I have.

If you’re interested in other things I’m working on, follow me on Twitter or check out the open source projects I’ve been publishing on GitHub.

I am also working on a Twitter bot for this site to tweet the most popular, newest, random packages from npm. Please follow that account now and it will start sending out packages soon–ish.

Open Software & Tools

This site wouldn’t be possible without the immense generosity and tireless efforts from the people who make contributions to the world and share their work via open source initiatives. Thank you 🙏

© 2024 – Pkg Stats / Ryan Hefner

cryptoapis_rest_apis_sdk

v1.0.0

Published

CryptoapisRestApisSdk - JavaScript client for cryptoapis_rest_apis_sdk Crypto APIs is a complex and innovative infrastructure layer that radically simplifies the development of any Blockchain and Crypto related applications. Organized around REST, Crypto

Downloads

3

Readme

cryptoapis_rest_apis_sdk

CryptoapisRestApisSdk - JavaScript client for cryptoapis_rest_apis_sdk Crypto APIs is a complex and innovative infrastructure layer that radically simplifies the development of any Blockchain and Crypto related applications. Organized around REST, Crypto APIs can assist both novice Bitcoin/Ethereum enthusiasts and crypto experts with the development of their blockchain applications. Crypto APIs provides unified endpoints and data, raw data, automatic tokens and coins forwardings, callback functionalities, and much more. This SDK is automatically generated by the OpenAPI Generator project:

  • API version: 2023-04-25
  • Package version: 1.0.0
  • Generator version: 7.4.0
  • Build package: org.openapitools.codegen.languages.JavascriptClientCodegen For more information, please visit https://cryptoapis.io

Installation

For Node.js

npm

To publish the library as a npm, please follow the procedure in "Publishing npm packages".

Then install it via:

npm install cryptoapis_rest_apis_sdk --save

Finally, you need to build the module:

npm run build
Local development

To use the library locally without publishing to a remote npm registry, first install the dependencies by changing into the directory containing package.json (and this README). Let's call this JAVASCRIPT_CLIENT_DIR. Then run:

npm install

Next, link it globally in npm with the following, also from JAVASCRIPT_CLIENT_DIR:

npm link

To use the link you just defined in your project, switch to the directory you want to use your cryptoapis_rest_apis_sdk from, and run:

npm link /path/to/<JAVASCRIPT_CLIENT_DIR>

Finally, you need to build the module:

npm run build

git

If the library is hosted at a git repository, e.g.https://github.com/GIT_USER_ID/GIT_REPO_ID then install it via:

    npm install GIT_USER_ID/GIT_REPO_ID --save

For browser

The library also works in the browser environment via npm and browserify. After following the above steps with Node.js and installing browserify with npm install -g browserify, perform the following (assuming main.js is your entry file):

browserify main.js > bundle.js

Then include bundle.js in the HTML pages.

Webpack Configuration

Using Webpack you may encounter the following error: "Module not found: Error: Cannot resolve module", most certainly you should disable AMD loader. Add/merge the following section to your webpack config:

module: {
  rules: [
    {
      parser: {
        amd: false
      }
    }
  ]
}

Getting Started

Please follow the installation instruction and execute the following JS code:

var CryptoapisRestApisSdk = require('cryptoapis_rest_apis_sdk');

var defaultClient = CryptoapisRestApisSdk.ApiClient.instance;
// Configure API key authorization: ApiKey
var ApiKey = defaultClient.authentications['ApiKey'];
ApiKey.apiKey = "YOUR API KEY"
// Uncomment the following line to set a prefix for the API key, e.g. "Token" (defaults to null)
//ApiKey.apiKeyPrefix['x-api-key'] = "Token"

var api = new CryptoapisRestApisSdk.AssetsApi()
var assetId = 5b1ea92e584bf50020130612; // {String} Defines the unique ID of the specific asset.
var opts = {
  'context': yourExampleString // {String} In batch situations the user can use the context to correlate responses with requests. This property is present regardless of whether the response was successful or returned as an error. `context` is specified by the user.
};
api.getAssetDetailsByAssetID(assetId, opts).then(function(data) {
  console.log('API called successfully. Returned data: ' + data);
}, function(error) {
  console.error(error);
});

Documentation for API Endpoints

All URIs are relative to https://rest.cryptoapis.io

Class | Method | HTTP request | Description ------------ | ------------- | ------------- | ------------- CryptoapisRestApisSdk.AssetsApi | getAssetDetailsByAssetID | GET /market-data/assets/assetId/{assetId} | Get Asset Details By Asset ID CryptoapisRestApisSdk.AssetsApi | getAssetDetailsByAssetSymbol | GET /market-data/assets/{assetSymbol} | Get Asset Details By Asset Symbol CryptoapisRestApisSdk.AutomaticCoinsForwardingApi | createAutomaticCoinsForwarding | POST /blockchain-automations/{blockchain}/{network}/coins-forwarding/automations | Create Automatic Coins Forwarding CryptoapisRestApisSdk.AutomaticCoinsForwardingApi | deleteAutomaticCoinsForwarding | DELETE /blockchain-automations/{blockchain}/{network}/coins-forwarding/automations/{referenceId} | Delete Automatic Coins Forwarding CryptoapisRestApisSdk.AutomaticCoinsForwardingApi | listCoinsForwardingAutomations | GET /blockchain-automations/{blockchain}/{network}/coins-forwarding/automations | List Coins Forwarding Automations CryptoapisRestApisSdk.AutomaticTokensForwardingApi | addTokensToExistingFromAddress | POST /blockchain-automations/{blockchain}/{network}/tokens-forwarding/automations/add-token | Add Tokens To Existing fromAddress CryptoapisRestApisSdk.AutomaticTokensForwardingApi | createAutomaticTokensForwarding | POST /blockchain-automations/{blockchain}/{network}/tokens-forwarding/automations | Create Automatic Tokens Forwarding CryptoapisRestApisSdk.AutomaticTokensForwardingApi | deleteAutomaticTokensForwarding | DELETE /blockchain-automations/{blockchain}/{network}/tokens-forwarding/automations/{referenceId} | Delete Automatic Tokens Forwarding CryptoapisRestApisSdk.AutomaticTokensForwardingApi | getFeeAddressDetails | GET /blockchain-automations/{blockchain}/{network}/tokens-forwarding/fee-addresses | Get Fee Address Details CryptoapisRestApisSdk.AutomaticTokensForwardingApi | listTokensForwardingAutomations | GET /blockchain-automations/{blockchain}/{network}/tokens-forwarding/automations | List Tokens Forwarding Automations CryptoapisRestApisSdk.CallbackDataApi | getAddressDetailsFromCallback | GET /blockchain-events/{blockchain}/{network}/addresses/{address} | Get Address Details From Callback CryptoapisRestApisSdk.CallbackDataApi | getBlockDetailsByBlockHashFromCallback | GET /blockchain-events/{blockchain}/{network}/blocks/hash/{blockHash} | Get Block Details By Block Hash From Callback CryptoapisRestApisSdk.CallbackDataApi | getBlockDetailsByBlockHeightFromCallback | GET /blockchain-events/{blockchain}/{network}/blocks/height/{blockHeight} | Get Block Details By Block Height From Callback CryptoapisRestApisSdk.CallbackDataApi | getTransactionDetailsByTransactionIDFromCallback | GET /blockchain-events/{blockchain}/{network}/transactions/{transactionId} | Get Transaction Details By Transaction ID From Callback CryptoapisRestApisSdk.CreateSubscriptionsForApi | blockHeightReached | POST /blockchain-events/{blockchain}/{network}/subscriptions/block-height-reached | Block Height Reached CryptoapisRestApisSdk.CreateSubscriptionsForApi | minedTransaction | POST /blockchain-events/{blockchain}/{network}/subscriptions/transaction-mined | Mined Transaction CryptoapisRestApisSdk.CreateSubscriptionsForApi | newBlock | POST /blockchain-events/{blockchain}/{network}/subscriptions/block-mined | New Block CryptoapisRestApisSdk.CreateSubscriptionsForApi | newConfirmedCoinsTransactions | POST /blockchain-events/{blockchain}/{network}/subscriptions/address-coins-transactions-confirmed | New Confirmed Coins Transactions CryptoapisRestApisSdk.CreateSubscriptionsForApi | newConfirmedCoinsTransactionsAndEachConfirmation | POST /blockchain-events/{blockchain}/{network}/subscriptions/address-coins-transactions-confirmed-each-confirmation | New Confirmed Coins Transactions And Each Confirmation CryptoapisRestApisSdk.CreateSubscriptionsForApi | newConfirmedInternalTransactions | POST /blockchain-events/{blockchain}/{network}/subscriptions/address-internal-transactions-confirmed | New Confirmed Internal Transactions CryptoapisRestApisSdk.CreateSubscriptionsForApi | newConfirmedInternalTransactionsAndEachConfirmation | POST /blockchain-events/{blockchain}/{network}/subscriptions/address-internal-transactions-confirmed-each-confirmation | New Confirmed Internal Transactions And Each Confirmation CryptoapisRestApisSdk.CreateSubscriptionsForApi | newConfirmedTokensTransactions | POST /blockchain-events/{blockchain}/{network}/subscriptions/address-tokens-transactions-confirmed | New Confirmed Tokens Transactions CryptoapisRestApisSdk.CreateSubscriptionsForApi | newConfirmedTokensTransactionsAndEachConfirmation | POST /blockchain-events/{blockchain}/{network}/subscriptions/address-tokens-transactions-confirmed-each-confirmation | New Confirmed Tokens Transactions And Each Confirmation CryptoapisRestApisSdk.CreateSubscriptionsForApi | newRevertedBlock | POST /blockchain-events/{blockchain}/{network}/subscriptions/reverted-block | New Reverted Block CryptoapisRestApisSdk.CreateSubscriptionsForApi | newUnconfirmedCoinsTransactions | POST /blockchain-events/{blockchain}/{network}/subscriptions/address-coins-transactions-unconfirmed | New Unconfirmed Coins Transactions CryptoapisRestApisSdk.CreateSubscriptionsForApi | newUnconfirmedTokensTransactions | POST /blockchain-events/{blockchain}/{network}/subscriptions/address-tokens-transactions-unconfirmed | New Unconfirmed Tokens Transactions CryptoapisRestApisSdk.ExchangeRatesApi | getExchangeRateByAssetSymbols | GET /market-data/exchange-rates/by-symbols/{fromAssetSymbol}/{toAssetSymbol} | Get Exchange Rate By Asset Symbols CryptoapisRestApisSdk.ExchangeRatesApi | getExchangeRateByAssetsIDs | GET /market-data/exchange-rates/by-asset-ids/{fromAssetId}/{toAssetId} | Get Exchange Rate By Assets IDs CryptoapisRestApisSdk.FeaturesApi | broadcastLocallySignedTransaction | POST /blockchain-tools/{blockchain}/{network}/transactions/broadcast | Broadcast Locally Signed Transaction CryptoapisRestApisSdk.FeaturesApi | convertBitcoinCashAddress | POST /blockchain-tools/{blockchain}/{network}/address/convert | Convert Bitcoin Cash Address CryptoapisRestApisSdk.FeaturesApi | decodeRawTransactionHex | POST /blockchain-tools/{blockchain}/{network}/decode-raw-transaction | Decode Raw Transaction Hex CryptoapisRestApisSdk.FeaturesApi | decodeXAddress | GET /blockchain-tools/{blockchain}/{network}/decode-x-address/{xAddress} | Decode X-Address CryptoapisRestApisSdk.FeaturesApi | deriveHDWalletXPubYPubZPubChangeOrReceivingAddresses | GET /blockchain-tools/{blockchain}/{network}/hd/{extendedPublicKey}/addresses/derive-address | Derive HD Wallet (xPub, yPub, zPub) Change Or Receiving Addresses CryptoapisRestApisSdk.FeaturesApi | encodeXAddress | GET /blockchain-tools/{blockchain}/{network}/encode-x-address/{classicAddress}/{addressTag} | Encode X-Address CryptoapisRestApisSdk.FeaturesApi | estimateGasLimit | POST /blockchain-tools/{blockchain}/{network}/gas-limit | Estimate Gas Limit CryptoapisRestApisSdk.FeaturesApi | estimateTokenGasLimit | POST /blockchain-tools/{blockchain}/{network}/gas-limit/contract | Estimate Token Gas Limit CryptoapisRestApisSdk.FeaturesApi | getEIP1559FeeRecommendations | GET /blockchain-tools/{blockchain}/{network}/fees/eip1559 | Get EIP 1559 Fee Recommendations CryptoapisRestApisSdk.FeaturesApi | prepareAFungibleTokenTransferFromAddress | POST /blockchain-tools/{blockchain}/{network}/transactions/prepare-token-from-address | Prepare A Fungible Token Transfer From Address CryptoapisRestApisSdk.FeaturesApi | prepareANonFungibleTokenTransferFromAddress | POST /blockchain-tools/{blockchain}/{network}/transactions/prepare-nft-from-address | Prepare A Non Fungible Token Transfer From Address CryptoapisRestApisSdk.FeaturesApi | prepareTransactionFromAddress | POST /blockchain-data/{blockchain}/{network}/transactions/prepare-from-address | Prepare Transaction From Address CryptoapisRestApisSdk.FeaturesApi | validateAddress | POST /blockchain-tools/{blockchain}/{network}/addresses/validate | Validate Address CryptoapisRestApisSdk.GeneratingApi | createNewMasterWallet | POST /wallet-as-a-service/wallets/generate | Create New Master Wallet CryptoapisRestApisSdk.GeneratingApi | generateDepositAddress | POST /wallet-as-a-service/wallets/{walletId}/{blockchain}/{network}/addresses | Generate Deposit Address CryptoapisRestApisSdk.HDWalletsApi | deriveAndSyncNewChangeAddresses | POST /blockchain-data/{blockchain}/{network}/hd/derive-sync-change | Derive And Sync New Change Addresses CryptoapisRestApisSdk.HDWalletsApi | deriveAndSyncNewReceivingAddresses | POST /blockchain-data/{blockchain}/{network}/hd/derive-and-sync | Derive And Sync New Receiving Addresses CryptoapisRestApisSdk.HDWalletsApi | getHDWalletXPubYPubZPubAssets | GET /blockchain-data/{blockchain}/{network}/hd/{extendedPublicKey}/assets | Get HD Wallet (xPub, yPub, zPub) Assets CryptoapisRestApisSdk.HDWalletsApi | getHDWalletXPubYPubZPubDetails | GET /blockchain-data/{blockchain}/{network}/hd/{extendedPublicKey}/details | Get HD Wallet (xPub, yPub, zPub) Details CryptoapisRestApisSdk.HDWalletsApi | listHDWalletXPubYPubZPubTransactions | GET /blockchain-data/{blockchain}/{network}/hd/{extendedPublicKey}/transactions | List HD Wallet (xPub, yPub, zPub) Transactions CryptoapisRestApisSdk.HDWalletsApi | listHDWalletXPubYPubZPubUTXOs | GET /blockchain-data/{blockchain}/{network}/hd/{extendedPublicKey}/utxos | List HD Wallet (xPub, yPub, zPub) UTXOs CryptoapisRestApisSdk.HDWalletsApi | listSyncedAddresses | GET /blockchain-data/{blockchain}/{network}/hd/{extendedPublicKey}/synced-addresses | List Synced Addresses CryptoapisRestApisSdk.HDWalletsApi | prepareATransactionFromAnAddressInHDWalletXPubYPubZPub | POST /blockchain-data/{blockchain}/{network}/transactions/prepare-account-based-transaction | Prepare A Transaction From An Address In HD Wallet (xPub, yPub, zPub) CryptoapisRestApisSdk.HDWalletsApi | prepareAUTXOBasedTransactionFromHDWalletXPubYPubZPub | POST /blockchain-data/{blockchain}/{network}/transactions/prepare-utxo-transaction | Prepare A UTXO-Based Transaction From HD Wallet (xPub, yPub, zPub) CryptoapisRestApisSdk.HDWalletsApi | syncHDWalletXPubYPubZPub | POST /blockchain-data/{blockchain}/{network}/hd/sync | Sync HD Wallet (xPub, yPub, zPub) CryptoapisRestApisSdk.HDWalletsApi | syncNewHDWalletXPubYPubZPub | POST /blockchain-data/{blockchain}/{network}/hd/sync-new | Sync New HD Wallet (xPub, yPub, zPub) CryptoapisRestApisSdk.InformativeApi | getTransactionRequestDetails | GET /wallet-as-a-service/transactionRequests/{transactionRequestId} | Get Transaction Request Details CryptoapisRestApisSdk.InformativeApi | getWalletAssetDetails | GET /wallet-as-a-service/wallets/{walletId}/{blockchain}/{network} | Get Wallet Asset Details CryptoapisRestApisSdk.InformativeApi | getWalletTransactionDetailsByTransactionID | GET /wallet-as-a-service/wallets/{blockchain}/{network}/transactions/{transactionId} | Get Wallet Transaction Details By Transaction ID CryptoapisRestApisSdk.InformativeApi | listAllAssetsByWalletID | GET /wallet-as-a-service/wallets/{walletId}/assets | List All Assets By Wallet ID CryptoapisRestApisSdk.InformativeApi | listAllAssetsFromAllWallets | GET /wallet-as-a-service/wallets/all-assets | List All Assets From All Wallets CryptoapisRestApisSdk.InformativeApi | listDepositAddresses | GET /wallet-as-a-service/wallets/{walletId}/{blockchain}/{network}/addresses | List Deposit Addresses CryptoapisRestApisSdk.InformativeApi | listSupportedTokens | GET /wallet-as-a-service/info/{blockchain}/{network}/supported-tokens | List Supported Tokens CryptoapisRestApisSdk.InformativeApi | listWalletTransactions | GET /wallet-as-a-service/wallets/{walletId}/{blockchain}/{network}/transactions | List Wallet Transactions CryptoapisRestApisSdk.InternalApi | listInternalTransactionDetailsByTransactionHash | GET /blockchain-data/{blockchain}/{network}/transactions/{transactionHash}/internal | List Internal Transaction Details by Transaction Hash CryptoapisRestApisSdk.InternalApi | listInternalTransactionsByAddress | GET /blockchain-data/{blockchain}/{network}/addresses/{address}/internal | List Internal Transactions By Address CryptoapisRestApisSdk.ManageSubscriptionsApi | activateBlockchainEventSubscription | POST /blockchain-events/subscriptions/{referenceId}/activate | Activate Blockchain Event Subscription CryptoapisRestApisSdk.ManageSubscriptionsApi | deleteBlockchainEventSubscription | DELETE /blockchain-events/{blockchain}/{network}/subscriptions/{referenceId} | Delete Blockchain Event Subscription CryptoapisRestApisSdk.ManageSubscriptionsApi | getBlockchainEventSubscriptionDetailsByReferenceID | GET /blockchain-events/subscriptions/{referenceId} | Get Blockchain Event Subscription Details By Reference ID CryptoapisRestApisSdk.ManageSubscriptionsApi | listBlockchainEventsSubscriptions | GET /blockchain-events/{blockchain}/{network}/subscriptions | List Blockchain Events Subscriptions CryptoapisRestApisSdk.MetadataApi | listSupportedAssets | GET /market-data/assets/supported | List Supported Assets CryptoapisRestApisSdk.TokensApi | getTokenDetailsByContractAddress | GET /blockchain-data/{blockchain}/{network}/addresses/{contractAddress}/contract | Get Token Details by Contract Address CryptoapisRestApisSdk.TokensApi | listConfirmedTokensTransfersByAddress | GET /blockchain-data/{blockchain}/{network}/addresses/{address}/tokens-transfers | List Confirmed Tokens Transfers By Address CryptoapisRestApisSdk.TokensApi | listTokensByAddress | GET /blockchain-data/{blockchain}/{network}/addresses/{address}/tokens | List Tokens By Address CryptoapisRestApisSdk.TokensApi | listTokensTransfersByTransactionHash | GET /blockchain-data/{blockchain}/{network}/transactions/{transactionHash}/tokens-transfers | List Tokens Transfers By Transaction Hash CryptoapisRestApisSdk.TokensApi | listUnconfirmedTokensTransfersByAddress | GET /blockchain-data/{blockchain}/{network}/addresses/{address}/tokens-transfers-unconfirmed | List Unconfirmed Tokens Transfers By Address CryptoapisRestApisSdk.TransactionsApi | createCoinsTransactionFromAddressForWholeAmount | POST /wallet-as-a-service/wallets/{walletId}/{blockchain}/{network}/addresses/{address}/all-transaction-requests | Create Coins Transaction From Address For Whole Amount CryptoapisRestApisSdk.TransactionsApi | createCoinsTransactionRequestFromAddress | POST /wallet-as-a-service/wallets/{walletId}/{blockchain}/{network}/addresses/{address}/transaction-requests | Create Coins Transaction Request from Address CryptoapisRestApisSdk.TransactionsApi | createCoinsTransactionRequestFromWallet | POST /wallet-as-a-service/wallets/{walletId}/{blockchain}/{network}/transaction-requests | Create Coins Transaction Request from Wallet CryptoapisRestApisSdk.TransactionsApi | createFungibleTokenTransactionRequestFromAddressWithoutFeePriority | POST /wallet-as-a-service/wallets/{walletId}/{blockchain}/{network}/addresses/{senderAddress}/feeless-token-transaction-requests | Create Fungible Token Transaction Request From Address Without Fee Priority CryptoapisRestApisSdk.TransactionsApi | createFungibleTokensTransactionRequestFromAddress | POST /wallet-as-a-service/wallets/{walletId}/{blockchain}/{network}/addresses/{senderAddress}/token-transaction-requests | Create Fungible Tokens Transaction Request from Address CryptoapisRestApisSdk.TransactionsApi | createSingleTransactionRequestFromAddressWithoutFeePriority | POST /wallet-as-a-service/wallets/{walletId}/{blockchain}/{network}/addresses/{address}/feeless-transaction-requests | Create Single Transaction Request From Address Without Fee Priority CryptoapisRestApisSdk.UnifiedEndpointsApi | estimateTransactionSmartFee | GET /blockchain-data/{blockchain}/{network}/estimate-transaction-smart-fee | Estimate Transaction Smart Fee CryptoapisRestApisSdk.UnifiedEndpointsApi | getAddressBalance | GET /blockchain-data/{blockchain}/{network}/addresses/{address}/balance | Get Address Balance CryptoapisRestApisSdk.UnifiedEndpointsApi | getBlockDetailsByBlockHash | GET /blockchain-data/{blockchain}/{network}/blocks/hash/{blockHash} | Get Block Details By Block Hash CryptoapisRestApisSdk.UnifiedEndpointsApi | getBlockDetailsByBlockHeight | GET /blockchain-data/{blockchain}/{network}/blocks/height/{height} | Get Block Details By Block Height CryptoapisRestApisSdk.UnifiedEndpointsApi | getFeeRecommendations | GET /blockchain-data/{blockchain}/{network}/mempool/fees | Get Fee Recommendations CryptoapisRestApisSdk.UnifiedEndpointsApi | getLastMinedBlock | GET /blockchain-data/{blockchain}/{network}/blocks/last | Get Last Mined Block CryptoapisRestApisSdk.UnifiedEndpointsApi | getNextAvailableNonce | GET /blockchain-data/{blockchain}/{network}/addresses/{address}/next-available-nonce | Get Next Available Nonce CryptoapisRestApisSdk.UnifiedEndpointsApi | getRawTransactionData | GET /blockchain-data/{blockchain}/{network}/transactions/{transactionId}/raw-data | Get Raw Transaction Data CryptoapisRestApisSdk.UnifiedEndpointsApi | getTransactionDetailsByTransactionID | GET /blockchain-data/{blockchain}/{network}/transactions/{transactionId} | Get Transaction Details By Transaction ID CryptoapisRestApisSdk.UnifiedEndpointsApi | listConfirmedTokensTransfersByAddressAndTimeRange | GET /blockchain-data/{blockchain}/{network}/addresses/{address}/tokens-transfers-by-time-range | List Confirmed Tokens Transfers By Address And Time Range CryptoapisRestApisSdk.UnifiedEndpointsApi | listConfirmedTransactionsByAddress | GET /blockchain-data/{blockchain}/{network}/addresses/{address}/transactions | List Confirmed Transactions By Address CryptoapisRestApisSdk.UnifiedEndpointsApi | listConfirmedTransactionsByAddressAndTimeRange | GET /blockchain-data/{blockchain}/{network}/addresses/{address}/transactions-by-time-range | List Confirmed Transactions By Address And Time Range CryptoapisRestApisSdk.UnifiedEndpointsApi | listInternalTransactionsByAddressAndTimeRange | GET /blockchain-data/{blockchain}/{network}/addresses/{address}/internal-by-time-range | List Internal Transactions By Address And Time Range CryptoapisRestApisSdk.UnifiedEndpointsApi | listLatestMinedBlocks | GET /blockchain-data/{blockchain}/{network}/blocks/last/{count} | List Latest Mined Blocks CryptoapisRestApisSdk.UnifiedEndpointsApi | listLogsByTransactionHash | GET /blockchain-data/{blockchain}/{network}/transactions/{transactionHash}/logs | List Logs By Transaction Hash CryptoapisRestApisSdk.UnifiedEndpointsApi | listTransactionsByBlockHash | GET /blockchain-data/{blockchain}/{network}/blocks/hash/{blockHash}/transactions | List Transactions by Block Hash CryptoapisRestApisSdk.UnifiedEndpointsApi | listTransactionsByBlockHeight | GET /blockchain-data/{blockchain}/{network}/blocks/height/{height}/transactions | List Transactions by Block Height CryptoapisRestApisSdk.UnifiedEndpointsApi | listUnconfirmedTransactionsByAddress | GET /blockchain-data/{blockchain}/{network}/address-transactions-unconfirmed/{address} | List Unconfirmed Transactions by Address CryptoapisRestApisSdk.UnifiedEndpointsApi | listUnspentTransactionOutputsByAddress | GET /blockchain-data/{blockchain}/{network}/addresses/{address}/unspent-outputs | List Unspent Transaction Outputs By Address CryptoapisRestApisSdk.XRPRippleApi | getLatestMinedXRPRippleBlock | GET /blockchain-data/xrp-specific/{network}/blocks/last | Get Latest Mined XRP (Ripple) Block CryptoapisRestApisSdk.XRPRippleApi | getXRPRippleAddressDetails | GET /blockchain-data/xrp-specific/{network}/addresses/{address} | Get XRP (Ripple) Address Details CryptoapisRestApisSdk.XRPRippleApi | getXRPRippleBlockDetailsByBlockHash | GET /blockchain-data/xrp-specific/{network}/blocks/hash/{blockHash} | Get XRP (Ripple) Block Details By Block Hash CryptoapisRestApisSdk.XRPRippleApi | getXRPRippleBlockDetailsByBlockHeight | GET /blockchain-data/xrp-specific/{network}/blocks/height/{blockHeight} | Get XRP (Ripple) Block Details By Block Height CryptoapisRestApisSdk.XRPRippleApi | getXRPRippleTransactionDetailsByTransactionID | GET /blockchain-data/xrp-specific/{network}/transactions/{transactionHash} | Get XRP (Ripple) Transaction Details By Transaction ID CryptoapisRestApisSdk.XRPRippleApi | listXRPRippleTransactionsByAddress | GET /blockchain-data/xrp-specific/{network}/addresses/{address}/transactions | List XRP (Ripple) Transactions by Address CryptoapisRestApisSdk.XRPRippleApi | listXRPRippleTransactionsByAddressAndTimeRange | GET /blockchain-data/xrp-specific/{network}/addresses/{address}/transactions-by-time-range | List XRP (Ripple) Transactions By Address And Time Range CryptoapisRestApisSdk.XRPRippleApi | listXRPRippleTransactionsByBlockHash | GET /blockchain-data/xrp-specific/{network}/blocks/hash/{blockHash}/transactions | List XRP (Ripple) Transactions By Block Hash CryptoapisRestApisSdk.XRPRippleApi | listXRPRippleTransactionsByBlockHeight | GET /blockchain-data/xrp-specific/{network}/blocks/height/{blockHeight}/transactions | List XRP (Ripple) Transactions By Block Height

Documentation for Models