> For the complete documentation index, see [llms.txt](https://apiguide.geckoterminal.com/llms.txt). Markdown versions of documentation pages are available by appending `.md` to page URLs; this page is available as [Markdown](https://apiguide.geckoterminal.com/getting-started.md).

# Getting Started

## 1. Making an API request

* Root URL for GeckoTerminal API: <https://api.geckoterminal.com/api/v2>
* You can find all the available API endpoints at <https://www.geckoterminal.com/dex-api>
* Make an API call using curl or any HTTP libraries
* Try it by pasting the code below into your terminal

```
curl -X 'GET' \
  'https://api.geckoterminal.com/api/v2/networks?page=1' \
  -H 'accept: application/json'
```
