CKB Explorer English
  1. v1
CKB Explorer English
  • v1
    • Statistics
      • Statistic Info Charts
      • Daily Statistics
      • Block Statistics
      • Epoch Statistics
      • Statistics
      • Tip Block Number
    • Block List
      GET
    • Block by number or hash
      GET
    • Address
      GET
    • Transaction
      GET
    • Transaction List
      GET
    • UDT List
      GET
    • UDT
      GET
    • Udt Transaction List
      GET
    • Block Transaction List
      GET
    • Address Transaction List
      GET
    • Contract Transaction List
      GET
  • v2
    • NFT
      • NFT Hodlers List
      • NFT Collection List
      • NFT Collection
      • NFT Item
      • NFT Item List
      • NFT Transfer List
    • CoTA
      • Issuer of CoTA
      • CoTA NFT Class
      • Sender of CoTA NFT Item
      • Claim Status
      • Minted CoTA NFT Class by a specific issuer
      • CoTA Transaction List
    • Cell List
      GET
    • Live Cell List
      GET
    • Bit Accounts
      POST
    • Bit Accounts Copy
      POST
    • DAO Events of an address
      GET
    • Transactions referring to a specific script
      GET
    • Referring cells of a script
      GET
    • Deployed cells of a script
      GET
    • Script Info
      GET
    • Miner Versions Distribution
      GET
    • Pending Transaction List
      GET
    • Transaction Fees
      GET
  1. v1

Udt Transaction List

Developing
GET
/udt_transactions/{id}
Chinese version: https://www.apifox.cn/web/project/962207

Request

Path Params
id
string 
required
Udt type hash on the chain, e.g. 0x476AF7E041B33608CAF5943AA072FADE4393675893C055242638CE52715C42CD
Example:
0xe3be4fb98ec914886c6525abac97e1f8769c59492636a1d35955e9163ef46efa
Query Params
page
integer 
optional
Page
Example:
1
page_size
integer 
optional
How many blocks are displayed per page
Example:
10
tx_hash
string 
optional
Transaction tx_hash, e.g. 0x442f65398c5797116f1e52752288359413b21aeec7cbeb68884831151f5aa65f
Example:
0xd8668c851f09559868d4b91340670c4ee9a6dcf50184019cf42dcd8fa39a745b
address_hash
string 
optional
Address hash, e.g. ckt1qzda0cr08m85hc8jlnfp3zer7xulejywt49kt2rr0vthywaa50xwsqdgj7pfuc8wfclmpe9tue25nmz2thd044cwlg0jg
Example:
ckt1qzda0cr08m85hc8jlnfp3zer7xulejywt49kt2rr0vthywaa50xwsqdgj7pfuc8wfclmpe9tue25nmz2thd044cwlg0jg
Header Params
Content-Type
string 
required
Example:
application/vnd.api+json
Accept
string 
required
Example:
application/vnd.api+json

Request samples

Shell
JavaScript
Java
Swift
Go
PHP
Python
HTTP
C
C#
Objective-C
Ruby
OCaml
Dart
R
Request Request Example
Shell
JavaScript
Java
Swift
curl --location --request GET 'https://mainnet-api.explorer.nervos.org/api/v1/udt_transactions/0xe3be4fb98ec914886c6525abac97e1f8769c59492636a1d35955e9163ef46efa?page=1&page_size=10' \
--header 'Accept: application/vnd.api+json' \
--header 'Content-Type: application/vnd.api+json'

Responses

🟢200Success
application/json
Body
data
array[object (CkbTransactions) {3}] 
required
id
string 
required
type
string 
required
attributes
object 
required
meta
object 
required
total
integer 
required
page_size
integer 
required
Example
{
  "data": [
    {
      "id": "string",
      "type": "string",
      "attributes": {
        "is_cellbase": true,
        "transaction_hash": "string",
        "block_number": "string",
        "block_timestamp": "string",
        "display_inputs_count": 0,
        "display_outputs_count": 0,
        "display_inputs": [
          {
            "id": "string",
            "from_cellbase": true,
            "capacity": "string",
            "address_hash": "string",
            "target_block_number": "string",
            "generated_tx_hash": "string",
            "cell_index": "string",
            "cell_type": "string",
            "since": {
              "raw": "string",
              "median_timestamp": "string"
            }
          }
        ],
        "display_outputs": [
          {
            "id": "string",
            "capacity": "string",
            "address_hash": "string",
            "target_block_number": "string",
            "base_reward": "string",
            "commit_reward": "string",
            "proposal_reward": "string",
            "secondary_reward": "string",
            "status": "string",
            "consumed_tx_hash": "string",
            "cell_type": "string"
          }
        ],
        "income": "string"
      }
    }
  ],
  "meta": {
    "total": 0,
    "page_size": 0
  }
}
🟠422参数错误
Modified at 2023-07-12 02:57:14
Previous
UDT
Next
Block Transaction List
Built with