> For the complete documentation index, see [llms.txt](https://docs.stake.tax/llms.txt). Markdown versions of documentation pages are available by appending `.md` to page URLs; this page is available as [Markdown](https://docs.stake.tax/devs/configuring-use-of-mintscan-api.md).

# Configuring use of Mintscan API

Mintscan API is used for the following reports on the StakeTax website:

* AKT
* ARCH
* ATOM
* DYDX
* EVMOS
* INJ
* JUNO
* NTRN
* OSMO
* STRD
* TIA

For the CSVs listed above, source data for transactions can be pulled from LCD node or Mintscan API in the codebase.  LCD node as source data is default because it works out of the box.  But Mintscan API as source data is preferable because it has a more complete history in almost all cases.

## To change to Mintscan API as source data, do the following:

1. Follow <https://docs.cosmostation.io/apis#how-to-get-api-key> to get a Mintscan API key.  Specifically,

* create a mintscan account
* create a mintscan key
* Email <api@cosmostation.io> to get your key "approved", so that it is no longer in "pending" state in the mintscan api dashboard (<https://api.mintscan.io/dashboard>)

2. Add STAKETAX\_MINTSCAN\_KEY to your python environment:

```
# i.e.
export STAKETAX_MINTSCAN_KEY=<someverylongstringkey>
```

3. Run the report per usual:.&#x20;

```
# i.e.
python3 staketaxcsv/report_akt.py <wallet_address>
```

&#x20;


---

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

```
GET https://docs.stake.tax/devs/configuring-use-of-mintscan-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.
