Get NFTs By Token ID

Query Template

Filtering Options

ParameterTypeDescription
whereobject특정 조건을 기준으로 결과를 필터링하는 객체.
limitinteger반환할 최대 결과 수.
offsetinteger결과의 시작 위치를 지정.
order_byobject결과를 정렬하는 기준을 지정하는 객체. 여러 필드를 기준으로 정렬할 수 있습니다.

Query Fields

ParameterTypeDescription
decimalsinteger소수점 이하 자리 수.
is_deleted_v2boolean삭제 여부 (v2).
is_fungible_v2booleanFungible 여부 (v2).
largest_property_version_v1integer최대 속성 버전 (v1).
maximuminteger최대 공급량.
supplyinteger현재 공급량.
descriptionstring설명.
last_transaction_timestampstring마지막 트랜잭션의 타임스탬프 (ISO 8601 형식).
last_transaction_versioninteger마지막 트랜잭션의 버전.
token_data_idstring토큰 데이터 ID.
token_namestring토큰 이름.
token_propertiesobject토큰 속성.
token_standardstring토큰 표준.
token_uristring토큰 URI.
collection_idstring컬렉션 ID.
current_token_ownershipsarray현재 토큰 소유권 목록.
current_token_ownerships.owner_addressstring소유자의 주소.
current_token_ownerships.token_data_idstring토큰 데이터 ID.
current_token_ownerships.table_type_v1string테이블 유형 (v1).
current_token_ownerships.storage_idstring저장소 ID.
current_token_ownerships.property_version_v1integer속성 버전 (v1).
current_token_ownerships.token_standardstring토큰 표준.
current_token_ownerships.token_properties_mutated_v1object변형된 토큰 속성 (v1).
current_token_ownerships.amountinteger자산의 양.

Example

Request Example

query MyQuery {
  current_token_datas_v2(
    limit: 5
    offset: 0
    where: {
      token_data_id: {
        _eq: "0x9a47523002a8940afaae60cb01d13ccea0408b17e958ebf1940a9f687785d6da"
      }
    }
  ) {
    decimals
    is_deleted_v2
    is_fungible_v2
    largest_property_version_v1
    maximum
    supply
    description
    last_transaction_timestamp
    last_transaction_version
    token_data_id
    token_name
    token_properties
    token_standard
    token_uri
    collection_id
    current_token_ownerships(where: {amount: {_eq: "1"}}) {
      owner_address
      token_data_id
      table_type_v1
      storage_id
      property_version_v1
      token_standard
      token_properties_mutated_v1
      amount
    }
  }
}

Response Example

{
  "data": {
    "current_token_datas_v2": [
      {
        "decimals": 0,
        "is_deleted_v2": null,
        "is_fungible_v2": null,
        "largest_property_version_v1": 0,
        "maximum": 1,
        "supply": 1,
        "description": "",
        "last_transaction_timestamp": "2022-10-25T18:00:03.448912",
        "last_transaction_version": 12593221,
        "token_data_id": "0x9a47523002a8940afaae60cb01d13ccea0408b17e958ebf1940a9f687785d6da",
        "token_name": "AptosMonkeys #14",
        "token_properties": {},
        "token_standard": "v1",
        "token_uri": "ipfs://bafybeihnochxvsv6h43qvg4snenpeasoml66nwxhuiadfzkefix7vbetyq/14.json",
        "collection_id": "0x7ac8cecb76edbbd5da40d719bbb9795fc5744e4098ee0ce1be4bb86c90f42301",
        "current_token_ownerships": [
          {
            "owner_address": "0x67dbec453adfb79e0a7585bde660ed696f611e9f621850bef926a6609d0701db",
            "token_data_id": "0x9a47523002a8940afaae60cb01d13ccea0408b17e958ebf1940a9f687785d6da",
            "table_type_v1": "0x3::token::TokenStore",
            "storage_id": "0x1535e5735d83b57e52e0d2a82896051344d831e9c27247c53a3c9a6a35838521",
            "property_version_v1": 0,
            "token_standard": "v1",
            "token_properties_mutated_v1": {},
            "amount": 1
          }
        ]
      }
    ]
  }
}