> For the complete documentation index, see [llms.txt](https://docs.maneslab.xyz/llms.txt). Markdown versions of documentation pages are available by appending `.md` to page URLs; this page is available as [Markdown](https://docs.maneslab.xyz/zh/api-zheng-he/quick-start/3.-use-the-access-token-to-access-the-api.md).

# 3. Use the access token to access the API

The access token allows you to make requests to the API on a behalf of a user.

<pre class="language-HTTP"><code class="lang-HTTP"><strong>Authorization: Bearer OAUTH-TOKEN
</strong>GET https://mid.maneslab.xyz/api/v1/users/me
</code></pre>

For example, you can set the Authorization header like this:

```HTTP
curl -H "Authorization: Bearer OAUTH-TOKEN" https://mid.maneslab.xyz/api/v1/users/me
```
