Crypto APIs icon

Crypto APIs

Interact with Crypto APIs REST API

Actions113

Overview

This node interacts with the Crypto APIs REST API to list tokens associated with a specific Solana blockchain address. It is useful for users who want to retrieve detailed token information held by a given wallet address on the Solana network. Practical applications include portfolio tracking, blockchain analytics, and wallet auditing.

Properties

Name Meaning
network The Solana network to query (e.g., mainnet, testnet).
address The Solana wallet address whose tokens you want to list.
context Optional additional context parameter to refine or specify the request further.

Output

The node outputs a JSON array where each item represents token data related to the specified Solana address. Each JSON object typically contains details about individual tokens such as token identifiers, balances, metadata, and other relevant attributes returned by the Crypto APIs endpoint.

If binary data were involved, it would represent raw token-related files or media, but this operation focuses on JSON token listings only.

Dependencies

  • Requires an active connection to the Crypto APIs REST API.
  • Needs an API key credential configured in n8n to authenticate requests.
  • No additional environment variables are required beyond standard API authentication.

Troubleshooting

  • Common issues:

    • Invalid or missing API key credential will cause authentication failures.
    • Incorrect or malformed Solana address input may result in errors or empty responses.
    • Network connectivity problems can prevent successful API calls.
  • Error messages:

    • "Operation ... not found": Indicates the requested operation identifier does not exist; usually a configuration or version mismatch.
    • API error messages from Crypto APIs (e.g., rate limits, invalid parameters) will be passed through in the output JSON under an error field if "Continue On Fail" is enabled.
  • Resolutions:

    • Verify that the API key credential is correctly set up and has necessary permissions.
    • Double-check the format and correctness of the Solana address.
    • Ensure stable internet connectivity and that the Crypto APIs service is operational.

Links and References

Discussion