# Token ERC-1155 vs ERC-721

The most significant difference between Token **ERC-1155** and **ERC-721** standards lies in their fundamental properties.

In the Token **ERC-721** standard, there is always only one unit, and the concept of an "amount" is absent entirely. This means you can mint only a single unit with a unique ID and associated specific metadata. Each minting operation results in an individual token, ensuring distinctiveness. On the other hand, in the **ERC-1155** standard, the "amount" field is present. This enables you to mint tokens with designated IDs and metadata, with the capacity for X number of these tokens.

In summary, Token **ERC-721** allows for meticulous control over singular, unique tokens with specific attributes, while **ERC-1155** introduces the concept of "amount," enabling the minting of multiple tokens sharing the same ID and metadata structure.

**Example:**

Imagine you would like to mint an NFT featuring a car and you desire to acquire 10 identical units.

Under the **ERC-721** standard, you would need to perform the minting process 10 times for the same NFT design, resulting in each NFT having a distinct Token ID.

Under the **ERC-1155** standard, you would only need to mint the NFT once, specifying a supply of 10. Consequently, all 10 NFTs would share the same Token ID while representing separate units.


---

# Agent Instructions: Querying This Documentation

If you need additional information that is not directly available in this page, you can query the documentation dynamically by asking a question.

Perform an HTTP GET request on the current page URL with the `ask` query parameter:

```
GET https://docs.metaproprotocol.com/general-information/token-erc-1155-vs-erc-721.md?ask=<question>
```

The question should be specific, self-contained, and written in natural language.
The response will contain a direct answer to the question and relevant excerpts and sources from the documentation.

Use this mechanism when the answer is not explicitly present in the current page, you need clarification or additional context, or you want to retrieve related documentation sections.
