Minting APIs
GET Token Templates
List token templates
GET
/v1/apps/{appId}/token-templates
Bearer*
curl --request GET \
--url https://api.bitski.com/v1/apps/{appId}/token-templates \
--header 'Bearer: <bearer>'
This API requires the
apps
scopePath
appIdrequired
string
Your Bitski Application ID
Parameters
limit
number
The total number of results to include per page.
offset
number
The total number of previous results to offset for this page.
isDropLink
boolean
Optionally filter out templates for drop links.
Response
tokenTemplaterequired
Token Template object
{
"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-26T19:50:00.499Z",
"maxTokens": 100,
"name": "Bird NFT",
"namingTemplate": "DEFAULT",
"payouts": {},
"previewAt": "2023-04-26T19:50:00.499Z",
"prices": [
{
"currency": "USD",
"id": "3fa85f64-5717-4562-b3fc-2c963f66afa6",
"price": "200.00"
}
],
"published": true,
"salesEndAt": "2023-04-26T19:50:00.499Z",
"totalTokens": 57
}
]
}
curl --request GET \
--url https://api.bitski.com/v1/apps/{appId}/token-templates \
--header 'Bearer: <bearer>'
{
"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-26T19:50:00.499Z",
"maxTokens": 100,
"name": "Bird NFT",
"namingTemplate": "DEFAULT",
"payouts": {},
"previewAt": "2023-04-26T19:50:00.499Z",
"prices": [
{
"currency": "USD",
"id": "3fa85f64-5717-4562-b3fc-2c963f66afa6",
"price": "200.00"
}
],
"published": true,
"salesEndAt": "2023-04-26T19:50:00.499Z",
"totalTokens": 57
}
]
}