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

# 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**<br>

**Go to Elyssa App Dashboard and select :  Profile section > Company**

* **nit**

This sections are 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 'https://api.elyssa.app/api/v1/Companies/info \
-X GET \
-H "accept:  */*" \
-H "Authorization: Bearer {{ token }}" \
-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(
    `https://api.elyssa.app/api/v1/Companies/info`,
    {
        headers: {
            "Authorization": `Bearer ${token}`
        }
    });
    
    const body = await response.json();
    console.log(body);
})();
```

{% endtab %}
{% endtabs %}
