Skip to main content
GET
/
v1
/
apps
/
{appId}
/
contracts
GET Contracts
curl --request GET \
  --url https://api.bitski.com/v1/apps/{appId}/contracts
{
  "contracts": [
    {
      "contractType": "NON_FUNGIBLE",
      "tokenTemplates": [
        {
          "animationUrl": null,
          "contractId": "3fa85f64-5717-4562-b3fc-2c963f66afa6",
          "defaultMetadata": {},
          "delayMinting": true,
          "description": "A great token",
          "gatedContent": [],
          "id": "3fa85f64-5717-4562-b3fc-2c963f66afa6",
          "image": "https://cdn.bitskistatic.com/tokens-raw/54676382-bab5-408d-afe2-fc6f160da4a8/06fd0294-a425-44c7-96e8-9d24757163b4.png",
          "isDropLink": true,
          "liveAt": "2023-04-19T23:51:57.705Z",
          "maxTokens": 100,
          "name": "Bird NFT",
          "namingTemplate": "DEFAULT",
          "payouts": {},
          "previewAt": "2023-04-19T23:51:57.705Z",
          "prices": [
            {
              "currency": "USD",
              "id": "3fa85f64-5717-4562-b3fc-2c963f66afa6",
              "price": "200.00"
            }
          ],
          "published": true,
          "salesEndAt": "2023-04-19T23:51:57.705Z",
          "totalTokens": 57
        }
      ],
      "accessType": "OWNED",
      "address": "0x8b53d6e704485ef70bd02e2a91df126935a127c9",
      "deploymentState": "DEPLOYED",
      "description": "A collection of great NFTs",
      "externalLink": "https://www.bitski.com/@Stapleverse",
      "fee": "25.00",
      "id": "3fa85f64-5717-4562-b3fc-2c963f66afa6",
      "name": "My NFT Collection",
      "network": "mainnet"
    }
  ]
}

Documentation Index

Fetch the complete documentation index at: https://docs.bitski.com/llms.txt

Use this file to discover all available pages before exploring further.

This API requires the apps scope

Path

appId
string
required
Your Bitski Application ID

Parameters

includeTokenTemplates
boolean
Whether to include token templates in the response.
isDeployed
boolean
Filter by deployment status.
includeWatched
boolean
Filter by access type.

Examples

Example contract

Response

contracts
array
required
{
  "contracts": [
    {
      "contractType": "NON_FUNGIBLE",
      "tokenTemplates": [
        {
          "animationUrl": null,
          "contractId": "3fa85f64-5717-4562-b3fc-2c963f66afa6",
          "defaultMetadata": {},
          "delayMinting": true,
          "description": "A great token",
          "gatedContent": [],
          "id": "3fa85f64-5717-4562-b3fc-2c963f66afa6",
          "image": "https://cdn.bitskistatic.com/tokens-raw/54676382-bab5-408d-afe2-fc6f160da4a8/06fd0294-a425-44c7-96e8-9d24757163b4.png",
          "isDropLink": true,
          "liveAt": "2023-04-19T23:51:57.705Z",
          "maxTokens": 100,
          "name": "Bird NFT",
          "namingTemplate": "DEFAULT",
          "payouts": {},
          "previewAt": "2023-04-19T23:51:57.705Z",
          "prices": [
            {
              "currency": "USD",
              "id": "3fa85f64-5717-4562-b3fc-2c963f66afa6",
              "price": "200.00"
            }
          ],
          "published": true,
          "salesEndAt": "2023-04-19T23:51:57.705Z",
          "totalTokens": 57
        }
      ],
      "accessType": "OWNED",
      "address": "0x8b53d6e704485ef70bd02e2a91df126935a127c9",
      "deploymentState": "DEPLOYED",
      "description": "A collection of great NFTs",
      "externalLink": "https://www.bitski.com/@Stapleverse",
      "fee": "25.00",
      "id": "3fa85f64-5717-4562-b3fc-2c963f66afa6",
      "name": "My NFT Collection",
      "network": "mainnet"
    }
  ]
}