# Logo of a provider

## Get provider logo

<mark style="color:blue;">`GET`</mark> `https://api.aviowiki.com/providers/{aid}/logo/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 [Provider](https://docs.aviowiki.com/data-models/provider) data model.

```json
{
  "path": "filereferences/869_cc6f54956c3d42a8a0c3a13d79d83d8f.jpeg",
  "name": "Full Logo Navy copy.jpg",
  "description": "",
  "size": 122258,
  "aid": "FIL-PFBU-RWWS"
}
```

{% endtab %}

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

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

{% endtab %}
{% endtabs %}
