> ## Documentation Index
> Fetch the complete documentation index at: https://docs.etherscan.io/llms.txt
> Use this file to discover all available pages before exploring further.

# Get ERC1155 Token Transfers by Address

> Retrieves ERC-1155 token transfers, filtered by address and/or token contract.

export const chain = '1';

<ResponseExample>
  ```json Example response theme={null}
  {
    "status": "1",
    "message": "OK",
    "result": [
      {
        "blockNumber": "13472395",
        "timeStamp": "1634973285",
        "hash": "0x643b15f3ffaad5d38e33e5872b4ebaa7a643eda8b50ffd5331f682934ee65d4d",
        "nonce": "41",
        "blockHash": "0xa5da536dfbe8125eb146114e2ee0d0bdef2b20483aacbf30fed6b60f092059e6",
        "transactionIndex": "100",
        "gas": "140000",
        "gasPrice": "52898577246",
        "gasUsed": "105030",
        "cumulativeGasUsed": "11739203",
        "input": "deprecated",
        "methodId": "0x3e6b214b",
        "functionName": "",
        "contractAddress": "0x76be3b62873462d2142405439777e971754e8e77",
        "from": "0x1e63326a84d2fa207bdfa856da9278a93deba418",
        "to": "0x83f564d180b58ad9a02a449105568189ee7de8cb",
        "tokenID": "10371",
        "tokenValue": "1",
        "tokenName": "parallel",
        "tokenSymbol": "LL",
        "confirmations": "9995266"
      }
    ]
  }
  ```
</ResponseExample>


## OpenAPI

````yaml openapi/api-reference/endpoint/token1155tx.json GET /v2/api
openapi: 3.1.0
info:
  title: Get ERC1155 Token Transfers by Address
  version: 2.0.0
  description: >-
    Retrieves ERC-1155 token transfers, filtered by address and/or token
    contract.
  license:
    name: Etherscan API Terms
    url: https://etherscan.io/terms
servers:
  - url: https://api.etherscan.io
    description: Etherscan API.
security:
  - apiKey: []
paths:
  /v2/api:
    get:
      summary: Get ERC1155 Token Transfers by Address
      description: >-
        Retrieves ERC-1155 token transfers, filtered by address and/or token
        contract.
      operationId: getToken1155tx
      parameters:
        - name: chainid
          in: query
          required: true
          description: >-
            Chain ID to query, eg 1 for Ethereum, 42161 for Arbitrum from our
            [supported chains](/supported-chains).
          schema:
            type: string
          example: '1'
        - name: module
          in: query
          required: true
          description: Set to account for this endpoint.
          schema:
            type: string
            default: account
          example: account
        - name: action
          in: query
          required: true
          description: Set to token1155tx for this endpoint.
          schema:
            type: string
            default: token1155tx
          example: token1155tx
        - name: contractaddress
          in: query
          required: false
          description: >-
            The ERC-1155 token contract address to filter transfers by. Provide
            at least one of `address` or `contractaddress`.
          schema:
            type: string
          example: '0x76be3b62873462d2142405439777e971754e8e77'
        - name: address
          in: query
          required: false
          description: >-
            The account address to filter transfers by. Provide at least one of
            `address` or `contractaddress`.
          schema:
            type: string
          example: '0x83f564d180b58ad9a02a449105568189ee7de8cb'
        - name: page
          in: query
          required: false
          description: Page number for pagination.
          schema:
            type: integer
          example: 1
        - name: offset
          in: query
          required: false
          description: >-
            Number of records per page. Use the page parameter for subsequent
            records.
          schema:
            type: integer
          example: 100
        - name: startblock
          in: query
          required: false
          description: Starting block number to search from.
          schema:
            type: integer
          example: 0
        - name: endblock
          in: query
          required: false
          description: Ending block number to search to.
          schema:
            type: integer
          example: 999999999
        - name: sort
          in: query
          required: false
          description: >-
            Sort order either `desc` for the latest transactions first or `asc`
            for the oldest transactions first.
          schema:
            type: string
          example: asc
      responses:
        '200':
          description: Successful response
          content:
            application/json:
              schema:
                type: object
                properties:
                  status:
                    type: string
                    description: >-
                      1 if the request returned data, 0 otherwise. A status of 0
                      can indicate an error or a valid request that returned no
                      records.
                  message:
                    type: string
                    description: >-
                      OK on success, otherwise an error description such as
                      NOTOK. See [common error
                      messages](/common-error-messages).
                  result:
                    type: array
                    items:
                      type: object
                      properties:
                        blockNumber:
                          type: string
                          description: Block number in which the transaction was included.
                        timeStamp:
                          type: string
                          description: >-
                            Time the block was mined, as a UNIX timestamp in
                            seconds.
                        hash:
                          type: string
                          description: The transaction hash.
                        nonce:
                          type: string
                          description: >-
                            Number of transactions sent from the sending address
                            before this one.
                        blockHash:
                          type: string
                          description: Hash of the block containing the transaction.
                        transactionIndex:
                          type: string
                          description: Index position of the transaction within the block.
                        gas:
                          type: string
                          description: >-
                            Maximum units of gas the sender allowed for the
                            transaction.
                        gasPrice:
                          type: string
                          description: Price paid per unit of gas, in wei.
                        gasUsed:
                          type: string
                          description: Units of gas actually consumed by the transaction.
                        cumulativeGasUsed:
                          type: string
                          description: >-
                            Total gas used by all transactions up to and
                            including this one in the block.
                        input:
                          type: string
                          description: >-
                            Input data sent with the transaction, as a hex
                            string.
                        methodId:
                          type: string
                          description: >-
                            First four bytes of the input data, identifying the
                            called function.
                        functionName:
                          type: string
                          description: >-
                            Decoded function signature, when the target contract
                            is verified.
                        contractAddress:
                          type: string
                          description: Contract address of the token being transferred.
                        from:
                          type: string
                          description: Address that sent the transaction.
                        to:
                          type: string
                          description: >-
                            Recipient address. Empty for contract-creation
                            transactions.
                        tokenID:
                          type: string
                          description: Identifier of the specific NFT transferred.
                        tokenValue:
                          type: string
                          description: >-
                            Number of tokens transferred for this token ID
                            (ERC-1155).
                        tokenName:
                          type: string
                          description: Name of the token.
                        tokenSymbol:
                          type: string
                          description: Symbol of the token.
                        confirmations:
                          type: string
                          description: >-
                            Number of blocks mined after the block containing
                            this transaction.
      security:
        - apiKey: []
components:
  securitySchemes:
    apiKey:
      type: apiKey
      in: query
      name: apikey
      description: >-
        Enter your Etherscan API key, or [set one up](/set-up-your-api-key) if
        you don't have one.

````