# API-Überblick und Authentifizierung

### **Was ist ein API-Schlüssel?**

Ein API-Schlüssel ist ein eindeutiger Identifikator, der Ihnen Zugang zur AiKYNETIX-API gewährt. Er dient als sicheres Token, das Sie in jede API-Anfrage einfügen müssen, um Ihren Zugang zu authentifizieren und zu autorisieren.

### **Wie verwenden Sie Ihren API-Schlüssel?**

* **In Anfrage-Header einfügen:**\
  Fügen Sie bei jedem API-Aufruf Ihren API-Schlüssel in den `Authorization`-Header im folgenden Format ein:

```
API-KEY: <your_api_key>
```

* **Beispiel mit cURL:**

```bash
curl -X GET https://api.aikynetix.com/v1/your-endpoint \
  -H "Authorization: API-KEY YOUR_API_KEY"
```

* **Schlüssel sichern:**\
  Teilen Sie Ihren API-Schlüssel niemals öffentlich mit. Falls Ihr Schlüssel kompromittiert wird, generieren Sie ihn sofort über Ihr Dashboard neu.


---

# 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.aikynetix.app/de/api-documentation/api-key-management/api-overview-and-authentication.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.
