--- title: Comaround Access Requirements excerpt: '' deprecated: false hidden: false metadata: title: '' description: '' robots: index next: description: '' --- # Comaround Access Needs For Comaround, API access is done via an access token generated using a **username** and **password**. After creating the token, you can use the curl commands below to test that the access is working as expected: 1. Generate the `bearer-token` ```json curl --location --request POST 'https://api2.comaround.com/rest/v2/token/' \--header 'Ocp-Apim-Subscription-Key: ' \--header 'Content-Type: application/json' \--data-raw '{  "username": "svc.moveworks",  "password": ""}' ``` 2. Return articles from Comaround API ```json curl --location --request GET 'https://api2.comaround.com/rest/v2/search?currentPage=1&tags=text' \--header 'Ocp-Apim-Subscription-Key: ' \--header 'Authorization: Bearer ' ```