> ## 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 tables.

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



## OpenAPI

````yaml /openapi-specs/pro-api-v11.yaml get /v2/mud/worlds/{world}/tables
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:
    get:
      tags:
        - mud
      summary: List of MUD world tables.
      description: Retrieves a paginated list of MUD tables in the specific MUD world.
      operationId: BlockScoutWeb.API.V2.MudController.world_tables
      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: Search query filter
          in: query
          name: q
          required: false
          schema:
            nullable: true
            type: string
            x-struct: null
            x-validate: null
        - description: Filter by namespace
          in: query
          name: filter_namespace
          required: false
          schema:
            type: string
            x-struct: null
            x-validate: null
        - description: MUD table ID for paging
          in: query
          name: table_id
          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/TableWithSchema'
                    nullable: false
                    type: array
                    x-struct: null
                    x-validate: null
                  next_page_params:
                    example:
                      items_count: 50
                      table_id: >-
                        0x746243484553545f5641554c5400000043686573744163636573730000000000
                    nullable: true
                    type: object
                    x-struct: null
                    x-validate: null
                required:
                  - items
                  - next_page_params
                type: object
                x-struct: null
                x-validate: null
          description: List of MUD tables.
        '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
    TableWithSchema:
      additionalProperties: false
      description: MUD Table with TableSchema struct.
      nullable: false
      properties:
        record:
          $ref: '#/components/schemas/Record'
        schema:
          $ref: '#/components/schemas/TableSchema'
        table:
          $ref: '#/components/schemas/Table'
      required:
        - table
        - schema
        - record
      title: TableWithSchema
      type: object
      x-struct: Elixir.BlockScoutWeb.Schemas.API.V2.MUD.TableWithSchema
      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
    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
    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
    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

````