# Authentication

Welcome to the Jungle Solutions uses OAuth tokens to allow access to the API. We expect the OAuth token to be included in all API requests:

* 1/ Either in a header that looks like the following: `Authorization: Bearer WK_API_KEY`
* 2/ Or, through query string: `?access_token=WK_API_KEY`&#x20;

{% hint style="info" %}
You must replace `WK_API_KEY` with your personal API key.
{% endhint %}

```
curl "WK_API_ENDPOINT_HERE"
  -H "Authorization: Bearer WK_API_KEY"
```


---

# 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://developers.welcomekit.co/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.
