⚙️
API Docs
  • 👋WELCOME
    • About Daolity
    • Quick Start
  • Start Your Journey
    • Daolity registration & Account Setup
    • Obtaining API Keys & SDK Integration credentials
    • Prerequisites to use Daolity API & SDKs
    • Daolity SDK Installation
      • Basic Example 1
      • Basic Example 2
      • Basic Example 3
  • Daolity Setup
    • Daolity Setup
      • Overview
      • Mainnet Setup
        • Page 3
      • Testnet Setup
      • Using Windows
      • Using Mac
    • Daolity Dashboard
      • Overview
      • Creating & Managing Keys
      • Viewing, Editing & Revoking Keys
      • Team Access Management
      • Transaction Tracking
      • API Monitoring
  • Daolity SDKs
    • Overview
    • JavaScript SDK
    • TypeScript SDK
    • React SDK
    • Go SDK
  • NFT Collection Endpoints
    • NFT Total Supply
    • isWhitelisted
    • addUserAddressToWhitelist
    • SetPaused
    • RemoveNftFromCollection
    • WalletOfOwner
    • TokenURI
    • setCost
    • mint
    • mintForAddress
    • mintForFree
    • Withdraw
  • 💼Wallets
    • Overview
    • Getting Started
    • Wallet 1
      • Usage
      • Configuration
      • Methods
    • Wallet 2
    • Wallet 3
    • Setting Up Staking For Daolity Tools( For All Wallets)
  • Reference
    • Overview
    • API Reference
      • Supported HTTP Methods
      • Responses & Error Codes
      • DEMO
      • Data Formatting & Encoding Standards
  • Use Cases, Tutorials & Templates
    • Examples Use Cases
    • Step-by-Step Tutorials for Common Integration Scenarios
      • Simple DeFi Lending Dapp
      • NFT Marketplace
      • Minting NFT Collection
      • Token-gated Access Dapp
    • Templates
  • Pricing
    • Overview
    • Daolity Billing Model
    • Billing Case Study
  • Glossary
    • Key Terminologies
    • Definitions & Explanation Of Terms
  • Troubleshooting and FAQs
    • Common Integration Issues and Solutions
    • FAQs
    • Troubleshooting Guide
Powered by GitBook
On this page
  1. NFT Collection Endpoints

WalletOfOwner

  • Authentication Required: Yes {add the datils of Auth Needed}

  • ( organization / user ){use case and fir who}

POST https://daolity-staging-fd2c39ace734.herokuapp.com/nft/total-supply

Headers

Name
Type
Description

access-control-allow-origin

*

Content-Type:

keep-alive

Request Body

Name
Type
Description

privateKey*

String

contractAddress *

String

```json
{
    "status": false,
    "message": "Unauthorized request"
}
```

Curl

curl -X 'POST' \
  'https://daolity-staging-fd2c39ace734.herokuapp.com/nft/total-supply' \
  -H 'accept: */*' \
  -H 'Content-Type: application/json' \
  -d '{
  "privateKey": "string",
  "contractAddress": "string"
}'

Header:

 access-control-allow-origin: * 
 connection: keep-alive 
 content-length: 49 
 content-type: application/json; charset=utf-8 
 date: Thu,28 Sep 2023 17:07:41 GMT 
 etag: W/"31-zBHYq+MaG2Vl6D3ubX7jQE4s6GI" 
 server: Cowboy 
 via: 1.1 vegur 

PreviousRemoveNftFromCollectionNextTokenURI

Last updated 1 year ago