> ## Documentation Index
> Fetch the complete documentation index at: https://support.lilt.com/llms.txt
> Use this file to discover all available pages before exploring further.

# Quickstart

Let's talk about how to make your first API call using LILT's API. This should take about 5 minutes and by the end you will know all of the available languages that LILT can localize your content into.

## What you need to start:

First you will need to retrieve your Organization's API Key from the LILT User Interface.

Log in to the LILT Application as an Administrator. You should see a screen like this. Then you can click on the Cog in the Bottom Left:

<Frame>
  <img src="https://mintcdn.com/lilt-db26f913/C8Fa7tOPsPlwtPsc/images/cee6164a-apiKey1-9c19091a33415faf632ecbfa55b3385e.png?fit=max&auto=format&n=C8Fa7tOPsPlwtPsc&q=85&s=034505b5f5d43336b7231c39bca55dc6" width="926" height="939" data-path="images/cee6164a-apiKey1-9c19091a33415faf632ecbfa55b3385e.png" />
</Frame>

From there you can access the API Key in the Organization Settings:

<Frame>
  <img src="https://mintcdn.com/lilt-db26f913/jiwCy-4OA0JLeee7/images/9dc68ac4-apikey2-4a7aa7e8471d3ec8a0e4324f8e439ae4.png?fit=max&auto=format&n=jiwCy-4OA0JLeee7&q=85&s=0a570cfe8f2116b9211e47040ef17634" width="915" height="304" data-path="images/9dc68ac4-apikey2-4a7aa7e8471d3ec8a0e4324f8e439ae4.png" />
</Frame>

Then you copy the API Key into your favorite API Platform like Postman, Datadog, etc...

<Frame>
  <img src="https://mintcdn.com/lilt-db26f913/6FefOzQXhgpnOwpd/images/f6e9a664-apiKey3-d8f897b707e95dfd5945837c93fcf656.png?fit=max&auto=format&n=6FefOzQXhgpnOwpd&q=85&s=e6bb0c3be0f675bfded62547ced5964d" width="964" height="342" data-path="images/f6e9a664-apiKey3-d8f897b707e95dfd5945837c93fcf656.png" />
</Frame>

Congratulations, now you have everything you need to make your first Api call to LILT.

## Making your first API Call!

As a first step at LILT, you should examine the languages available for Language Translation. To do this we will access our [languages](/api-reference/languages/retrieve-supported-languages) end point. This end point is a good starting point as all you have to think about is authenticating.

To authenticate for the public LILT endpoint all you need is the LILT provided API Key from earlier.

```bash theme={null}
curl https://api.lilt.com/v2/languages?key={Your API Key here}
```

Then you should see a response that looks something like this:

```json theme={null}
{
"source_to_target": {
"en": {},
"...": "..."
},
"code_to_name": {
"aa": "Afar",
"ab": "Abkhazian",
"af": "Afrikaans",
"...": "..."
}
}
```

Congratulations on making your first API call with LILT!
