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

# List of MUD world table records.

> Retrieves a paginated list of records in the specific MUD world table.



## OpenAPI

````yaml /openapi-specs/pro-api-v11.yaml get /v2/mud/worlds/{world}/tables/{table_id}/records
openapi: 3.0.0
info:
  contact:
    email: info@blockscout.com
  title: Blockscout
  version: 11.0.3
servers:
  - url: http://localhost/api
    variables: {}
security: []
tags:
  - name: blocks
  - name: transactions
  - name: addresses
  - name: internal-transactions
  - name: tokens
  - name: token-transfers
  - name: smart-contracts
  - name: config
  - name: main-page
  - name: search
  - name: stats
  - name: csv-export
  - name: account-abstraction
  - name: withdrawals
  - name: advanced-filters
  - name: arbitrum
  - name: legacy
  - name: optimism
  - name: mud
  - name: celo
  - name: scroll
  - name: zilliqa
paths:
  /v2/mud/worlds/{world}/tables/{table_id}/records:
    get:
      tags:
        - mud
      summary: List of MUD world table records.
      description: Retrieves a paginated list of records in the specific MUD world table.
      operationId: BlockScoutWeb.API.V2.MudController.world_table_records
      parameters:
        - description: API key for rate limiting or for sensitive endpoints
          in: query
          name: apikey
          required: false
          schema:
            type: string
            x-struct: null
            x-validate: null
        - description: Secret key for getting access to restricted resources
          in: query
          name: key
          required: false
          schema:
            type: string
            x-struct: null
            x-validate: null
        - description: MUD world address hash in the path
          in: path
          name: world
          required: true
          schema:
            $ref: '#/components/schemas/AddressHash'
        - description: MUD table ID in the path
          in: path
          name: table_id
          required: true
          schema:
            $ref: '#/components/schemas/FullHash'
        - description: Filter by key0
          in: query
          name: filter_key0
          required: false
          schema:
            type: string
            x-struct: null
            x-validate: null
        - description: Filter by key1
          in: query
          name: filter_key1
          required: false
          schema:
            type: string
            x-struct: null
            x-validate: null
        - description: |
            Sort results by:
            * key_bytes - Sort by MUD record key_bytes
            * key0 - Sort by MUD record key0
            * key1 - Sort by MUD record key1
            Should be used together with `order` parameter.
          in: query
          name: sort
          required: false
          schema:
            enum:
              - key_bytes
              - key0
              - key1
            type: string
            x-struct: null
            x-validate: null
        - description: |
            Sort order:
            * asc - Ascending order
            * desc - Descending order
            Should be used together with `sort` parameter.
          in: query
          name: order
          required: false
          schema:
            enum:
              - asc
              - desc
            type: string
            x-struct: null
            x-validate: null
        - description: MUD record key_bytes for paging
          in: query
          name: key_bytes
          required: false
          schema:
            $ref: '#/components/schemas/HexString'
        - description: MUD record key0 for paging
          in: query
          name: key0
          required: false
          schema:
            $ref: '#/components/schemas/FullHash'
        - description: MUD record key1 for paging
          in: query
          name: key1
          required: false
          schema:
            $ref: '#/components/schemas/FullHash'
        - description: Number of items returned per page
          in: query
          name: items_count
          required: false
          schema:
            maximum: 50
            minimum: 1
            type: integer
            x-struct: null
            x-validate: null
      responses:
        '200':
          content:
            application/json:
              schema:
                additionalProperties: false
                nullable: false
                properties:
                  items:
                    items:
                      $ref: '#/components/schemas/Record'
                    nullable: false
                    type: array
                    x-struct: null
                    x-validate: null
                  next_page_params:
                    example:
                      items_count: 50
                      key0: >-
                        0x73796269746c7900000000000000000043686573743332000000000000000000
                      key_bytes: >-
                        0x73796269746c7900000000000000000043686573743332000000000000000000
                    nullable: true
                    type: object
                    x-struct: null
                    x-validate: null
                  schema:
                    $ref: '#/components/schemas/TableSchema'
                  table:
                    $ref: '#/components/schemas/Table'
                required:
                  - items
                  - next_page_params
                  - table
                  - schema
                type: object
                x-struct: null
                x-validate: null
          description: List of MUD world table records.
        '422':
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/JsonErrorResponse'
          description: Unprocessable Entity
      callbacks: {}
