Collection

Get collections.

get
Authorizations
Responses
200
Returns collections.
application/json
get
GET /v1/collection HTTP/1.1
Host: api.matrica.io
X-API-Key: YOUR_API_KEY
Accept: */*
[
  {
    "id": "text",
    "name": "text",
    "profile": {
      "name": "text",
      "pfp": "text",
      "banner": "text",
      "website": "text",
      "twitter": "text",
      "discord": "text"
    },
    "stats": {}
  }
]

Get collection by NFT.

get
Authorizations
Path parameters
nftIdstringRequired

NFT ID

Responses
200
Returns the collection.
application/json
get
GET /v1/collection/nft/{nftId} HTTP/1.1
Host: api.matrica.io
X-API-Key: YOUR_API_KEY
Accept: */*
{
  "id": "text",
  "name": "text",
  "profile": {
    "name": "text",
    "pfp": "text",
    "banner": "text",
    "website": "text",
    "twitter": "text",
    "discord": "text"
  }
}

Last updated