# Getting Started

### Start by:

* [ ] Set up a Personal Access Token or an OAuth application on your [account page](https://www.frequencyapp.com/account).

### Then lets make a request&#x20;

```bash
curl https://www.frequencyapp.com/api/v1/articles
  -u "ACCESS_TOKEN"
```

{% hint style="info" %}
You must replace **`ACCESS_TOKEN`** with your personal access token created on your [account page](https://www.frequencyapp.com).
{% endhint %}

### Which should return a list of your library articles

```javascript
{
    "object": "List",
    "page": "1",
    "url": "/api/v1/articles",
    "data": [
        {
            "object": "Article",
            "id": "1",
            "title": "My Article Title",
            "status": "Completed",
            "transcript": "..."
        }
    ]
}
```
