# Make your first API request

Once you have generated your API Key, you are ready to send your first request to the Seller Center API.

Let's try to get all your products:

```bash
curl -X GET "https://partner.aboutyou.com/api/v1/products/" \
    --header "X-API-Key: YOUR_API_KEY"
```

Now let's try to get all the active products:

```bash
curl -X GET "https://partner.aboutyou.com/api/v1/products/?status=active" \
    --header "X-API-Key: YOUR_API_KEY"
```

Now you are ready to explore the full range of Seller Center API endpoints!
