# Ontology for dApp Stores

A list of all the **dApp** stores that have either partially or fully integrated the Ontology platform.

* [DappReview](https://www.dapp.review/explore/ont)
* [Tokenview](https://dappstore.tokenview.com/cn/ont/all)
* [SpiderStore](http://www.spider.store/en/ranking/ont/hot)
* [DAppTotal](https://dapptotal.com/ont)
* [Dappbirds](http://dappbirds.com/explore)
* [DAPP.CC](http://www.dapp.cc/dapp/index)

The total supply of `ONT` and `ONG` can be found out by following link.

{% embed url="<https://explorer.ont.io/v2/summary/native/total-supply/ONT>" %}

{% embed url="<https://explorer.ont.io/v2/summary/native/total-supply/ONG>" %}

The relevant data from all the **dApps** that use Ontology can be queried using a `GET` method `URL`:

```
/api/v1/explorer/summary/{type}/{starttime}/{endtime}
```

And the response of the `GET` method is as follows:

```yaml
{
    "Action": "QuerySummary",
    "Error": 0,
    "Desc": "SUCCESS",
    "Version": "1.0",
    "Result": {
      "Total": 3,
      "SummaryList": [
          {
              "TxnCount": 0,
              "ActiveAddress": 0,
              "BlockCount": 0,
              "OngCount": "0.000000000",
              "OntIdActiveCount": 0,
              "OntIdNewCount": 0,
              "NewAddress": 0,
              "OntCount": "0.000000000",
              "Time": "2018-07-02",
      "OntIdSum": 0,
      "AddressSum": 0
          },
        .......
       ]
  }
}
```

|   ResponseField  |  Type  |
| :--------------: | :----: |
|       Total      |   int  |
|       Time       | String |
|     TxnCount     |   int  |
|    BlockCount    |   int  |
|    AddressSum    |   int  |
|   ActiveAddress  |   int  |
|    NewAddress    |   int  |
|     OntCount     | String |
|     OngCount     | String |
|     OntIdSum     |   int  |
| OntIdActiveCount |   int  |
|   OntIdNewCount  |   int  |

{% hint style="info" %}
Follow [this](https://github.com/ontio-community/dapp-store/blob/master/all-dapps.json) link to find a list of all the **dApps** that have integrated the Ontology platform.
{% endhint %}

For more details on Ontology's **Explorer API**, follow the link below to navigate to another section of this documentation.

{% content-ref url="/pages/-LwHH-WXxF9nsH1qNxGZ" %}
[Explorer v2 API](/developer-tools/api/explorer-api.md)
{% endcontent-ref %}

If interested in integrating the **dApp** store `API`, please first get in touch with us at **<contact@ont.io>**


---

# 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.ont.io/guides-and-tutorials/integration-guides/dapp-stores.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.
