> For the complete documentation index, see [llms.txt](https://developer.workdigital.io/llms.txt). Markdown versions of documentation pages are available by appending `.md` to page URLs; this page is available as [Markdown](https://developer.workdigital.io/web-api/list-sites.md).

# List Sites

**Get information about all sites**

URL : `/api/v1/site`\
Method : `GET`

### Parameters:

*`access_token`* **(required, header parameter)**\
Send this as header – e.g.*“Authorization: Bearer access\_token”*

### Sample Request

`curl -H "Authorization: Bearer {access_token}" https://my.worksmart.app/api/v1/site`

### Sample Response

```
[
   {
      "id":"1",
      "name":"Finance",
      "manager":"Jack Broad",
      "apps":[
         {
            "app_id":"1224",
            "name":"Application 1"
         },
         {
            "app_id":"2345",
            "name":"Application 2"
         }
      ]
   },
   {
      "id":"2",
      "name":"Project Management",
      "manager":"John Gill",
      "apps":[
         {
            "app_id":"3453",
            "name":"Application 3"
         },
         {
            "app_id":"413",
            "name":"Application 4"
         }
      ]
   }
]
```
