1. Configure your application

Set your auth token, your application id, and your contract ID.

# Get an auth token using your Developer Portal credentials.
AUTH_TOKEN = ""
# Your application id is also in the Developer Portal.
APP_ID = ""
# Get your contract id from a previously created contract, or create a new one.
CONTRACT_ID = ""

2. Configure your token template

A limit to the total tokens that can be created from this template.

Set the base name that will be assigned to each token.

Set the id of the contract that new tokens will be minted from.

Configure a token template which will be used a base for your NFTs. See create token template for all available options
TOKEN_TEMPLATE = {
    "tokenTemplate": {
        "maxTokens": 10000,
        "name": "Bitski Test NFTs",
        "contractId": CONTRACT_ID,
        "published": False,
    },
}

3. Create the token template

Send a POST request to the API with the authentication token and token template payload in the request body. You should receive a 201 status code if it worked.

def create_token_template(auth_token, app_id, template):
    """Create a token template to set common attributes that will apply to all
    NFTs minted from the contract that use the template id from the API response."""

    response = requests.post(
        f"https://api.bitski.com/v1/apps/{app_id}/token-templates",
        json=template,
        headers={
            "Authorization": f"Bearer {auth_token}",
            "Content-Type": "application/json",
        },
    )
    print("Created template successfully", response.status_code == 201)
    return response

4. Remember your token template id

After creating the template, you will need to use the returned id to mint a NFT. It will be returned in the tokenTemplate.id field of the JSON response.

response = create_token_template(AUTH_TOKEN, APP_ID, TOKEN_TEMPLATE)
    template_id = response.json()["tokenTemplate"]["id"]
    print(f"token template id: {template_id}")