> For the complete documentation index, see [llms.txt](https://docs.skeddly.com/llms.txt). Markdown versions of documentation pages are available by appending `.md` to page URLs; this page is available as [Markdown](https://docs.skeddly.com/overview/authentication.md).

# Authentication

In order to use the Skeddly API, you require an API key. API keys can be obtained by doing the following:

1. Sign-in to your Skeddly account.
2. On the left navigation panel, click "Developers" then "API Keys".
3. Click the "Create API Key" button to create an API key.

When making HTTPS requests, all requests must include the `Authorization:` header in the following format:

`Authorization: AccessKey <api key>`

You must replace  with your personal API key.

{% tabs %}
{% tab title="HTTP" %}

```http
GET /api/resource HTTP/1.1
Host: api.skeddly.com
Authorization: AccessKey <api key>
```

{% endtab %}

{% tab title="Bash" %}
With shell, you can just pass the correct header with each request

```bash
curl "api_endpoint_here"
  -H "Authorization: AccessKey <api key>"
```

{% endtab %}

{% tab title="Python" %}
Include your access key in the client constructor.

```python
import skeddly
client = skeddly.Client(
    accessKey="<api key>"
)
```

{% endtab %}
{% endtabs %}

Make sure to replace `<api key>` with your API key.


---

# Agent Instructions
This documentation is published with GitBook. GitBook is the documentation platform designed so that both humans and AI agents can read, navigate, and reason over technical content effectively. Learn more at gitbook.com.

## 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.skeddly.com/overview/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.
