Collections

Create a collection

/v0/collections/create POST

Parameters

Key Description
title Title of the new collection
description Description of the new collection, should support HTML codes
link An optional link to lockable bonus content. This is any external URL supplied by the artist
rate The mint price in USD. Maximum of two decimal places
maxMint The maximum amount of NFTs in this particular collection before it sells out
owner UUID of the owner of the collection (this will come from session at a later date)

Response

{
    "title": "My Pix 2",
    "description": "My Pix is a collection of neat pics.",
    "link": "<https://mysecretplace.com>",
    "rate": "50.00",
    "maxMint": "10",
    "uuid": "f93a8da6-1caf-45ea-9187-e6c516a884ba"
}

Get a collection

/v0/collections/:collection GET

Parameters

Key Description
collection UUID of the collection

Response

{
    "title": "My Pix",
    "description": "My Pix is a collection of neat pics.",
    "link": "<https://mysecretplace.com>",
    "rate": "50.00",
    "maxMint": "10",
    "uuid": "aede9e6b-f57a-4961-b9fc-a10b26ae4073"
}

Tokens

Get Owned Tokens (Requires session)

/v0/tokens/self GET

Get Tokens by Owner