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 List

GET
/udts
Chinese version: https://www.apifox.cn/web/project/962207

Request

Query Params
sort
string 
optional
Format: ${sort_column}[.asc | .desc]. Specifies the sorting method. Valid sort_column values: created_time, addresses_count,transactions. Example: created_time.desc for ascending order based on block timestamp Default: id.desc (sorting by id in descending order) if the parameter is empty.
Example:
created_time.asc
page
integer 
optional
Page
Example:
1
page_size
integer 
optional
How many udts are displayed per page
Example:
10
Header Params
Accept
string 
optional
Example:
application/vnd.api+json
Content-Type
string 
optional
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/udts?sort=created_time.asc&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 {3}] 
required
id
string 
optional
type
string 
optional
attributes
object 
optional
meta
object 
required
total
integer 
required
page_size
integer 
required
Example
{
  "data": [
    {
      "id": "string",
      "type": "string",
      "attributes": {
        "symbol": null,
        "full_name": null,
        "icon_file": null,
        "published": true,
        "description": null,
        "type_hash": "string",
        "type_script": null,
        "issuer_address": null,
        "display_name": null,
        "uan": null,
        "total_amount": "string",
        "addresses_count": "string",
        "decimal": "string",
        "h24_ckb_transactions_count": "string",
        "created_at": "string"
      }
    }
  ],
  "meta": {
    "total": 0,
    "page_size": 0
  }
}
Modified at 2023-07-12 02:48:53
Previous
Transaction List
Next
UDT
Built with