/v0/collections/create POST
| 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) | 
{
    "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"
}
/v0/collections/:collection GET
| Key | Description | 
|---|---|
| collection | UUID of the collection | 
{
    "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"
}
/v0/tokens/self GET