Niftory Docs
  • What is Niftory?
  • Get your API Keys
  • 👩‍💻API
    • Niftory Web3 API
    • SDK QuickStart
      • Using the SDK in React
      • Using the SDK from the Server
    • API Quickstart
      • Create your first Wallet
      • API calls with Sample Content
      • Mint your first NFT
    • API Cheat Sheet
    • Niftory Sample App
      • Explore the Sample App
      • Anatomy of a Niftory App
        • Getting Authenticated
        • GraphQL Client Setup
        • API Usage
        • Transfer an NFT
    • 💡Core Concepts
      • Niftory Data Model
      • Authentication
        • Using Your API Key
        • Configuring Your App
        • Privileged Authentication
      • App and AppUser
      • NFTs
        • Creating NFTs
        • Querying NFTs
        • Transferring NFTs
        • Minting NFTs
      • Wallets
        • Create a Niftory Wallet
        • Register External Wallets
        • Query Wallets
      • Contract
      • User Auth (Client-Side)
    • Your Niftory Account
  • 🧑‍💼Admin Portal
    • Niftory Admin Portal
    • 🚀Guides
      • Setting Up Your Org
      • Create Your First NFT
    • 🗺️Explore
      • Org and Apps
      • NFT Collection
        • Sets
        • Collectibles
        • NFTs
    • 💼Use Cases
      • For Engineers
      • For Designers
      • For Business Users
  • 📖Reference
    • GraphQL & Auth Endpoints
    • API Reference
    • SDK API Reference
Powered by GitBook
On this page
  • Login to the Niftory Sample App at sample.niftory.com
  • Copy the API Key and Authorization header from the app
  • Go to our GraphQL Playground or Postman Collection
  • Try making API calls

Was this helpful?

  1. API
  2. API Quickstart

API calls with Sample Content

Explore the API against the sample app's content

PreviousCreate your first WalletNextMint your first NFT

Last updated 1 year ago

Was this helpful?

These API calls are against a common sample environment. To get your own application, follow the steps after this!

Login to the Niftory Sample App at

This is a deployed version of our , managed by Niftory.

Copy the API Key and Authorization header from the app

For your convenience, the app's API key is printed out for you, and authorization header can be copied after you log in to the app:

Add the values you copied from the previous sections to these request headers:

  • X-Niftory-API-Key

  • Authorization

In Apollo Studio, copy/paste the values into the environment variables section as "apiKey" and "token"

Try making API calls

Here's an example query to try:

query NFTModelsQuery {
  nftModels {
    items {
      id
      title
      description     
    }
  }
}

Learn more about the Niftory API:

Go to our or

Niftory GraphQL Playground

This query returns the list of NFTModels that the Sample App has available for users to mint an NFT from. For more queries, see .

Now you're ready to build your own - we recommend you start with the to get the basics set up!

👩‍💻
GraphQL Playground
Postman Collection
Querying NFTs
Niftory Data Model
API Cheat Sheet
Niftory Sample App
Create Your Account
sample.niftory.com
Sample App
Apollo Studio
Niftory GraphQL Playground