# Retrieve API Information

This operation retrieves general information about the API, such as the `name` and `version`.

## Endpoint

Use the following endpoint to display the API information: `https://api.ionos.com/activitylog/v1`.

## Request

```bash
curl -X 'GET' \
'https://api.ionos.com/activitylog/v1' \
-H 'accept: application/json'
```

{% tabs %}
{% tab title="Request Header Parameters" %}
To make authenticated requests to the API, the following fields are mandatory in the request header:

| Header Parameters | Required |  Type  | Description                                                                                                                                                                            |
| ----------------- | :------: | :----: | -------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------- |
| `Authorization`   |    yes   | string | You can use `Basic Authentication` or a `Bearer token`. For more information, see [Authentication](https://docs.ionos.com/sections-test/guides/observability/overview#authentication). |
| `Content-Type`    |    yes   | string | Set this to `application/json`.                                                                                                                                                        |
| {% endtab %}      |          |        |                                                                                                                                                                                        |
| {% endtabs %}     |          |        |                                                                                                                                                                                        |

## Response

A **200 Successful operation** response displays the API details.

```bash
{
  "href": "string",
  "name": "CLOUD API",
  "version": "1.0"
}
```
