# Quick Start

**Get your API keys**

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

You can generate an API key from your Dashboard at any time.

{% hint style="info" %}
**Go to Elyssa App Dashboard and select :  Profile section > Integration**&#x20;

* **companyId**

This section is restricted to administrators.
{% endhint %}

**Make your first request**

To make your first request, send an authenticated request to the endpoint. This will return it a `company info`&#x20;

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

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

```
curl '{{ url_base}}/api/v1/Company/info \
-X GET \
-H "accept:  */*" \
-H "Authorization: Bearer {{ token }}" \
-H "x-company-id: {{ companyId }}" \
-H "Content-Type: application/json"
```

{% endtab %}

{% tab title="Node" %}

```javascript
// require the featch module and set it up with your API key

(async () => {
    const response = await fetch(
    `${url_base}/api/v1/Company/info`,
    {
        headers: {
            "Authorization": `Bearer ${token}`,
            "x-company-id": `${companyId}`,
        }
    });
    
    const body = await response.json();
    console.log(body);
})();
```

{% endtab %}
{% endtabs %}
