# API Access Tokens

### When you need an Access Token

* When you are the owner of a Microreact project, your API Access Token is needed for interaction with your project via API.
* An access token is required for [creating projects via the API](https://docs.microreact.org/api/creating-projects). The user whose API Access Token is used will be the owner of the new Microreact project.
* [Data-flo](https://www.data-flo.io) software connects to Microreact projects via API access, and requires the API Access Token of the project's owner.
* To access the API directly, you need to include the API access token associated with the Microreact account of the owner of the Microreact project as a request header.

### Obtain your API Access Token

* Go to <https://microreact.org/my-account>
* Choose [Account Settings](https://microreact.org/my-account/settings) from the navigation menu
* Copy your Access Token displayed under API Access section

![](https://92463871-files.gitbook.io/~/files/v0/b/gitbook-x-prod.appspot.com/o/spaces%2F-MCM3b1nzgmsPUEa2xap%2Fuploads%2Fgit-blob-e1abd8f7949fb0ad5676bfb4115caf12e24c55ec%2Fimage%20\(52\).png?alt=media)

![](https://92463871-files.gitbook.io/~/files/v0/b/gitbook-x-prod.appspot.com/o/spaces%2F-MCM3b1nzgmsPUEa2xap%2Fuploads%2Fgit-blob-de161cf6d7ec9b5236758c91d9c010eadd5980bf%2Fimage.png?alt=media)

### Using Access Tokens

The Access Token should be sent as a request header named Access-Token, for example:

{% tabs %}
{% tab title="cURL + Bash" %}

```bash
curl \
  --header "Access-Token: eyJhbGciOiJIUzUxMiJ9..." \
  https://microreact.org/api/projects/create
```

{% endtab %}
{% endtabs %}
