# Info from LAND

You can use the Decentraland CLI to query info directly from LAND tokens in the blockchain and from the scene files uploaded to the content server.

To run these commands, you must first [Install the CLI](/creator/scenes-sdk7/getting-started/using-the-cli.md).

## Get info about a scene

The `dcl info` command returns the contents of a scene's *scene.json* file, including owner, contact info, and parcels in the scene.

* `dcl info` from the scene's folder returns info about that specific scene.
* `dcl info x,y`, where *x* and *y* are parcel coordinates, returns info about the scene in that location.

  {% hint style="warning" %} **📔 Note**: Don't add a space between both coordinates. {% endhint %}
* `dcl info id`, where *id* is an estate id, returns info about the scene with that estate id.

The `dcl status` command returns a list with the files deployed to a scene. This only includes file names and sizes. You can't access the contents of the files via the CLI.

* `dcl status` from the scene's folder returns info about that specific scene.
* `dcl status x,y`, where *x* and *y* are parcel coordinates (with no spaces between them), returns info about the scene in that location.

{% hint style="warning" %}
**📔 Note**: Don't add a space between both coordinates.
{% endhint %}

* `dcl status id`, where *id* is an estate id, returns info about the scene with that estate id.

{% hint style="warning" %}
**📔 Note**: Everything that's uploaded to our content server is public and reachable through that network. When you deploy a scene, by default you're not uploading the original source code for the scene, instead you upload a version that's compiled to minified JavaScript, which is a lot less readable.
{% endhint %}

## Get info from a wallet address

The `dcl info` command also lets you see info about an Ethereum wallet and the LAND tokens that it owns.

* `dcl info xxxx`, where *xxxx* is the Ethereum address you're interested in, returns a list of all the LAND parcels and estates owned by that address and their details.


---

# Agent Instructions: 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:

```
GET https://docs.decentraland.org/creator/marketplace/info-from-land.md?ask=<question>
```

The question should be specific, self-contained, and written in natural language.
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.
