# List logos

Returns a list of the available trailer logos in lowercase when calling the `Create Alert` endpoint.

#### **Authentication**

Include the following headers in your requests:

* **Access-Token**: The access token obtained from the "Create Access Token" endpoint.
* **x-api-key:** The API key provided by GenLogs. This header must be included in the request.

### Permissions

Ensure your API user has a role with `admin` or `create-alert-endpoint` permission

### **Endpoint**

* **URL**: `https://api.genlogs.io/logos`
* **Method**: `GET`

#### Request example

{% code expandable="true" %}

```shellscript
curl --location 'https://api.genlogs.io/logos' \
--header 'Access-Token: {access-token}' \
--header 'X-Api_key: {x-api-key}'
```

{% endcode %}

#### Response example

{% code expandable="true" %}

```json
[
    "10 roads express",
    "aaa cooper transportation",
    "aat carriers",
    "abf"
]
```

{% endcode %}


---

# 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.genlogs.io/alerts/list-logos.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.
