> For clean Markdown of any page, append .md to the page URL.
> For a complete documentation index, see https://api.docs.modulards.com/llms.txt.
> For AI client integration (Claude Code, Cursor, etc.), connect to the MCP server at https://api.docs.modulards.com/_mcp/server.

# List site actions

GET https://api.modulards.com/api/public/v1/site-actions

Every pipeline (upgrades, safe upgrades, activations, installs, syncs, backups, scans…) launched on the token's sites, one row per action. `filter[id][]` follows a whole batch by the `site-actions` ids a write answered. Default sort: `created_at` descending.

Reference: https://api.docs.modulards.com/modular-ds-public-api/website-actions/list-site-actions

## Authentication

- `Authorization` header (bearer token, required) — Personal access token created in the Modular DS dashboard; read-only tokens can only call GET endpoints.

## Request

### Query parameters

- `filter[id][]` (string, optional) — Exact site action ids
- `filter[site][]` (string, optional)
- `filter[team][]` (string, optional)
- `filter[tags][]` (string, optional)
- `filter[type][]` (string, optional) — SiteActionTypeEnum values, e.g. manager.safe_upgrade, manager.upgrade, manager.install
- `filter[status][]` (string, optional) — pending | in_progress | requires_action | done | failed
- `filter[origin][]` (string, optional) — dashboard | agent | schedule | system
- `filter[scheduled]` (string, optional) — 1|0: true = waiting for a future start
- `filter[component]` (string, optional) — Actions touching one component's installs
- `filter[s]` (string, optional)
- `sort` (string, optional) — created_at | updated_at | status | type, default -created_at, `-`-prefixed for descending
- `page[number]` (string, optional)
- `page[size]` (string, optional) — Max 50, default 15
- `fields[site-actions]` (string, optional) — Sparse fieldset; activates requires\_action, scheduled\_at, managed\_items, clean\_cache, is\_manual, visual\_regression, target\_site - none returned unless named. clean\_cache/is\_manual read the action's own metadata (both on a plain connector or safe upgrade action, clean\_cache only on an install, null/null otherwise). target\_site is the migration's destination site (\{id, slug, url}); falls back to the origin site, or null when the destination was deleted
- `include` (string, optional) — site | items

## Response

### 200

200 - Site actions

- `data` (list of object, optional)
  - `attributes` (object, optional)
    - `clean_cache` (boolean, optional)
    - `completed_at` (string, optional, nullable)
    - `created_at` (string, optional)
    - `created_by` (double, optional)
    - `is_manual` (boolean, optional)
    - `managed_items` (list of object, optional)
      - `from_version` (string, optional)
      - `name` (string, optional)
      - `site_item_id` (double, optional)
      - `slug` (string, optional)
      - `to_version` (string, optional)
      - `type` (string, optional)
    - `origin` (string, optional)
    - `requires_action` (boolean, optional)
    - `scheduled_at` (any, optional, nullable)
    - `site_id` (double, optional)
    - `started_at` (string, optional)
    - `status` (string, optional)
    - `target_site` (object, optional)
      - `id` (double, optional)
      - `slug` (string, optional)
      - `url` (string, optional)
    - `type` (string, optional)
    - `updated_at` (string, optional)
  - `id` (string, optional)
  - `links` (object, optional)
    - `self` (string, optional)
  - `type` (string, optional)
- `jsonapi` (object, optional)
  - `version` (string, optional)
- `links` (object, optional)
  - `first` (string, optional)
  - `last` (string, optional)
  - `next` (any, optional, nullable)
  - `prev` (any, optional, nullable)
- `meta` (object, optional)
  - `current_page` (double, optional)
  - `from` (double, optional)
  - `last_page` (double, optional)
  - `links` (list of object, optional)
    - `active` (boolean, optional)
    - `label` (string, optional)
    - `url` (string, optional, nullable)
  - `path` (string, optional)
  - `per_page` (double, optional)
  - `to` (double, optional)
  - `total` (double, optional)

## Examples

**Response**

