List Internal Transactions By Address And Time Range

Through this endpoint customers can list internal transactions by the address attribute and the query parameters fromTimestamp and toTimestamp which gives customers the opportunity to filter the results by a specified time period.

List of Results - This endpoint returns multiple objects which means pagination is applicable. GET /blockchain-data/{blockchain}/{network}/addresses/{address}/internal-by-time-range

Path Parameters

  • Required
    blockchain string

    Represents the specific blockchain protocol name, e.g. Ethereum, Bitcoin, etc.

    Example : ethereum
    Possible Values : ethereum ethereum-classic binance-smart-chain
  • Required
    network string

    Represents the name of the blockchain network used; blockchain networks are usually identical as technology and software, but they differ in data, e.g. - "mainnet" is the live network with actual data while networks like "testnet", "ropsten" are test networks.

    Example : sepolia
    Possible Values : mainnet mordor testnet sepolia
  • Required
    address string

    String identifier of the address document represented in CryptoAPIs

    Example : 0x0902a667d6a3f287835e0a4593cae4167384abc6

Query parameters

  • Optional
    context 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.

    Example : yourExampleString
  • Required
    fromTimestamp integer

    Defines the specific time/date from which the results will start being listed.

    Example : 1635979828
  • Optional
    limit integer

    Defines how many items should be returned in the response per page basis.

    Default : 50
    Example : 50
  • Optional
    offset integer

    The starting index of the response items, i.e. where the response should start listing the returned items.

    Default : 0
    Example : 0
  • Required
    toTimestamp integer

    Defines the specific time/date to which the results will be listed.

    Example : 1643329896

Response schema

200 400 401 402 403 409 415 422 429 500
HTTP Status Code: 200
Content-Type: application/json

The request has been successful.

  • Object :

  • Required
    apiVersion string

    Specifies the version of the API that incorporates this endpoint.

    Example : 2023-04-25
  • Required
    requestId string

    Defines the ID of the request. The requestId is generated by Crypto APIs and it's unique for every request.

    Example : 601c1710034ed6d407996b30
  • Optional
    context 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.

    Example : yourExampleString
  • Required
    data object
    • Required
      limit integer

      Defines how many items should be returned in the response per page basis.

      Example : 50
    • Required
      offset integer

      The starting index of the response items, i.e. where the response should start listing the returned items.

      Example : 0
    • Required
      total integer

      Defines the total number of items returned in the response.

      Example : 100
    • Required
      items array
      Example : Array ( )
      • Required
        amount string

        Defines the specific amount of the transaction.

        Example : 0.089286906469667626
      • Required
        minedInBlockHash string

        Represents the hash of the block where this transaction was mined/confirmed for first time. The hash is defined as a cryptographic digital fingerprint made by hashing the block header twice through the SHA256 algorithm.

        Example : 0x85ce0aa9628726c60db14526be8a2b823084b1f4c3dcccdc10b0235f23a49e66
      • Required
        minedInBlockHeight integer

        Represents the hight of the block where this transaction was mined/confirmed for first time. The height is defined as the number of blocks in the blockchain preceding this specific block.

        Example : 11135508
      • Required
        operationID string

        Represents the unique internal transaction ID in regards to the parent transaction (type trace address).

        Example : call_1
      • Required
        operationType string

        Defines the call type of the internal transaction.

        Example : CALL
      • Required
        parentHash string

        Defines the specific hash of the parent transaction.

        Example : 0x5d4ea0471b70de09fa3d6a4bc32f703ec44483bffa4d6169fa0a36c6a1dc108a
      • Required
        recipient string

        Represents the recipient address with the respective amount.

        Example : 0xc6d46aba0c6e2eb6358c4e24804158cc4d847922
      • Required
        sender string

        Represents the sender address with the respective amount.

        Example : 0x0902a667d6a3f287835e0a4593cae4167384abc6
      • Required
        timestamp integer
        Example : 1582202940

Credits Cost : 500 Credits For 1 Result(s)

Try it out

Request Example

GET
https://rest.cryptoapis.io/blockchain-data/ethereum/sepolia/addresses/0x0902a667d6a3f287835e0a4593cae4167384abc6/internal-by-time-range?context=yourExampleString&fromTimestamp=1635979828&limit=50&offset=0&toTimestamp=1643329896
Headers
Content-Type: application/json
X-API-Key: my-api-key

Response Example

{
    "apiVersion": "2023-04-25",
    "requestId": "601c1710034ed6d407996b30",
    "context": "yourExampleString",
    "data": {
        "limit": 50,
        "offset": 0,
        "total": 100,
        "items": [
            {
                "amount": "0.089286906469667626",
                "minedInBlockHash": "0x85ce0aa9628726c60db14526be8a2b823084b1f4c3dcccdc10b0235f23a49e66",
                "minedInBlockHeight": 11135508,
                "operationID": "call_1",
                "operationType": "CALL",
                "parentHash": "0x5d4ea0471b70de09fa3d6a4bc32f703ec44483bffa4d6169fa0a36c6a1dc108a",
                "recipient": "0xc6d46aba0c6e2eb6358c4e24804158cc4d847922",
                "sender": "0x0902a667d6a3f287835e0a4593cae4167384abc6",
                "timestamp": 1582202940
            }
        ]
    }
}