> For the complete documentation index, see [llms.txt](https://docs.flightapi.io/llms.txt). Markdown versions of documentation pages are available by appending `.md` to page URLs; this page is available as [Markdown](https://docs.flightapi.io/airline-and-airport-code-api.md).

# Airline & Airport code API

API endpoint for this API is: **`https://api.flightapi.io/iata`**

## Guide

Your API 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.

Here is the list of default parameters you have to use with this API:

| Parameters                                                      | Description                                                                                                                                                    | Type     |
| --------------------------------------------------------------- | -------------------------------------------------------------------------------------------------------------------------------------------------------------- | -------- |
| <p>api\_key<br><br><mark style="color:red;">required</mark></p> | This is your personal API key. You can find this on your Dashboard.                                                                                            | `String` |
| <p>name<br><br><mark style="color:red;">required</mark></p>     | This could be any string matching an airline or an airport.                                                                                                    | `String` |
| <p>type<br><br><mark style="color:red;">required</mark></p>     | <p>type could be either an <strong><code>airline</code></strong> or <strong><code>airport</code></strong>.<br><br><mark style="color:red;">required</mark></p> | `String` |

## Usage

You have to send a GET request to  `https://api.flightapi.io/trackbyroute` along with all the parameters.&#x20;

Take a look at how you might call this API using various different coding languages.

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

```bash
curl "https://api.flightapi.io/iata/api-key?name=american&type=airline"
```

{% endtab %}

{% tab title="Node" %}

```javascript
// require the Unirest or any other module to make an HTTP GET request
const unirest = require('unirest')

unirest.get('https://api.flightapi.io/iata/api-key?name=american&type=airline')
  .then(response => {
    console.log(response.body);
  })
  .catch(error => {
    console.log(error);
  });


```

{% endtab %}

{% tab title="Python" %}

```python
// Set your API key before making the request
import requests

resp = requests.get('https://api.flightapi.io/iata/api-key?name=american&type=airline')
print (resp.json())
```

{% endtab %}
{% endtabs %}

### Response

The sample response of the API will look somewhat like this.

{% code overflow="wrap" fullWidth="false" %}

```json
// Sample Response
{
  "data": [
    {
      "fs": "AA",
      "name": "American Airlines"
    },
    {
      "fs": "SCM",
      "name": "American Jet International"
    },
    {
      "fs": "NA",
      "name": "North American Airlines"
    },
    {
      "fs": "GTW",
      "name": "American Air Charter"
    }
  ]
}
  
```

{% endcode %}

{% hint style="info" %}
It is just a sample API response. Some objects will have more attributes. A new array might also be there.
{% endhint %}
