# 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'
```
