Innovaz
Website Linktree
  • Introduction
  • Whitepaper
    • Summary
    • Introduction
    • Problem
    • Solution
    • Market Analysis
    • Competitive Landscape
    • The team
    • Roadmap
  • 🤓User Guide
    • Create an account and log in
    • Create an NFT Collection
    • Customize Template
    • Release NFT Collection
    • Edit Template
    • Mint NFT
  • ⚙️API documents
    • Overview
    • HTTP Status Code
    • Authentication
    • Webhooks & Notifications
    • Chains
    • Collections
    • Link/Unlink
    • Marketplace
  • ⚙️SDK Integrate
    • 1. Python SDK
    • 2. NPM
  • Terms
  • Privacy
Powered by GitBook
On this page
  • Get all your collection
  • Get all NFT in the collections
  • Get NFT detail by token_id
  1. API documents

Collections

PreviousChainsNextLink/Unlink

Last updated 1 year ago

Get all your collection

GET /v1/app/collections

Headers:

Query Parameters

Name
Type
Description

chain_id

String

The ID of the blockchain

address

String

The contract address (EVM) or identifier of your collection in blockchain(Non EVM)

limit

String

The limit response that you want to get.

offset

String

The index of the start item that you want to get.

{
    "data": {
        "collections": [
             {
                "name": string,
                "owner": string,
                "description": string,
                "address": string,
                "link": string,
                "total_supply": int,
                "total_minted": int,
                "status": string
             }
         ],
        "total": int
    },
    "code": 200
}

Get all NFT in the collections

GET /v1/app/collection/<address>

{
    "data": {
        "nfts": [
             {
                "token_id": string,
                "owner": string,
                "description": string,
                "metadata_link": string,
                "last_updated": float,
                "status": string
             }
         ],
        "total": int
    },
    "code": 200
}

Get NFT detail by token_id

GET /v1/app/collection/<address>/<token_id>

{
    "data": {
        "token_id": string,
        "owner": string,
        "description": string,
        "metadata_link": string,
        "last_updated": float,
        "status": string
    },
    "code": 200
}

Headers:

Headers:

⚙️
Authentication
Authentication
Authentication