Create a Collection

Create a Collection

post

This endpoint allows you to create a new Collection.

Authorizations
AuthorizationstringRequired
Bearer authentication header of the form Bearer <token>.
Body
namestringRequired

Name for you NFT Collection

descriptionstringRequired

Description for your NFT Collection

imagestringRequired

URL pointing to an image for your NFT Collection

Responses
post
/v1/collections

Example

curl -X POST \
        --url https://api.underdogprotocol.com/v1/collections \
        -H "Content-Type: application/json" \
        -H "Authorization: Bearer {token}" \
        -d '
{
        "name": "Underdog Protocol",
	"description": "Underdog Protocol Collection",
        "image": "https://underdogprotocol.com/logo-dark.svg"
}'

Last updated