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

# ABCI Query

> Query the application for some information

### Query Parameters

<ParamField query="path" type="string" required>
  Path to the data ("/a/b/c")
</ParamField>

<ParamField query="data" type="string" required>
  Data to query
</ParamField>

<ParamField query="height" type="integer">
  Height (0 means latest)
</ParamField>

<ParamField query="prove" type="boolean">
  Include proofs of the transactions inclusion in the block
</ParamField>

### Response

<ResponseField name="response" type="object">
  <p>ABCI query response</p>

  <Expandable title="Properties">
    <ResponseField name="code" type="integer">
      <p>Response code</p>
    </ResponseField>

    <ResponseField name="log" type="string">
      <p>Log message</p>
    </ResponseField>

    <ResponseField name="info" type="string">
      <p>Additional information</p>
    </ResponseField>

    <ResponseField name="index" type="string">
      <p>Index</p>
    </ResponseField>

    <ResponseField name="key" type="string">
      <p>Key</p>
    </ResponseField>

    <ResponseField name="value" type="string">
      <p>Value</p>
    </ResponseField>

    <ResponseField name="proof" type="string">
      <p>Proof of inclusion</p>
    </ResponseField>

    <ResponseField name="height" type="string">
      <p>Block height</p>
    </ResponseField>
  </Expandable>
</ResponseField>
