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

# call

> Executes a new message call without creating a transaction on chain.



## OpenAPI

````yaml openapi-call POST /
openapi: 3.0.0
info:
  title: Quai JSON RPC API
  version: 1.0.0
servers:
  - url: https://rpc.quai.network/cyprus1
security: []
paths:
  /:
    post:
      summary: quai_call
      description: Executes a new message call without creating a transaction on chain.
      requestBody:
        required: true
        content:
          application/json:
            schema:
              $ref: '#/components/schemas/Request'
      responses:
        '200':
          description: Successful response
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/Response'
components:
  schemas:
    Request:
      type: object
      required:
        - jsonrpc
        - method
        - params
        - id
      properties:
        jsonrpc:
          type: string
          example: '2.0'
          enum:
            - '2.0'
        method:
          type: string
          description: The name of the method to be invoked.
          example: quai_call
          enum:
            - quai_call
        params:
          type: array
          items:
            oneOf:
              - type: object
              - type: string
          description: >-
            The transaction data to test execution for, the default block
            parameter.
          maxItems: 2
          minItems: 2
          example:
            - from: '0x02E4dD4F66E018fD2bddf57467D4bB359D72b705'
              to: '0x0864B3aab87584b337a92aB1fCfCcf6dad2463Db'
              gas: '0x5208'
              value: '0x10F2C'
              data: 0x
            - latest
        id:
          type: integer
          description: A unique identifier for the request.
          example: 1
    Response:
      type: object
      properties:
        jsonrpc:
          type: string
          example: '2.0'
        result:
          type: string
          example: 0x
          description: Value of the executed contract method.
        id:
          type: integer
          example: 1

````