# 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="../../developer-tools/api/explorer-api" %}
[explorer-api](https://docs.ont.io/developer-tools/api/explorer-api)
{% endcontent-ref %}

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