# Fuel products of a provider

## Get fuel products of a provider

<mark style="color:blue;">`GET`</mark> `https://api.aviowiki.com/providers/{aid}/fuelProducts/all`

#### Path Parameters

| Name                                  | Type   | Description                 |
| ------------------------------------- | ------ | --------------------------- |
| aid<mark style="color:red;">\*</mark> | String | Aviowiki ID of the provider |

#### Headers

| Name          | Type   | Description                              |
| ------------- | ------ | ---------------------------------------- |
| Authorization | String | An API Token using Bearer authorization. |

{% tabs %}
{% tab title="200: OK Provider details" %}
The detailed properties of the returned object can be found in the documentation of the [Fuel Product](https://docs.aviowiki.com/data-models/fuel-product) data model.

```json
[
  {
    "description": null,
    "type": "AVGAS_100LL",
    "unit": null,
    "currency": null,
    "price": null,
    "limitedAvailability": null,
    "minimumVolume": null,
    "maximumVolume": null,
    "selfService": null,
    "minimumHandlingWaiver": null,
    "parent": "PRV-PDEX-T9O2",
    "aid": "FPR-0AZX-VNJS"
  },
  {
    "description": null,
    "type": "JET_A1",
    "unit": "LTR",
    "currency": "EUR",
    "price": 0.5,
    "limitedAvailability": null,
    "minimumVolume": null,
    "maximumVolume": null,
    "selfService": null,
    "minimumHandlingWaiver": null,
    "parent": "PRV-PDEX-T9O2",
    "aid": "FPR-MF23-K97R"
  }
]
```

{% endtab %}

{% tab title="400: Bad Request" %}
Occurs when an invalid request is made.

```
{
  "error": "string",
  "timestamp": "2025-02-27T11:27:09.333Z",
  "status": 0,
  "message": "string",
  "path": "string"
}
```

{% endtab %}
{% endtabs %}