components:
  schemas:
    AddressHash:
      nullable: false
      pattern: ^0x([A-Fa-f0-9]{40})$
      title: AddressHash
      type: string
      x-struct: Elixir.BlockScoutWeb.Schemas.API.V2.General.AddressHash
      x-validate: null
    FullHash:
      nullable: false
      pattern: ^0x([A-Fa-f0-9]{64})$
      title: FullHash
      type: string
      x-struct: Elixir.BlockScoutWeb.Schemas.API.V2.General.FullHash
      x-validate: null
    HexString:
      nullable: false
      pattern: ^0x([A-Fa-f0-9]*)$
      title: HexString
      type: string
      x-struct: Elixir.BlockScoutWeb.Schemas.API.V2.General.HexString
      x-validate: null
    Record:
      additionalProperties: false
      description: MUD Record struct.
      nullable: false
      properties:
        decoded:
          nullable: true
          type: object
          x-struct: null
          x-validate: null
        id:
          $ref: '#/components/schemas/HexString'
        is_deleted:
          nullable: false
          type: boolean
          x-struct: null
          x-validate: null
        raw:
          nullable: false
          properties:
            block_number:
              $ref: '#/components/schemas/IntegerString'
            dynamic_data:
              $ref: '#/components/schemas/HexString'
            encoded_lengths:
              $ref: '#/components/schemas/FullHash'
            key0:
              $ref: '#/components/schemas/FullHash'
            key1:
              $ref: '#/components/schemas/FullHash'
            key_bytes:
              $ref: '#/components/schemas/HexString'
            log_index:
              $ref: '#/components/schemas/IntegerString'
            static_data:
              $ref: '#/components/schemas/HexString'
          type: object
          x-struct: null
          x-validate: null
        timestamp:
          $ref: '#/components/schemas/Timestamp'
      required:
        - id
        - raw
        - timestamp
        - decoded
        - is_deleted
      title: Record
      type: object
      x-struct: Elixir.BlockScoutWeb.Schemas.API.V2.MUD.Record
      x-validate: null
    TableSchema:
      additionalProperties: false
      description: MUD TableSchema struct.
      nullable: false
      properties:
        key_names:
          items:
            nullable: false
            type: string
            x-struct: null
            x-validate: null
          nullable: false
          type: array
          x-struct: null
          x-validate: null
        key_types:
          items:
            nullable: false
            type: string
            x-struct: null
            x-validate: null
          nullable: false
          type: array
          x-struct: null
          x-validate: null
        value_names:
          items:
            nullable: false
            type: string
            x-struct: null
            x-validate: null
          nullable: false
          type: array
          x-struct: null
          x-validate: null
        value_types:
          items:
            nullable: false
            type: string
            x-struct: null
            x-validate: null
          nullable: false
          type: array
          x-struct: null
          x-validate: null
      required:
        - key_names
        - key_types
        - value_names
        - value_types
      title: TableSchema
      type: object
      x-struct: Elixir.BlockScoutWeb.Schemas.API.V2.MUD.TableSchema
      x-validate: null
    Table:
      additionalProperties: false
      description: MUD Table struct.
      nullable: false
      properties:
        table_full_name:
          nullable: false
          type: string
          x-struct: null
          x-validate: null
        table_id:
          $ref: '#/components/schemas/FullHash'
        table_name:
          nullable: false
          type: string
          x-struct: null
          x-validate: null
        table_namespace:
          nullable: false
          type: string
          x-struct: null
          x-validate: null
        table_type:
          enum:
            - offchain
            - onchain
            - unknown
          nullable: false
          type: string
          x-struct: null
          x-validate: null
      required:
        - table_id
        - table_full_name
        - table_type
        - table_namespace
        - table_name
      title: Table
      type: object
      x-struct: Elixir.BlockScoutWeb.Schemas.API.V2.MUD.Table
      x-validate: null
    JsonErrorResponse:
      properties:
        errors:
          items:
            properties:
              detail:
                example: null value where string expected
                type: string
                x-struct: null
                x-validate: null
              source:
                properties:
                  pointer:
                    example: /data/attributes/petName
                    type: string
                    x-struct: null
                    x-validate: null
                required:
                  - pointer
                type: object
                x-struct: null
                x-validate: null
              title:
                example: Invalid value
                type: string
                x-struct: null
                x-validate: null
            required:
              - title
              - source
              - detail
            type: object
            x-struct: null
            x-validate: null
          type: array
          x-struct: null
          x-validate: null
      required:
        - errors
      title: JsonErrorResponse
      type: object
      x-struct: Elixir.OpenApiSpex.JsonErrorResponse
      x-validate: null
    IntegerString:
      nullable: false
      pattern: ^-?([1-9][0-9]*|0)$
      title: IntegerString
      type: string
      x-struct: Elixir.BlockScoutWeb.Schemas.API.V2.General.IntegerString
      x-validate: null
    Timestamp:
      description: Block timestamp of the parent transaction.
      format: date-time
      nullable: false
      title: Timestamp
      type: string
      x-struct: Elixir.BlockScoutWeb.Schemas.API.V2.General.Timestamp
      x-validate: null

````