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

# getMaxRetransmitSlot

> Lấy slot lớn nhất được ghi nhận từ giai đoạn truyền lại, nơi một trình xác thực hiện đang truyền lại các mảnh dữ liệu để hỗ trợ khôi phục các nút khác



## OpenAPI

````yaml vi/openapi/rpc-http/getMaxRetransmitSlot.yaml POST /
openapi: 3.1.0
info:
  title: Solana RPC API
  version: 1.0.0
  description: >-
    API về độ tin cậy của trình xác thực, dùng để truy xuất slot blockchain cao
    nhất mà nút Solana này đang tích cực truyền lại các mảnh dữ liệu bị thiếu
    đến những nút khác.
  license:
    name: Apache 2.0
    url: https://www.apache.org/licenses/LICENSE-2.0.html
servers:
  - url: https://mainnet.helius-rpc.com
    description: Điểm cuối RPC Mainnet
  - url: https://devnet.helius-rpc.com
    description: Điểm cuối RPC Devnet
security: []
paths:
  /:
    post:
      tags:
        - RPC
      summary: getMaxRetransmitSlot
      description: >
        Truy xuất slot cao nhất mà trình xác thực Solana này đang tích cực
        truyền lại dữ liệu blockchain.

        API chẩn đoán nâng cao này cung cấp thông tin về cơ chế sửa chữa dữ liệu
        của trình xác thực,

        cho biết slot tối đa mà trình xác thực hiện đang hỗ trợ khôi phục và
        phân phối lại các mảnh

        blockchain bị thiếu đến những nút khác. Thông tin này rất quan trọng đối
        với đơn vị vận hành trình xác thực khi giám sát

        mức độ tham gia mạng, kỹ sư về tính khả dụng của dữ liệu khi bảo đảm khả
        năng phục hồi của blockchain và các công cụ

        chẩn đoán khi theo dõi hiệu quả của hệ thống truyền bá khối turbine của
        Solana trong việc duy trì

        tính toàn vẹn dữ liệu trên toàn mạng trong những giai đoạn mất gói hoặc
        tắc nghẽn mạng.
      operationId: getMaxRetransmitSlot
      requestBody:
        required: true
        content:
          application/json:
            schema:
              type: object
              required:
                - jsonrpc
                - id
                - method
              properties:
                jsonrpc:
                  type: string
                  description: Phiên bản giao thức JSON-RPC.
                  enum:
                    - '2.0'
                  example: '2.0'
                  default: '2.0'
                id:
                  type: string
                  description: Mã định danh duy nhất cho yêu cầu.
                  example: '1'
                  default: '1'
                method:
                  type: string
                  description: Tên của phương thức RPC cần gọi.
                  enum:
                    - getMaxRetransmitSlot
                  example: getMaxRetransmitSlot
                  default: getMaxRetransmitSlot
      responses:
        '200':
          description: Đã truy xuất thành công slot truyền lại tối đa.
          content:
            application/json:
              schema:
                type: object
                properties:
                  jsonrpc:
                    type: string
                    description: Phiên bản giao thức JSON-RPC.
                    enum:
                      - '2.0'
                    example: '2.0'
                  id:
                    type: string
                    description: Mã định danh khớp với yêu cầu.
                    example: '1'
                  result:
                    type: integer
                    description: >-
                      Số slot Solana cao nhất mà nút xác thực này hiện đang
                      truyền lại các shred dữ liệu để hỗ trợ sửa chữa những nút
                      khác.
                    example: 1234
        '400':
          description: >-
            Yêu cầu không hợp lệ - Tham số yêu cầu không hợp lệ hoặc yêu cầu sai
            định dạng.
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/ErrorResponse'
              example:
                jsonrpc: '2.0'
                error:
                  code: -32602
                  message: Invalid params
                id: '1'
        '401':
          description: Không được phép - Khóa API không hợp lệ hoặc bị thiếu.
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/ErrorResponse'
              example:
                jsonrpc: '2.0'
                error:
                  code: -32001
                  message: Unauthorized
                id: '1'
        '429':
          description: Quá nhiều yêu cầu - Đã vượt quá giới hạn tốc độ.
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/ErrorResponse'
              example:
                jsonrpc: '2.0'
                error:
                  code: -32005
                  message: Too many requests
                id: '1'
        '500':
          description: Lỗi máy chủ nội bộ - Đã xảy ra lỗi trên máy chủ.
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/ErrorResponse'
              example:
                jsonrpc: '2.0'
                error:
                  code: -32603
                  message: Internal error
                id: '1'
        '503':
          description: Dịch vụ không khả dụng - Dịch vụ tạm thời không khả dụng.
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/ErrorResponse'
              example:
                jsonrpc: '2.0'
                error:
                  code: -32002
                  message: Service unavailable
                id: '1'
        '504':
          description: Hết thời gian chờ cổng kết nối - Yêu cầu đã hết thời gian chờ.
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/ErrorResponse'
              example:
                jsonrpc: '2.0'
                error:
                  code: -32003
                  message: Gateway timeout
                id: '1'
      security:
        - ApiKeyQuery: []
components:
  schemas:
    ErrorResponse:
      type: object
      properties:
        jsonrpc:
          type: string
          description: Phiên bản giao thức JSON-RPC.
          enum:
            - '2.0'
          example: '2.0'
        error:
          type: object
          properties:
            code:
              type: integer
              description: Mã lỗi.
              example: -32602
            message:
              type: string
              description: Thông báo lỗi.
            data:
              type: object
              description: Dữ liệu bổ sung về lỗi.
        id:
          type: string
          description: Mã định danh khớp với yêu cầu.
          example: '1'
  securitySchemes:
    ApiKeyQuery:
      type: apiKey
      in: query
      name: api-key
      description: >-
        Khóa API Helius của bạn. Bạn có thể nhận khóa miễn phí trong [bảng điều
        khiển](https://dashboard.helius.dev/api-keys).

````