CKB Explorer English
  1. NFT
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
        GET
      • NFT Collection List
        GET
      • NFT Collection
        GET
      • NFT Item
        GET
      • NFT Item List
        GET
      • NFT Transfer List
        GET
    • 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. NFT

NFT Item

GET
/nft/collections/{collection_id}/items/{id}
NFT Item by Collection Id and Item Id
Chinese version: https://www.apifox.cn/web/project/962207

Request

Path Params
collection_id
string 
required
Filter collection
Example:
147
id
string 
required
TokenID
Example:
1
Header Params
Accept
string 
required
Example:
application/vnd.api+json
Content-Type
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/v2/nft/collections/147/items/1' \
--header 'Accept: application/vnd.api+json' \
--header 'Content-Type: application/vnd.api+json'

Responses

🟢200Success
application/json
Body
id
integer 
required
token_id
string 
required
owner
string 
required
cell
object 
required
status
string 
required
tx_hash
string 
required
cell_index
integer 
required
type_script
object 
required
args
string 
required
code_hash
string 
required
hash_type
string 
required
script_hash
string 
required
name
null 
required
metadata_url
null 
required
icon_url
null 
required
created_at
string 
required
updated_at
string 
required
collection
object 
required
id
integer 
required
standard
string 
required
name
string 
required
description
string 
required
icon_url
string 
required
creator
string 
required
items_count
integer 
required
holders_count
integer 
required
type_script
object 
required
Example
{
  "id": 0,
  "token_id": "string",
  "owner": "string",
  "cell": {
    "status": "string",
    "tx_hash": "string",
    "cell_index": 0
  },
  "type_script": {
    "args": "string",
    "code_hash": "string",
    "hash_type": "string",
    "script_hash": "string"
  },
  "name": null,
  "metadata_url": null,
  "icon_url": null,
  "created_at": "string",
  "updated_at": "string",
  "collection": {
    "id": 0,
    "standard": "string",
    "name": "string",
    "description": "string",
    "icon_url": "string",
    "creator": "string",
    "items_count": 0,
    "holders_count": 0,
    "type_script": {
      "args": "string",
      "code_hash": "string",
      "hash_type": "string",
      "script_hash": "string"
    }
  }
}
Modified at 2023-02-27 06:30:01
Previous
NFT Collection
Next
NFT Item List
Built with