# 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": "..."
        }
    ]
}
```


---

# 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://docs.frequencyapp.com/master.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.
