# Quickstart

We'll also look at where to go next to find all the information you need to take full advantage of everything the Underdog API can do.&#x20;

{% hint style="info" %}
Before you can make requests to the Underdog API, you will need to grab your API Key from your [dashboard](https://app.underdogprotocol.com).
{% endhint %}

## Making your first API request

Below, you can see how to send a POST request to the Projects endpoint to create your first Collection.&#x20;

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

```bash
curl -X POST \
        --url https://dev.underdogprotocol.com/v2/projects \
        -H "Content-Type: application/json" \
        -H "Authorization: Bearer {token}" \
        -d '
{
        "name": "Underdog Project",
        "transferable": true,
	"description": "My Underdog NFT Project",
        "image": "https://underdogprotocol.com/logo-dark.svg"
}'
```

{% endtab %}
{% endtabs %}

[Read the docs for the Project endpoint ->](https://docs.underdogprotocol.com/resources/projects)

## What's next?

You're now set up with an API client and have made your first request to the API. Here are a few links that might be handy as you venture further into the Underdog API:

* [Grab your API Key from the Underdog Dashboard](https://app.underdogprotocol.com)
* [Mint your first NFT in the Project](https://docs.underdogprotocol.com/resources/projects/nfts)
