CryptoSender.io API
1. Fetch Transfer Logs
Fetch transaction status and received amounts for a given address and token on a specific chain.
GET
https://api.cryptosender.io/:protocol/:chainId/:address/:tokenAddress
Parameters:
- protocol: HTTP or WebSocket protocol.
http
or ws
- chainId: The blockchain network ID.
- address: User's wallet address.
- tokenAddress: The contract address of the token.
2. Fetch Specific Operation
Fetch transaction status and received amounts for a specific operation index on a token.
GET
https://api.cryptosender.io/:protocol/:chainId/:address/:tokenAddress/:index
Parameters:
- protocol: HTTP or WebSocket protocol.
http
or ws
- chainId: The blockchain network ID.
- address: User's wallet address.
- tokenAddress: The contract address of the token.
- index: The operation index to fetch.
3. Fetch Transaction Details
Fetch transaction status for a specific transaction hash and token on a chain.
GET
https://api.cryptosender.io/tx/:protocol/:chainId/:transactionHash/:tokenAddress
Parameters:
- protocol: HTTP or WebSocket protocol.
http
or ws
- chainId: The blockchain network ID.
- transactionHash: The transaction hash.
- tokenAddress: The contract address of the token.