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

# Introduction

> How to use our industry datasets

Our industry datasets contains data from various sources that aggregated to simple to use
API endpoints and can easily be combined with our core endpoints. They are used to gather
information to enrich data and offer much better tools for credit scoring, vendor and
customer evaluation, prospecting and statistical data analysis.

## Available datasets

Most industry datasets contains a reference to CompanyId meaning you can easily source
information from our core datasets.

Current published datasets are:

* [European Commission](/api-industry/europeancommission)
* [Sweden Finansinspektionen](/api-industry/finansinspektionen)
* [ICA](/datasets/ica)

## Example

Let's say you want to get annual reports for a specific grocery store first issue a
request to:

```bash cURL theme={null}
curl https://api.tic.io/datasets/se/ica/stores?key=your_api_key
```

Note in the response yuou will get the companyId property.

```json Response theme={null}
{

  "pageSize": 10,
  "lastItemId": 10,
  "totalItems": 1283,
  "items": [
    {
      "icaStoreId": 1,
      "companyId": 2692434,
      "icaExternalStoreId": "01441",
      "icaStoreOwnerId": 33420,
}
```

Make a request to with the companyId: 2692434 to:

```bash cURL theme={null}
curl https://api.tic.io/datasets/companies/2692434/financial-reports?key=your_api_key
```

And you will get all available annual reports for the business.