```json
{
  "data": [
    {
      "attributes": {
        "clean_cache": true,
        "completed_at": null,
        "created_at": "2026-09-20T09:00:00.000000Z",
        "created_by": 501,
        "is_manual": false,
        "managed_items": [
          {
            "from_version": "8.9.5",
            "name": "WooCommerce",
            "site_item_id": 301,
            "slug": "woocommerce",
            "to_version": "8.10.0",
            "type": "plugin"
          }
        ],
        "origin": "agent",
        "requires_action": true,
        "scheduled_at": null,
        "site_id": 12,
        "started_at": "2026-09-20T09:00:00.000000Z",
        "status": "requires_action",
        "target_site": {
          "id": 12,
          "slug": "shop",
          "url": "https://shop.example.com"
        },
        "type": "manager.safe_upgrade",
        "updated_at": "2026-09-20T09:05:00.000000Z"
      },
      "id": "504",
      "links": {
        "self": "{{base_url}}/api/public/v1/site-actions/504"
      },
      "type": "site-actions"
    },
    {
      "attributes": {
        "completed_at": "2026-09-19T03:04:00.000000Z",
        "created_at": "2026-09-19T03:00:00.000000Z",
        "created_by": 502,
        "origin": "schedule",
        "site_id": 13,
        "started_at": "2026-09-19T03:00:00.000000Z",
        "status": "done",
        "type": "manager.upgrade",
        "updated_at": "2026-09-19T03:04:00.000000Z"
      },
      "id": "498",
      "links": {
        "self": "{{base_url}}/api/public/v1/site-actions/498"
      },
      "type": "site-actions"
    }
  ],
  "jsonapi": {
    "version": "1.1"
  },
  "links": {
    "first": "{{base_url}}/api/public/v1/site-actions?page%5Bnumber%5D=1",
    "last": "{{base_url}}/api/public/v1/site-actions?page%5Bnumber%5D=1",
    "next": null,
    "prev": null
  },
  "meta": {
    "current_page": 1,
    "from": 1,
    "last_page": 1,
    "links": [
      {
        "active": false,
        "label": "&laquo; Previous",
        "url": null
      },
      {
        "active": true,
        "label": "1",
        "url": "{{base_url}}/api/public/v1/site-actions?page%5Bnumber%5D=1"
      },
      {
        "active": false,
        "label": "Next &raquo;",
        "url": null
      }
    ],
    "path": "{{base_url}}/api/public/v1/site-actions",
    "per_page": 15,
    "to": 2,
    "total": 2
  }
}
```

**SDK Code**

```python 200 - Site actions
import requests

url = "https://api.modulards.com/api/public/v1/site-actions"

headers = {"Authorization": "Bearer <token>"}

response = requests.get(url, headers=headers)

print(response.json())
```

```javascript 200 - Site actions
const url = 'https://api.modulards.com/api/public/v1/site-actions';
const options = {method: 'GET', headers: {Authorization: 'Bearer <token>'}};

try {
  const response = await fetch(url, options);
  const data = await response.json();
  console.log(data);
} catch (error) {
  console.error(error);
}
```

```go 200 - Site actions
package main

import (
	"fmt"
	"net/http"
	"io"
)

func main() {

	url := "https://api.modulards.com/api/public/v1/site-actions"

	req, _ := http.NewRequest("GET", url, nil)

	req.Header.Add("Authorization", "Bearer <token>")

	res, _ := http.DefaultClient.Do(req)

	defer res.Body.Close()
	body, _ := io.ReadAll(res.Body)

	fmt.Println(res)
	fmt.Println(string(body))

}
```

```ruby 200 - Site actions
require 'uri'
require 'net/http'

url = URI("https://api.modulards.com/api/public/v1/site-actions")

http = Net::HTTP.new(url.host, url.port)
http.use_ssl = true

request = Net::HTTP::Get.new(url)
request["Authorization"] = 'Bearer <token>'

response = http.request(request)
puts response.read_body
```

```java 200 - Site actions
import com.mashape.unirest.http.HttpResponse;
import com.mashape.unirest.http.Unirest;

HttpResponse<String> response = Unirest.get("https://api.modulards.com/api/public/v1/site-actions")
  .header("Authorization", "Bearer <token>")
  .asString();
```

```php 200 - Site actions
<?php
require_once('vendor/autoload.php');

$client = new \GuzzleHttp\Client();

$response = $client->request('GET', 'https://api.modulards.com/api/public/v1/site-actions', [
  'headers' => [
    'Authorization' => 'Bearer <token>',
  ],
]);

echo $response->getBody();
```

```csharp 200 - Site actions
using RestSharp;

var client = new RestClient("https://api.modulards.com/api/public/v1/site-actions");
var request = new RestRequest(Method.GET);
request.AddHeader("Authorization", "Bearer <token>");
IRestResponse response = client.Execute(request);
```

```swift 200 - Site actions
import Foundation

let headers = ["Authorization": "Bearer <token>"]

let request = NSMutableURLRequest(url: NSURL(string: "https://api.modulards.com/api/public/v1/site-actions")! as URL,
                                        cachePolicy: .useProtocolCachePolicy,
                                    timeoutInterval: 10.0)
request.httpMethod = "GET"
request.allHTTPHeaderFields = headers

let session = URLSession.shared
let dataTask = session.dataTask(with: request as URLRequest, completionHandler: { (data, response, error) -> Void in
  if (error != nil) {
    print(error as Any)
  } else {
    let httpResponse = response as? HTTPURLResponse
    print(httpResponse)
  }
})

dataTask.resume()
```