> For the complete documentation index, see [llms.txt](https://docs.decentraland.org/llms.txt). Markdown versions of documentation pages are available by appending `.md` to page URLs; this page is available as [Markdown](https://docs.decentraland.org/creator/content-creator-zh/shi-chang/info-from-land.md).

# 来自 LAND 的信息

使用 CLI 获取地块、地产或地址的信息。

你可以使用 Decentraland CLI 直接查询区块链中的 LAND 代币以及上传到内容服务器的场景文件中的信息。

要运行这些命令，你必须先 [安装 CLI](/creator/content-creator-zh/chang-jing-sdk7/ru-men/using-the-cli.md).

## 获取场景信息

该 `dcl info` 命令返回场景的 *scene.json* 文件内容，包括所有者、联系信息以及场景中的地块。

* `dcl info` 从场景文件夹中返回该特定场景的信息。
* `dcl info x,y`，其中 *x* 和 *y* 是地块坐标，会返回该位置场景的信息。

  {% hint style="warning" %} **📔 注意**：不要在两个坐标之间添加空格。 {% endhint %}
* `dcl info id`，其中 *id* 是一个庄园 ID，会返回具有该庄园 ID 的场景信息。

该 `dcl status` 命令返回已部署到某个场景的文件列表。这只包括文件名和大小。你无法通过 CLI 访问这些文件的内容。

* `dcl status` 从场景文件夹中返回该特定场景的信息。
* `dcl status x,y`，其中 *x* 和 *y* 是地块坐标（中间不要有空格），会返回该位置场景的信息。

{% hint style="warning" %}
**📔 注意**：不要在两个坐标之间添加空格。
{% endhint %}

* `dcl status id`，其中 *id* 是一个庄园 ID，会返回具有该庄园 ID 的场景信息。

{% hint style="warning" %}
**📔 注意**：上传到我们内容服务器的所有内容都是公开的，并可通过该网络访问。当你部署一个场景时，默认情况下你上传的不是该场景的原始源代码，而是编译成压缩后的 JavaScript 的版本，可读性要低得多。
{% endhint %}

## 获取钱包地址的信息

该 `dcl info` 命令还可让你查看一个以太坊钱包及其拥有的 LAND 代币的信息。

* `dcl info xxxx`，其中 *xxxx* 是你感兴趣的以太坊地址，会返回该地址拥有的所有 LAND 地块和庄园及其详细信息。


---

# Agent Instructions
This documentation is published with GitBook. GitBook is the documentation platform designed so that both humans and AI agents can read, navigate, and reason over technical content effectively. Learn more at gitbook.com.

## Querying This Documentation
If you need additional information that is not directly available in this page, you can query the documentation dynamically by asking a question.

Perform an HTTP GET request on the current page URL with the `ask` query parameter, and the optional `goal` query parameter:

```
GET https://docs.decentraland.org/creator/content-creator-zh/shi-chang/info-from-land.md?ask=<question>&goal=<endgoal>
```

`ask` is the immediate question: it should be specific, self-contained, and written in natural language.
`goal` is optional and describes the broader end goal you are ultimately trying to accomplish on behalf of the user. GitBook uses it to tailor the answer towards what is most useful for that goal.

The response will contain a direct answer to the question and relevant excerpts and sources from the documentation.

Use this mechanism when the answer is not explicitly present in the current page, you need clarification or additional context, or you want to retrieve related documentation sections.
