Skip to main content
GET
/
api
/
v1
/
tokenization
/
collections
/
{id}
/
tokens
/
{tokenId}
Get Collection Token Details
curl --request GET \
  --url https://sandbox.oumla.com/api/v1/tokenization/collections/{id}/tokens/{tokenId} \
  --header 'x-api-key: <api-key>'
{
  "collcetion": {
    "id": "1",
    "collectionId": "123e4567-e89b-12d3-a456-426614174000",
    "name": "My Collection #1",
    "symbol": "MC",
    "network": "ETH",
    "addressId": "123e4567-e89b-12d3-a456-426614174000",
    "contractAddress": "0x742d35Cc6634C0532925a3b844Bc9e7595f0bEb",
    "status": "ACTIVE",
    "recipientAddress": "0x742d35Cc6634C0532925a3b844Bc9e7595f0bEb",
    "mintTransactionHash": "0x1234567890abcdef",
    "burnTransactionHash": "0xabcdef1234567890",
    "mintedAt": "2024-01-01T00:00:00.000Z",
    "burnedAt": "2024-01-01T00:00:00.000Z",
    "metadata": {
      "name": "<string>",
      "description": "<string>",
      "image": "<string>",
      "animation_url": "<string>",
      "external_url": "<string>",
      "attributes": [
        {
          "trait_type": "<string>",
          "value": "<string>",
          "display_type": "<string>"
        }
      ]
    },
    "mintRecord": {
      "id": "<string>",
      "amount": "<string>",
      "note": "<string>",
      "status": "<string>",
      "createdAt": "2023-11-07T05:31:56Z",
      "updatedAt": "2023-11-07T05:31:56Z"
    },
    "burnRecord": {
      "id": "<string>",
      "amount": "<string>",
      "note": "<string>",
      "status": "<string>",
      "createdAt": "2023-11-07T05:31:56Z",
      "updatedAt": "2023-11-07T05:31:56Z"
    }
  }
}

Authorizations

x-api-key
string
header
required

API key for authentication. Obtain your API key from the dashboard.

Headers

x-sdk-version
string
default:1.0.0

SDK version header

Path Parameters

id
string
required

Collection ID

tokenId
string
required

Token ID

Response

Successfully retrieved collection token details

Collection token details response object

collcetion
object