> ## Knowledge Base Index
> Fetch the complete knowledge base index at: https://help.trustmary.com/sitemap.xml
> Use this file to discover available pages before exploring further.
> Pure-Markdown content can be obtained by appending a '.md' suffix to the content URLs listed in the sitemap (without the trailing slash).

# API Authentication (developers)


# Authentication

All requests to the Trustmary API require the following header: 

```
Authorization: Apikey [YOUR_KEY]

```

You can create a new API key from your account [Settings](https://app.trustmary.com/settings/developer), under the **Developers **tab. The API key can be tested by making any HTTP request to `https://api.trustmary.io/v1/test` with the correct Authorization header.

# Example request

```json
curl -H "Authorization: Apikey P157MS-123456-123456-123456" \
	 -H "Content-Type: application/json; charset=utf-8" \
https://api.trustmary.io/v1/test
```
