RSS3 Documentation

Retrieve Activity by ID

This endpoint retrieves the details of a specified decentralized transaction activity by its ID. You can specify additional query parameters to limit the number of actions retrieved and paginate through them.

GET
/decentralized/tx/{id}
/decentralized/tx/{id}

Path Parameters

id
Required
string

Retrieve details for the specified activity ID

Query Parameters

action_limitinteger

Specify the number of actions within the activity to retrieve

Default: 50Minimum: 1Maximum: 100

action_pageinteger

Specify the pagination for actions

Default: 1Minimum: 1
curl -X GET "https://gi.rss3.io/decentralized/tx/string?action_limit=50&action_page=1"

A successful response containing the details of the specified activity. The response includes the activity ID, timestamp, and a list of actions performed within the activity.

{
  "data": {
    "id": "0x840e42d573ebe1ff27a9e4914573b4e0518fcd685c7f9331d319abe854f780e3",
    "owner": "0xd8dA6BF26964aF9D7eEd9e03E53415D37aA96045",
    "network": "ethereum",
    "from": "0xBAB4d1f27bAA7762a4d822B80C647F715922492f",
    "to": "0x7964B6A8aE5a71409e7E17a5b2669903A27997Ac",
    "index": 0,
    "platform": "1inch",
    "success": true,
    "tag": "transaction",
    "type": "transfer",
    "calldata": {
      "function_hash": "0x4022b75e"
    },
    "direction": "out",
    "fee": {
      "amount": "315699955320960",
      "decimal": 18
    },
    "timestamp": 1718689727,
    "total_actions": 1,
    "actions": [
      {
        "tag": "transaction",
        "type": "transfer",
        "from": "0xd8dA6BF26964aF9D7eEd9e03E53415D37aA96045",
        "to": "0xefC5f77c5AD5DB85bc287E80d8c3B88c3f27662C",
        "metadata": {
          "address": "0x7964B6A8aE5a71409e7E17a5b2669903A27997Ac",
          "value": "10000000000000000000000",
          "name": "PlayDoge",
          "symbol": "PLAY",
          "decimals": 18,
          "standard": "ERC-20"
        },
        "related_urls": [
          "https://etherscan.io/tx/0x840e42d573ebe1ff27a9e4914573b4e0518fcd685c7f9331d319abe854f780e3"
        ]
      }
    ]
  },
  "meta": {
    "totalPages": 1
  }
}