# Plaque Lookup API

The Plaque Lookup API allows you to check if a plaque is available or already sold on the blockchain. This API provides information about the plaque price, status, and other important details to help you make an informed decision when selling plaque

### Plaque Lookup API

<mark style="color:blue;">`GET`</mark> `https://api.stagemeta.dev/plaques/lookup`

#### Query Parameters

| Name                                   | Type      | Description  |
| -------------------------------------- | --------- | ------------ |
| name<mark style="color:red;">\*</mark> | \[String] | Plaque Names |

{% tabs %}
{% tab title="200: OK " %}

```javascript
[
  {
    "price": "57589090322729260",
    "priceEth": "0.05758909032272926",
    "priceUsd": "102.201631",
    "currency": "ETH",
    "description": "Purchase a unique Metaverse Teleport plaque address that is a new and innovative way to 		  represent real-world objects with outstanding value in Metaverse. Metaverse plaque owners can assign to a thriving land in our Metaverse to create a fully functional business.",
    "status": "AVAILABLE",
    "name": "nyc-000",
    "image": null,
   .
   .
   .
  },
  {
    "price": "0",
    "priceEth": "0",
    "priceUsd": "0.000000",
    "currency": "ETH",
    "description": "Purchase a unique Metaverse Teleport plaque address that is a new and innovative way to represent real-world objects with outstanding value in Metaverse. Metaverse plaque owners can assign to a thriving land in our Metaverse to create a fully functional business.",
    "status": "SOLD",
    "name": "uae-000",
    "image": "https://cdn.stagemeta.world/palques/UAE-000.jpg",
    .
    .
    .
  }
]
```

{% endtab %}
{% endtabs %}

{% tabs %}
{% tab title="Curl" %}

```bash
curl -X 'GET'  
'[https://api.stagemeta.dev/plaques/lookup?name=nyc-000&name=uae-000
-H 'accept: application/json'
```

{% endtab %}

{% tab title="Node" %}
{% code overflow="wrap" %}

```javascript
fetch('https://api.stagemeta.world/plaques/lookup?name=nyc-000&name=uae-000', {
  headers: {
    'Accept': 'application/json'
  }
})
  .then(response => response.json())
  .then(data => console.log(data))
  .catch(error => console.error(error));
```

{% endcode %}
{% endtab %}
{% endtabs %}


---

# 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://dev.stagemeta.world/reference/api-reference/plaque-lookup-api.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.
