> For the complete documentation index, see [llms.txt](https://docs.pentas.io/llms.txt). Markdown versions of documentation pages are available by appending `.md` to page URLs; this page is available as [Markdown](https://docs.pentas.io/quick-start.md).

# Quick Start

## Get your API keys

Your API requests are authenticated using API keys. Any request that doesn't include an API key may return an error.

For the time being, please contact <hello@pentas.io> to acquire your API keys.

## Make your first request

To make your first request, send an authenticated request to the NFT endpoint.&#x20;

{% openapi src="/files/hadJXwm51g5huKpMnwKa" path="/assets" method="get" %}
[Pentas-Doc.json](https://158972144-files.gitbook.io/~/files/v0/b/gitbook-x-prod.appspot.com/o/spaces%2FSMfNNsz9PRfU80LKxrge%2Fuploads%2F8G0RQMBup5zLep2qaphz%2FPentas-Doc.json?alt=media\&token=1c506a10-257b-4c18-8db7-3a8baec5c1dd)
{% endopenapi %}

Take a look at how you might call this method using our official libraries, or via `curl`:

{% tabs %}
{% tab title="curl" %}

```
curl 'https://api.pentas.io/nft/?page=1'
```

{% endtab %}

{% tab title="Node" %}

```javascript
fetch("https://api.pentas.io/nft/?page=1", {
  "method": "GET"
});
```

{% endtab %}
{% endtabs %}
