Crypto APIs icon

Crypto APIs

Interact with Crypto APIs REST API

Actions113

Overview

This node interacts with the Crypto APIs REST API to manage historical synced addresses on various blockchains. Specifically, the "Delete Synced Address" operation under the "addresses-historical" resource allows users to delete a previously synced wallet address from the historical data records.

Common scenarios for this node include:

  • Removing outdated or incorrect wallet address data from your historical blockchain analytics.
  • Managing and cleaning up synced address data in your blockchain monitoring or reporting workflows.
  • Automating the deletion of specific addresses when they are no longer relevant or needed.

For example, if you have a workflow that tracks multiple wallet addresses over time but want to remove one that is no longer active or was added by mistake, this node can be used to delete that address from the historical sync.

Properties

Name Meaning
address The wallet address to delete from the historical synced addresses.
blockchain The blockchain network where the address exists (e.g., Ethereum, Bitcoin).
network The specific network environment of the blockchain (e.g., mainnet, testnet).
context Optional additional context or metadata related to the deletion request.

Output

The node outputs JSON data representing the response from the Crypto APIs service after attempting to delete the synced address. This typically includes confirmation of deletion or error details if the operation failed.

No binary data output is produced by this node.

Dependencies

  • Requires an API key credential for authenticating with the Crypto APIs REST API.
  • The node reads a local OpenAPI specification file (2024-12-12-final.json) bundled with the node to dynamically resolve API paths and parameters.
  • No other external dependencies beyond standard Node.js modules and the Crypto APIs service.

Troubleshooting

  • Operation Not Found Error: If the specified operation cannot be found in the API spec, ensure the operation name matches exactly and the node version is up to date.
  • Missing Required Parameters: The address, blockchain, and network properties are required. Omitting any will cause errors.
  • API Authentication Errors: Verify that the API key credential is correctly configured and has sufficient permissions.
  • Network or API Errors: Check network connectivity and Crypto APIs service status if requests fail unexpectedly.
  • Continue On Fail Behavior: If enabled, errors will be returned as JSON objects instead of stopping execution, allowing partial processing of multiple inputs.

Links and References

Discussion