# Find Events by IATA Code

For this example, we will use an IATA airport code to search for events around Los Angeles Airport on March the 3rd, 2018.

The `/events` API endpoint supports the use of IATA (3 character), ICAO (4 character), and UN/LOCODE (5 character) airport codes. A CSV file with all supported airport codes and their respective place ids is available to download.

{% file src="/files/ZkhSwDSTdvJ5bh93C7jx" %}

We can use the IATA code for *Los Angeles Airport (LAX)*, `place.scope=LAX`, to find all the *concerts* events, `category=concerts`, which are active on *3rd of March, 2018*, `active.gte=2018-03-03` and `active.lte=2018-03-03`.

```python
import requests

response = requests.get(
    url="https://api.predicthq.com/v1/events/",
    headers={
      "Authorization": "Bearer $API_TOKEN",
      "Accept": "application/json"
    },
    params={
        "place.scope" : "LAX",
        "active.gte" : "2018-03-03",
        "active.lte" : "2018-03-03",
        "category" : "concerts",
        "sort" : "rank"
    }
)

print(response.json())
```

A snippet of the results are shown below:

```json
{
  "count": 73,
  "results": [
    {
      "id": "XS5tQbpjKtFeUShTPt",
      "title": "Demi Lovato with DJ Khaled and Kehlani",
      "category": "concerts",
      ...
    }
  ]
}
```


---

# Agent Instructions: Querying This Documentation

If you need additional information that is not directly available in this page, you can query the documentation dynamically by asking a question.

Perform an HTTP GET request on the current page URL with the `ask` query parameter:

```
GET https://docs.predicthq.com/getting-started/guides/geolocation-guides/searching-by-location/find-events-by-iata-code.md?ask=<question>
```

The question should be specific, self-contained, and written in natural language.
The response will contain a direct answer to the question and relevant excerpts and sources from the documentation.

Use this mechanism when the answer is not explicitly present in the current page, you need clarification or additional context, or you want to retrieve related documentation sections.
